Modern Events Calendar Lite - Version 3.3.0

Version Description

  • Added: Category filter to the full calendar skin
  • Added: Featured and Canceled styles for events with certain labels
  • Added: Speakers taxonomy
  • Added: Option to disable the speakers feature
  • Added: Speakers section to the frontend event submission
  • Added: Speakers module to show in default and modern layouts of single event
  • Added: Multiple days functionality to the Hourly Schedule
  • Added: Speakers option to the hourly schedule
  • Added: Global ticket variation options (Pro)
  • Added: Ability to change ticket variations per event (Pro)
  • Added: Ability to order ticket variations per ticket during booking (Pro)
  • Added: Monthly Novel style
  • Added: Select monthly style option (Novel and Clean) to Full calendar view
  • Added: Select toggle month divider option to List > Accordion view
  • Added: Modal feature option to booking in single event page
  • Changed: Display of hourly schedule in frontend
  • Optimized: The event data rendering
  • Fixed: Showing fees and variations meta box when booking module is not enabled (Pro)
  • Fixed: URL issue
  • Fixed: HTML content of Frontend Event Submission.
  • Fixed: Auto update feature for lite version
  • Fixed: Month divider issue on list and agenda skins
  • Fixed: Ticket availability issue (Pro)
  • Fixed: Showing ticket name in booking details page in backend
  • Fixed: Typo on exports
Download this release

Release Info

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

Code changes from version 3.2.2 to 3.3.0

Files changed (67) hide show
  1. app/features/events.php +214 -29
  2. app/features/fes.php +29 -5
  3. app/features/fes/form.php +30 -0
  4. app/features/ix.php +2 -2
  5. app/features/labels.php +26 -0
  6. app/features/mec.php +13 -1
  7. app/features/mec/dashboard.php +3 -0
  8. app/features/mec/dyncss.php +1 -1
  9. app/features/mec/meta_boxes/display_options.php +33 -3
  10. app/features/mec/meta_boxes/search_form.php +7 -0
  11. app/features/mec/settings.php +111 -3
  12. app/features/speakers.php +285 -0
  13. app/libraries/book.php +43 -22
  14. app/libraries/factory.php +6 -1
  15. app/libraries/main.php +64 -12
  16. app/libraries/render.php +63 -31
  17. app/libraries/skins.php +23 -0
  18. app/modules/booking/default.php +10 -0
  19. app/modules/booking/steps/form.php +9 -14
  20. app/modules/links/details.php +1 -1
  21. app/modules/links/list.php +1 -1
  22. app/modules/speakers/details.php +84 -0
  23. app/modules/speakers/index.html +0 -0
  24. app/skins/agenda/render.php +25 -1
  25. app/skins/available_spot/tpl.php +16 -1
  26. app/skins/carousel/render.php +17 -2
  27. app/skins/countdown/tpl.php +21 -6
  28. app/skins/cover/tpl.php +20 -5
  29. app/skins/daily_view/render.php +16 -1
  30. app/skins/daily_view/tpl.php +1 -1
  31. app/skins/full_calendar.php +7 -1
  32. app/skins/full_calendar/tpl.php +23 -3
  33. app/skins/grid/render.php +21 -4
  34. app/skins/list.php +4 -1
  35. app/skins/list/render.php +35 -19
  36. app/skins/list/tpl.php +3 -2
  37. app/skins/masonry.php +3 -0
  38. app/skins/masonry/render.php +20 -3
  39. app/skins/monthly_view/calendar.php +17 -3
  40. app/skins/monthly_view/calendar_clean.php +17 -2
  41. app/skins/monthly_view/calendar_novel.php +132 -0
  42. app/skins/monthly_view/render.php +1 -0
  43. app/skins/monthly_view/tpl.php +3 -2
  44. app/skins/single.php +93 -0
  45. app/skins/single/default.php +15 -21
  46. app/skins/single/m1.php +1 -15
  47. app/skins/single/m2.php +1 -15
  48. app/skins/single/modern.php +8 -17
  49. app/skins/slider/render.php +47 -31
  50. app/skins/timetable/render.php +35 -2
  51. app/skins/weekly_view/render.php +16 -1
  52. app/skins/yearly_view/render.php +17 -1
  53. app/widgets/single.php +23 -17
  54. assets/css/backend.css +9 -3
  55. assets/css/backend.min.css +1 -1
  56. assets/css/frontend.css +134 -10
  57. assets/css/frontend.min.css +1 -1
  58. assets/js/backend.js +2 -1
  59. assets/js/events.js +40 -9
  60. assets/js/frontend.js +83 -16
  61. assets/js/isotope.pkgd.min.js +5 -5
  62. assets/packages/colorbrightness/colorbrightness.min.js +11 -0
  63. changelog.txt +26 -5
  64. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  65. languages/modern-events-calendar-lite-de_DE.po +1310 -1042
  66. languages/modern-events-calendar-lite-en_US.mo +0 -0
  67. languages/modern-events-calendar-lite-en_US.po +726 -599
app/features/events.php CHANGED
@@ -74,7 +74,8 @@ class MEC_feature_events extends MEC_base
74
  }
75
 
76
  // Show Booking meta box only if booking module is enabled
77
- if(isset($this->settings['booking_status']) and $this->settings['booking_status'])
 
78
  {
79
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_booking_options'), 5);
80
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_tickets'), 10);
@@ -89,13 +90,22 @@ class MEC_feature_events extends MEC_base
89
  }
90
  }
91
 
92
- // Show fees meta box only if feed module is enabled
93
  if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
94
  {
95
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_fees'), 15);
96
 
97
  // Fees for FES
98
- if(!isset($this->settings['fes_section_fees']) or (isset($this->settings['fes_section_fees']) and $this->settings['fes_section_fees'])) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_fees'), 45);
 
 
 
 
 
 
 
 
 
99
  }
100
 
101
  $this->factory->filter('manage_'.$this->PT.'_posts_columns', array($this, 'filter_columns'));
@@ -380,7 +390,7 @@ class MEC_feature_events extends MEC_base
380
  </div>
381
  <div class="mec-form-row">
382
  <div class="mec-col-4">
383
- <input type="text" name="mec[date][start][date]" id="mec_start_date" value="<?php echo esc_attr($start_date); ?>" placeholder="<?php _e('Start Date', 'modern-events-calendar-lite'); ?>" class="" />
384
  </div>
385
  <div class="mec-col-6 mec-time-picker <?php if($allday == 1) echo 'mec-util-hidden'; ?>">
386
  <?php if(isset($this->settings['time_format']) and $this->settings['time_format'] == 24): if($start_time_ampm == 'PM' and $start_time_hour != 12) $start_time_hour += 12; if($start_time_ampm == 'AM' and $start_time_hour == 12) $start_time_hour += 12; ?>
@@ -420,7 +430,7 @@ class MEC_feature_events extends MEC_base
420
  </div>
421
  <div class="mec-form-row">
422
  <div class="mec-col-4">
423
- <input type="text" name="mec[date][end][date]" id="mec_end_date" value="<?php echo esc_attr($end_date); ?>" placeholder="<?php _e('End Date', 'modern-events-calendar-lite'); ?>" class="" />
424
  </div>
425
  <div class="mec-col-6 mec-time-picker <?php if($allday == 1) echo 'mec-util-hidden'; ?>">
426
  <?php if(isset($this->settings['time_format']) and $this->settings['time_format'] == 24): if($end_time_ampm == 'PM' and $end_time_hour != 12) $end_time_hour += 12; if($end_time_ampm == 'AM' and $end_time_hour == 12) $end_time_hour += 12; ?>
@@ -613,36 +623,120 @@ class MEC_feature_events extends MEC_base
613
  */
614
  public function meta_box_hourly_schedule($post)
615
  {
616
- $hourly_schedules = get_post_meta($post->ID, 'mec_hourly_schedules', true);
617
- if(!is_array($hourly_schedules)) $hourly_schedules = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
618
  ?>
619
  <div class="mec-meta-box-fields" id="mec-hourly-schedule">
620
  <h4><?php _e('Hourly Schedule', 'modern-events-calendar-lite'); ?></h4>
621
- <div id="mec_meta_box_hourly_schedule_form">
622
  <div class="mec-form-row">
623
- <button class="button" type="button" id="mec_add_hourly_schedule_button"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
624
- <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
625
  </div>
626
- <div id="mec_hourly_schedules">
627
- <?php $i = 0; foreach($hourly_schedules as $key=>$hourly_schedule): if(!is_numeric($key)) continue; $i = max($i, $key); ?>
628
- <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $key; ?>">
629
- <input class="mec-col-2" type="text" name="mec[hourly_schedules][<?php echo $key; ?>][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['from']); ?>" />
630
- <input class="mec-col-2" type="text" name="mec[hourly_schedules][<?php echo $key; ?>][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['to']); ?>" />
631
- <input class="mec-col-2" type="text" name="mec[hourly_schedules][<?php echo $key; ?>][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['title']); ?>" />
632
- <input class="mec-col-4" type="text" name="mec[hourly_schedules][<?php echo $key; ?>][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['description']); ?>" />
633
- <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $key; ?>);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
634
  </div>
635
- <?php endforeach; ?>
636
  </div>
 
637
  </div>
638
- <input type="hidden" id="mec_new_hourly_schedule_key" value="<?php echo $i+1; ?>" />
639
- <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw">
640
- <div class="mec-form-row mec-box" id="mec_hourly_schedule_row:i:">
641
- <input class="mec-col-2" type="text" name="mec[hourly_schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
642
- <input class="mec-col-2" type="text" name="mec[hourly_schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
643
- <input class="mec-col-2" type="text" name="mec[hourly_schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
644
- <input class="mec-col-4" type="text" name="mec[hourly_schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
645
- <button class="button" type="button" onclick="mec_hourly_schedule_remove(:i:);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
646
  </div>
647
  </div>
648
  </div>
@@ -965,6 +1059,81 @@ class MEC_feature_events extends MEC_base
965
  <?php
966
  }
967
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
968
  /**
969
  * Show registration form of event into the Add/Edit event page
970
  * @author Webnus <info@webnus.biz>
@@ -1416,8 +1585,15 @@ class MEC_feature_events extends MEC_base
1416
  }
1417
 
1418
  // Hourly Schedule Options
1419
- $hourly_schedules = isset($_mec['hourly_schedules']) ? $_mec['hourly_schedules'] : array();
1420
- unset($hourly_schedules[':i:']);
 
 
 
 
 
 
 
1421
 
1422
  update_post_meta($post_id, 'mec_hourly_schedules', $hourly_schedules);
1423
 
@@ -1437,6 +1613,15 @@ class MEC_feature_events extends MEC_base
1437
  $fees = isset($_mec['fees']) ? $_mec['fees'] : array();
1438
  update_post_meta($post_id, 'mec_fees', $fees);
1439
 
 
 
 
 
 
 
 
 
 
1440
  // Registration Fields options
1441
  $reg_fields_global_inheritance = isset($_mec['reg_fields_global_inheritance']) ? $_mec['reg_fields_global_inheritance'] : 1;
1442
  update_post_meta($post_id, 'mec_reg_fields_global_inheritance', $reg_fields_global_inheritance);
74
  }
75
 
76
  // Show Booking meta box only if booking module is enabled
77
+ $booking_status = (isset($this->settings['booking_status']) and $this->settings['booking_status']) ? true : false;
78
+ if($booking_status)
79
  {
80
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_booking_options'), 5);
81
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_tickets'), 10);
90
  }
91
  }
92
 
93
+ // Show fees meta box only if fees module is enabled
94
  if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
95
  {
96
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_fees'), 15);
97
 
98
  // Fees for FES
99
+ if($booking_status and (!isset($this->settings['fes_section_fees']) or (isset($this->settings['fes_section_fees']) and $this->settings['fes_section_fees']))) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_fees'), 45);
100
+ }
101
+
102
+ // Show ticket variations meta box only if the module is enabled
103
+ if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'])
104
+ {
105
+ $this->factory->action('mec_metabox_booking', array($this, 'meta_box_ticket_variations'), 16);
106
+
107
+ // Ticket Variations for FES
108
+ if($booking_status and (!isset($this->settings['fes_section_ticket_variations']) or (isset($this->settings['fes_section_ticket_variations']) and $this->settings['fes_section_ticket_variations']))) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_ticket_variations'), 46);
109
  }
110
 
111
  $this->factory->filter('manage_'.$this->PT.'_posts_columns', array($this, 'filter_columns'));
390
  </div>
391
  <div class="mec-form-row">
392
  <div class="mec-col-4">
393
+ <input type="text" name="mec[date][start][date]" id="mec_start_date" value="<?php echo esc_attr($start_date); ?>" placeholder="<?php _e('Start Date', 'modern-events-calendar-lite'); ?>" autocomplete="off" />
394
  </div>
395
  <div class="mec-col-6 mec-time-picker <?php if($allday == 1) echo 'mec-util-hidden'; ?>">
396
  <?php if(isset($this->settings['time_format']) and $this->settings['time_format'] == 24): if($start_time_ampm == 'PM' and $start_time_hour != 12) $start_time_hour += 12; if($start_time_ampm == 'AM' and $start_time_hour == 12) $start_time_hour += 12; ?>
430
  </div>
431
  <div class="mec-form-row">
432
  <div class="mec-col-4">
433
+ <input type="text" name="mec[date][end][date]" id="mec_end_date" value="<?php echo esc_attr($end_date); ?>" placeholder="<?php _e('End Date', 'modern-events-calendar-lite'); ?>" autocomplete="off" />
434
  </div>
435
  <div class="mec-col-6 mec-time-picker <?php if($allday == 1) echo 'mec-util-hidden'; ?>">
436
  <?php if(isset($this->settings['time_format']) and $this->settings['time_format'] == 24): if($end_time_ampm == 'PM' and $end_time_hour != 12) $end_time_hour += 12; if($end_time_ampm == 'AM' and $end_time_hour == 12) $end_time_hour += 12; ?>
623
  */
624
  public function meta_box_hourly_schedule($post)
625
  {
626
+ $meta_hourly_schedules = get_post_meta($post->ID, 'mec_hourly_schedules', true);
627
+
628
+ if(is_array($meta_hourly_schedules) and count($meta_hourly_schedules))
629
+ {
630
+ $first_key = key($meta_hourly_schedules);
631
+
632
+ $hourly_schedules = array();
633
+ if(!isset($meta_hourly_schedules[$first_key]['schedules']))
634
+ {
635
+ $hourly_schedules[] = array(
636
+ 'title' => __('Day 1', 'modern-events-calendar-lite'),
637
+ 'schedules'=>$meta_hourly_schedules
638
+ );
639
+ }
640
+ else $hourly_schedules = $meta_hourly_schedules;
641
+ }
642
+ else $hourly_schedules = array();
643
+
644
+ // Status of Speakers Feature
645
+ $speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
646
+ $speakers = get_terms('mec_speaker', array('orderby'=>'name', 'order'=>'ASC', 'hide_empty'=>'0'));
647
  ?>
648
  <div class="mec-meta-box-fields" id="mec-hourly-schedule">
649
  <h4><?php _e('Hourly Schedule', 'modern-events-calendar-lite'); ?></h4>
650
+ <div id="mec_meta_box_hourly_schedule_day_form">
651
  <div class="mec-form-row">
652
+ <button class="button" type="button" id="mec_add_hourly_schedule_day_button"><?php _e('Add Day', 'modern-events-calendar-lite'); ?></button>
653
+ <span class="description"><?php esc_attr_e('Add new days for schedule. For example if your event is multiple days, you can add a different schedule for each day!', 'modern-events-calendar-lite'); ?></span>
654
  </div>
655
+ </div>
656
+ <div id="mec_meta_box_hourly_schedule_days">
657
+ <?php $d = 0; foreach($hourly_schedules as $day): ?>
658
+ <h4><?php echo isset($day['title']) ? $day['title'] : sprintf(__('Day %s', 'modern-events-calendar-lite'), $d+1); ?></h4>
659
+ <div id="mec_meta_box_hourly_schedule_form">
660
+ <div class="mec-form-row">
661
+ <div class="mec-col-1"><label for="mec_add_hourly_schedule_day<?php echo $d; ?>_title"><?php echo __('Title', 'modern-events-calendar-lite'); ?></label></div>
662
+ <div class="mec-col-11"><input type="text" id="mec_add_hourly_schedule_day<?php echo $d; ?>_title" name="mec[hourly_schedules][<?php echo $d; ?>][title]" value="<?php echo isset($day['title']) ? $day['title'] : ''; ?>" class="widefat"></div>
663
+ </div>
664
+ <div class="mec-form-row">
665
+ <button class="button mec-add-hourly-schedule-button" type="button" id="mec_add_hourly_schedule_button<?php echo $d; ?>" data-day="<?php echo $d; ?>"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
666
+ <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
667
+ </div>
668
+ <div id="mec_hourly_schedules<?php echo $d; ?>">
669
+ <?php $i = 0; foreach($day['schedules'] as $key=>$hourly_schedule): if(!is_numeric($key)) continue; $i = max($i, $key); ?>
670
+ <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $d; ?>_<?php echo $key; ?>">
671
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['from']); ?>" />
672
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['to']); ?>" />
673
+ <input class="mec-col-3" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['title']); ?>" />
674
+ <input class="mec-col-6" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" value="<?php echo esc_attr($hourly_schedule['description']); ?>" />
675
+ <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, <?php echo $key; ?>)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
676
+ <?php if($speakers_status): ?>
677
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers">
678
+ <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
679
+ <?php foreach($speakers as $speaker): ?>
680
+ <label><input type="checkbox" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][speakers][]" value="<?php echo $speaker->term_id; ?>" <?php echo (isset($hourly_schedule['speakers']) and in_array($speaker->term_id, $hourly_schedule['speakers'])) ? 'checked="checked"' : ''; ?>><?php echo $speaker->name; ?></label>
681
+ <?php endforeach; ?>
682
+ </div>
683
+ <?php endif; ?>
684
+ </div>
685
+ <?php endforeach; ?>
686
+ </div>
687
+ </div>
688
+ <input type="hidden" id="mec_new_hourly_schedule_key<?php echo $d; ?>" value="<?php echo $i+1; ?>" />
689
+ <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw<?php echo $d; ?>">
690
+ <div class="mec-form-row mec-box" id="mec_hourly_schedule_row<?php echo $d; ?>_:i:">
691
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
692
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
693
+ <input class="mec-col-3" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
694
+ <input class="mec-col-6" type="text" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
695
+ <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, :i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
696
+ <?php if($speakers_status): ?>
697
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers">
698
+ <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
699
+ <?php foreach($speakers as $speaker): ?>
700
+ <label><input type="checkbox" name="mec[hourly_schedules][<?php echo $d; ?>][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
701
+ <?php endforeach; ?>
702
+ </div>
703
+ <?php endif; ?>
704
  </div>
 
705
  </div>
706
+ <?php $d++; endforeach; ?>
707
  </div>
708
+ <input type="hidden" id="mec_new_hourly_schedule_day_key" value="<?php echo $d; ?>" />
709
+ <div class="mec-util-hidden" id="mec_new_hourly_schedule_day_raw">
710
+ <h4><?php echo __('Day :dd:', 'modern-events-calendar-lite'); ?></h4>
711
+ <div id="mec_meta_box_hourly_schedule_form:d:">
712
+ <div class="mec-form-row">
713
+ <div class="mec-col-1"><label for="mec_add_hourly_schedule_day:d:_title"><?php echo __('Title', 'modern-events-calendar-lite'); ?></label></div>
714
+ <div class="mec-col-11"><input type="text" id="mec_add_hourly_schedule_day:d:_title" name="mec[hourly_schedules][:d:][title]" value="<?php echo __('Day :dd:', 'modern-events-calendar-lite'); ?>" class="widefat"></div>
715
+ </div>
716
+ <div class="mec-form-row">
717
+ <button class="button mec-add-hourly-schedule-button" type="button" id="mec_add_hourly_schedule_button:d:" data-day=":d:"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
718
+ <span class="description"><?php esc_attr_e('Add new hourly schedule row', 'modern-events-calendar-lite'); ?></span>
719
+ </div>
720
+ <div id="mec_hourly_schedules:d:">
721
+ </div>
722
+ </div>
723
+ <input type="hidden" id="mec_new_hourly_schedule_key:d:" value="1" />
724
+ <div class="mec-util-hidden" id="mec_new_hourly_schedule_raw:d:">
725
+ <div class="mec-form-row mec-box" id="mec_hourly_schedule_row:d:_:i:">
726
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][from]" placeholder="<?php esc_attr_e('From e.g. 8:15', 'modern-events-calendar-lite'); ?>" />
727
+ <input class="mec-col-1" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][to]" placeholder="<?php esc_attr_e('To e.g. 8:45', 'modern-events-calendar-lite'); ?>" />
728
+ <input class="mec-col-3" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
729
+ <input class="mec-col-6" type="text" name="mec[hourly_schedules][:d:][schedules][:i:][description]" placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>" />
730
+ <button class="button" type="button" onclick="mec_hourly_schedule_remove(:d:, :i:)"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
731
+ <?php if($speakers_status): ?>
732
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers">
733
+ <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
734
+ <?php foreach($speakers as $speaker): ?>
735
+ <label><input type="checkbox" name="mec[hourly_schedules][:d:][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
736
+ <?php endforeach; ?>
737
+ </div>
738
+ <?php endif; ?>
739
+ </div>
740
  </div>
741
  </div>
742
  </div>
1059
  <?php
1060
  }
1061
 
1062
+ /**
1063
+ * Show ticket variations into the Add/Edit event page
1064
+ * @author Webnus <info@webnus.biz>
1065
+ * @param object $post
1066
+ */
1067
+ public function meta_box_ticket_variations($post)
1068
+ {
1069
+ $global_inheritance = get_post_meta($post->ID, 'mec_ticket_variations_global_inheritance', true);
1070
+ if(trim($global_inheritance) == '') $global_inheritance = 1;
1071
+
1072
+ $ticket_variations = get_post_meta($post->ID, 'mec_ticket_variations', true);
1073
+
1074
+ $global_variations = isset($this->settings['ticket_variations']) ? $this->settings['ticket_variations'] : array();
1075
+ if(!is_array($ticket_variations) and trim($ticket_variations) == '') $ticket_variations = $global_variations;
1076
+
1077
+ if(!is_array($ticket_variations)) $ticket_variations = array();
1078
+ ?>
1079
+ <div class="mec-meta-box-fields" id="mec-ticket-variations">
1080
+ <h4 class="mec-meta-box-header"><?php _e('Ticket Variations / Options', 'modern-events-calendar-lite'); ?></h4>
1081
+ <div id="mec_meta_box_ticket_variations_form">
1082
+ <div class="mec-form-row">
1083
+ <label>
1084
+ <input type="hidden" name="mec[ticket_variations_global_inheritance]" value="0" />
1085
+ <input onchange="jQuery('#mec_taxes_ticket_variations_container_toggle').toggle();" value="1" type="checkbox" name="mec[ticket_variations_global_inheritance]" <?php if($global_inheritance) echo 'checked="checked"'; ?> /> <?php _e('Inherit from global options', 'modern-events-calendar-lite'); ?>
1086
+ </label>
1087
+ </div>
1088
+ <div id="mec_taxes_ticket_variations_container_toggle" class="<?php if($global_inheritance) echo 'mec-util-hidden'; ?>">
1089
+ <div class="mec-form-row">
1090
+ <button class="button" type="button" id="mec_add_ticket_variation_button"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
1091
+ </div>
1092
+ <div id="mec_ticket_variations_list">
1093
+ <?php $i = 0; foreach($ticket_variations as $key=>$ticket_variation): if(!is_numeric($key)) continue; $i = max($i, $key); ?>
1094
+ <div class="mec-box" id="mec_ticket_variation_row<?php echo $i; ?>">
1095
+ <div class="mec-form-row">
1096
+ <input class="mec-col-12" type="text" name="mec[ticket_variations][<?php echo $i; ?>][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" value="<?php echo (isset($ticket_variation['title']) ? esc_attr($ticket_variation['title']) : ''); ?>" />
1097
+ </div>
1098
+ <div class="mec-form-row">
1099
+ <span class="mec-col-4">
1100
+ <input type="text" name="mec[ticket_variations][<?php echo $i; ?>][price]" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" value="<?php echo (isset($ticket_variation['price']) ? esc_attr($ticket_variation['price']) : ''); ?>" />
1101
+ <a class="mec-tooltip" title="<?php esc_attr_e('Option Price', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1102
+ </span>
1103
+ <span class="mec-col-4">
1104
+ <input type="number" min="0" name="mec[ticket_variations][<?php echo $i; ?>][max]" placeholder="<?php esc_attr_e('Maximum Per Ticket', 'modern-events-calendar-lite'); ?>" value="<?php echo (isset($ticket_variation['max']) ? $ticket_variation['max'] : ''); ?>" />
1105
+ <a class="mec-tooltip" title="<?php esc_attr_e('Maximum Per Ticket. Leave it blank for unlimited.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1106
+ </span>
1107
+ <button class="button" type="button" id="mec_remove_ticket_variation_button<?php echo $i; ?>" onclick="mec_remove_ticket_variation(<?php echo $i; ?>);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
1108
+ </div>
1109
+ </div>
1110
+ <?php endforeach; ?>
1111
+ </div>
1112
+ </div>
1113
+ </div>
1114
+ <input type="hidden" id="mec_new_ticket_variation_key" value="<?php echo $i+1; ?>" />
1115
+ <div class="mec-util-hidden" id="mec_new_ticket_variation_raw">
1116
+ <div class="mec-box" id="mec_ticket_variation_row:i:">
1117
+ <div class="mec-form-row">
1118
+ <input class="mec-col-12" type="text" name="mec[ticket_variations][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
1119
+ </div>
1120
+ <div class="mec-form-row">
1121
+ <span class="mec-col-4">
1122
+ <input type="text" name="mec[ticket_variations][:i:][price]" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" />
1123
+ <a class="mec-tooltip" title="<?php esc_attr_e('Option Price', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1124
+ </span>
1125
+ <span class="mec-col-4">
1126
+ <input type="number" min="0" name="mec[ticket_variations][:i:][max]" placeholder="<?php esc_attr_e('Maximum Per Ticket', 'modern-events-calendar-lite'); ?>" value="1" />
1127
+ <a class="mec-tooltip" title="<?php esc_attr_e('Maximum Per Ticket. Leave it blank for unlimited.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1128
+ </span>
1129
+ <button class="button" type="button" id="mec_remove_ticket_variation_button:i:" onclick="mec_remove_ticket_variation(:i:);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
1130
+ </div>
1131
+ </div>
1132
+ </div>
1133
+ </div>
1134
+ <?php
1135
+ }
1136
+
1137
  /**
1138
  * Show registration form of event into the Add/Edit event page
1139
  * @author Webnus <info@webnus.biz>
1585
  }
1586
 
1587
  // Hourly Schedule Options
1588
+ $raw_hourly_schedules = isset($_mec['hourly_schedules']) ? $_mec['hourly_schedules'] : array();
1589
+ unset($raw_hourly_schedules[':d:']);
1590
+
1591
+ $hourly_schedules = array();
1592
+ foreach($raw_hourly_schedules as $raw_hourly_schedule)
1593
+ {
1594
+ unset($raw_hourly_schedule['schedules'][':i:']);
1595
+ $hourly_schedules[] = $raw_hourly_schedule;
1596
+ }
1597
 
1598
  update_post_meta($post_id, 'mec_hourly_schedules', $hourly_schedules);
1599
 
1613
  $fees = isset($_mec['fees']) ? $_mec['fees'] : array();
1614
  update_post_meta($post_id, 'mec_fees', $fees);
1615
 
1616
+ // Ticket Variations options
1617
+ $ticket_variations_global_inheritance = isset($_mec['ticket_variations_global_inheritance']) ? $_mec['ticket_variations_global_inheritance'] : 1;
1618
+ update_post_meta($post_id, 'mec_ticket_variations_global_inheritance', $ticket_variations_global_inheritance);
1619
+
1620
+ $ticket_variations = isset($_mec['ticket_variations']) ? $_mec['ticket_variations'] : array();
1621
+ unset($ticket_variations[':i:']);
1622
+
1623
+ update_post_meta($post_id, 'mec_ticket_variations', $ticket_variations);
1624
+
1625
  // Registration Fields options
1626
  $reg_fields_global_inheritance = isset($_mec['reg_fields_global_inheritance']) ? $_mec['reg_fields_global_inheritance'] : 1;
1627
  update_post_meta($post_id, 'mec_reg_fields_global_inheritance', $reg_fields_global_inheritance);
app/features/fes.php CHANGED
@@ -254,9 +254,10 @@ class MEC_feature_fes extends MEC_base
254
 
255
  $post_id = isset($mec['post_id']) ? sanitize_text_field($mec['post_id']) : -1;
256
  $post_title = isset($mec['title']) ? sanitize_text_field($mec['title']) : '';
257
- $post_content = isset($mec['content']) ? sanitize_text_field($mec['content']) : '';
258
  $post_tags = isset($mec['tags']) ? sanitize_text_field($mec['tags']) : '';
259
  $post_categories = isset($mec['categories']) ? $mec['categories'] : array();
 
260
  $post_labels = isset($mec['labels']) ? $mec['labels'] : array();
261
  $featured_image = isset($mec['featured_image']) ? sanitize_text_field($mec['featured_image']) : '';
262
 
@@ -284,6 +285,15 @@ class MEC_feature_fes extends MEC_base
284
  foreach($post_categories as $post_category=>$value) $categories[] = (int) $post_category;
285
 
286
  wp_set_post_terms($post_id, $categories, 'mec_category');
 
 
 
 
 
 
 
 
 
287
 
288
  // Labels
289
  $labels = array();
@@ -735,11 +745,18 @@ class MEC_feature_fes extends MEC_base
735
 
736
  $this->db->q("UPDATE `#__mec_events` SET ".trim($q, ', ')." WHERE `id`='$mec_event_id'");
737
  }
738
-
739
  // Hourly Schedule Options
740
- $hourly_schedules = isset($mec['hourly_schedules']) ? $mec['hourly_schedules'] : array();
741
- unset($hourly_schedules[':i:']);
742
-
 
 
 
 
 
 
 
743
  update_post_meta($post_id, 'mec_hourly_schedules', $hourly_schedules);
744
 
745
  // Booking and Ticket Options
@@ -758,6 +775,13 @@ class MEC_feature_fes extends MEC_base
758
  $fees = isset($mec['fees']) ? $mec['fees'] : array();
759
  update_post_meta($post_id, 'mec_fees', $fees);
760
 
 
 
 
 
 
 
 
761
  // Registration Fields options
762
  $reg_fields_global_inheritance = isset($mec['reg_fields_global_inheritance']) ? $mec['reg_fields_global_inheritance'] : 1;
763
  update_post_meta($post_id, 'mec_reg_fields_global_inheritance', $reg_fields_global_inheritance);
254
 
255
  $post_id = isset($mec['post_id']) ? sanitize_text_field($mec['post_id']) : -1;
256
  $post_title = isset($mec['title']) ? sanitize_text_field($mec['title']) : '';
257
+ $post_content = isset($mec['content']) ? $mec['content'] : '';
258
  $post_tags = isset($mec['tags']) ? sanitize_text_field($mec['tags']) : '';
259
  $post_categories = isset($mec['categories']) ? $mec['categories'] : array();
260
+ $post_speakers = isset($mec['speakers']) ? $mec['speakers'] : array();
261
  $post_labels = isset($mec['labels']) ? $mec['labels'] : array();
262
  $featured_image = isset($mec['featured_image']) ? sanitize_text_field($mec['featured_image']) : '';
263
 
285
  foreach($post_categories as $post_category=>$value) $categories[] = (int) $post_category;
286
 
287
  wp_set_post_terms($post_id, $categories, 'mec_category');
288
+
289
+ // Speakers
290
+ if(isset($this->settings['speakers_status']) and $this->settings['speakers_status'])
291
+ {
292
+ $speakers = array();
293
+ foreach($post_speakers as $post_speaker=>$value) $speakers[] = (int) $post_speaker;
294
+
295
+ wp_set_post_terms($post_id, $speakers, 'mec_speaker');
296
+ }
297
 
298
  // Labels
299
  $labels = array();
745
 
746
  $this->db->q("UPDATE `#__mec_events` SET ".trim($q, ', ')." WHERE `id`='$mec_event_id'");
747
  }
748
+
749
  // Hourly Schedule Options
750
+ $raw_hourly_schedules = isset($mec['hourly_schedules']) ? $mec['hourly_schedules'] : array();
751
+ unset($raw_hourly_schedules[':d:']);
752
+
753
+ $hourly_schedules = array();
754
+ foreach($raw_hourly_schedules as $raw_hourly_schedule)
755
+ {
756
+ unset($raw_hourly_schedule['schedules'][':i:']);
757
+ $hourly_schedules[] = $raw_hourly_schedule;
758
+ }
759
+
760
  update_post_meta($post_id, 'mec_hourly_schedules', $hourly_schedules);
761
 
762
  // Booking and Ticket Options
775
  $fees = isset($mec['fees']) ? $mec['fees'] : array();
776
  update_post_meta($post_id, 'mec_fees', $fees);
777
 
778
+ // Ticket Variation options
779
+ $ticket_variations_global_inheritance = isset($mec['ticket_variations_global_inheritance']) ? $mec['ticket_variations_global_inheritance'] : 1;
780
+ update_post_meta($post_id, 'mec_ticket_variations_global_inheritance', $ticket_variations_global_inheritance);
781
+
782
+ $ticket_variations = isset($mec['ticket_variations']) ? $mec['ticket_variations'] : array();
783
+ update_post_meta($post_id, 'mec_ticket_variations', $ticket_variations);
784
+
785
  // Registration Fields options
786
  $reg_fields_global_inheritance = isset($mec['reg_fields_global_inheritance']) ? $mec['reg_fields_global_inheritance'] : 1;
787
  update_post_meta($post_id, 'mec_reg_fields_global_inheritance', $reg_fields_global_inheritance);
app/features/fes/form.php CHANGED
@@ -591,6 +591,36 @@ $this->factory->params('footer', $javascript);
591
  </div>
592
  </div>
593
  <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
  <div class="mec-form-row mec-fes-submit-mobile">
595
  <?php if($this->main->get_recaptcha_status('fes')): ?><div class="mec-form-row mec-google-recaptcha"><div class="g-recaptcha" data-sitekey="<?php echo $this->settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
596
  <button class="mec-fes-sub-button" type="submit"><?php _e('Submit', 'modern-events-calendar-lite'); ?></button>
591
  </div>
592
  </div>
593
  <?php endif; ?>
594
+
595
+ <!-- Event Speakers Section -->
596
+ <?php if((isset($this->settings['speakers_status']) and $this->settings['speakers_status']) and isset($this->settings['fes_section_speaker']) and $this->settings['fes_section_speaker']): ?>
597
+ <?php
598
+ $post_speakers = get_the_terms($post_id, 'mec_speaker');
599
+
600
+ $speakers = array();
601
+ if($post_speakers) foreach($post_speakers as $post_speaker)
602
+ {
603
+ if(!isset($post_speaker->term_id)) continue;
604
+ $speakers[] = $post_speaker->term_id;
605
+ }
606
+
607
+ $speaker_terms = get_terms(array('taxonomy'=>'mec_speaker', 'hide_empty'=>false));
608
+ ?>
609
+ <?php if(count($speaker_terms)): ?>
610
+ <div class="mec-meta-box-fields" id="mec-speakers">
611
+ <h4><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></h4>
612
+ <div class="mec-form-row">
613
+ <?php foreach($speaker_terms as $speaker_term): ?>
614
+ <label for="mec_fes_speakers<?php echo $speaker_term->term_id; ?>">
615
+ <input type="checkbox" name="mec[speakers][<?php echo $speaker_term->term_id; ?>]" id="mec_fes_speakers<?php echo $speaker_term->term_id; ?>" value="1" <?php echo (in_array($speaker_term->term_id, $speakers) ? 'checked="checked"' : ''); ?> />
616
+ <?php echo $speaker_term->name; ?>
617
+ </label>
618
+ <?php endforeach; ?>
619
+ </div>
620
+ </div>
621
+ <?php endif; ?>
622
+ <?php endif; ?>
623
+
624
  <div class="mec-form-row mec-fes-submit-mobile">
625
  <?php if($this->main->get_recaptcha_status('fes')): ?><div class="mec-form-row mec-google-recaptcha"><div class="g-recaptcha" data-sitekey="<?php echo $this->settings['google_recaptcha_sitekey']; ?>"></div></div><?php endif; ?>
626
  <button class="mec-fes-sub-button" type="submit"><?php _e('Submit', 'modern-events-calendar-lite'); ?></button>
app/features/ix.php CHANGED
@@ -2323,7 +2323,7 @@ class MEC_feature_ix extends MEC_base
2323
  case 'csv':
2324
 
2325
  header('Content-Type: text/csv; charset=utf-8');
2326
- header('Content-Disposition: attachment; filename=bookings-'.md5(time().mt_rand(100, 999)).'.csv');
2327
 
2328
  $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), __('Location', 'modern-events-calendar-lite'), __('Organizer', 'modern-events-calendar-lite'), __('Organizer Tel', 'modern-events-calendar-lite'), __('Organizer Email', 'modern-events-calendar-lite'), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')));
2329
 
@@ -2364,7 +2364,7 @@ class MEC_feature_ix extends MEC_base
2364
  case 'ms-excel':
2365
 
2366
  header('Content-Type: application/vnd.ms-excel; charset=utf-8');
2367
- header('Content-Disposition: attachment; filename=bookings-'.md5(time().mt_rand(100, 999)).'.csv');
2368
 
2369
  $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), __('Location', 'modern-events-calendar-lite'), __('Organizer', 'modern-events-calendar-lite'), __('Organizer Tel', 'modern-events-calendar-lite'), __('Organizer Email', 'modern-events-calendar-lite'), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')));
2370
 
2323
  case 'csv':
2324
 
2325
  header('Content-Type: text/csv; charset=utf-8');
2326
+ header('Content-Disposition: attachment; filename="mec-events-'.md5(time().mt_rand(100, 999)).'.csv"');
2327
 
2328
  $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), __('Location', 'modern-events-calendar-lite'), __('Organizer', 'modern-events-calendar-lite'), __('Organizer Tel', 'modern-events-calendar-lite'), __('Organizer Email', 'modern-events-calendar-lite'), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')));
2329
 
2364
  case 'ms-excel':
2365
 
2366
  header('Content-Type: application/vnd.ms-excel; charset=utf-8');
2367
+ header('Content-Disposition: attachment; filename="mec-events-'.md5(time().mt_rand(100, 999)).'.csv"');
2368
 
2369
  $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), __('Location', 'modern-events-calendar-lite'), __('Organizer', 'modern-events-calendar-lite'), __('Organizer Tel', 'modern-events-calendar-lite'), __('Organizer Email', 'modern-events-calendar-lite'), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')));
2370
 
app/features/labels.php CHANGED
@@ -95,6 +95,7 @@ class MEC_feature_labels extends MEC_base
95
  public function edit_form($term)
96
  {
97
  $color = get_metadata('term', $term->term_id, 'color', true);
 
98
  ?>
99
  <tr class="form-field">
100
  <th scope="row" valign="top">
@@ -105,6 +106,19 @@ class MEC_feature_labels extends MEC_base
105
  <p class="description"><?php _e('Select label color', 'modern-events-calendar-lite'); ?></p>
106
  </td>
107
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  <?php
109
  }
110
 
@@ -120,6 +134,15 @@ class MEC_feature_labels extends MEC_base
120
  <input type="text" name="color" id="mec_color" value="" data-default-color="<?php echo $this->main->get_default_label_color(); ?>" class="mec-color-picker" />
121
  <p class="description"><?php _e('Select label color', 'modern-events-calendar-lite'); ?></p>
122
  </div>
 
 
 
 
 
 
 
 
 
123
  <?php
124
  }
125
 
@@ -132,6 +155,9 @@ class MEC_feature_labels extends MEC_base
132
  {
133
  $color = isset($_POST['color']) ? sanitize_text_field($_POST['color']) : $this->main->get_default_label_color();
134
  update_term_meta($term_id, 'color', $color);
 
 
 
135
  }
136
 
137
  /**
95
  public function edit_form($term)
96
  {
97
  $color = get_metadata('term', $term->term_id, 'color', true);
98
+ $style = get_metadata('term', $term->term_id, 'style', true);
99
  ?>
100
  <tr class="form-field">
101
  <th scope="row" valign="top">
106
  <p class="description"><?php _e('Select label color', 'modern-events-calendar-lite'); ?></p>
107
  </td>
108
  </tr>
109
+ <tr class="form-field">
110
+ <th scope="row" valign="top">
111
+ <label for="mec_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
112
+ </th>
113
+ <td>
114
+ <select name="style" id="mec_style">
115
+ <option value=""><?php _e('Normal', 'modern-events-calendar-lite'); ?></option>
116
+ <option value="mec-label-featured" <?php echo ($style == 'mec-label-featured' ? 'selected="selected"' : ''); ?>><?php _e('Featured', 'modern-events-calendar-lite'); ?></option>
117
+ <option value="mec-label-canceled" <?php echo ($style == 'mec-label-canceled' ? 'selected="selected"' : ''); ?>><?php _e('Canceled', 'modern-events-calendar-lite'); ?></option>
118
+ </select>
119
+ <p class="description"><?php _e('You can show featured and canceled events by a different style!', 'modern-events-calendar-lite'); ?></p>
120
+ </td>
121
+ </tr>
122
  <?php
123
  }
124
 
134
  <input type="text" name="color" id="mec_color" value="" data-default-color="<?php echo $this->main->get_default_label_color(); ?>" class="mec-color-picker" />
135
  <p class="description"><?php _e('Select label color', 'modern-events-calendar-lite'); ?></p>
136
  </div>
137
+ <div class="form-field">
138
+ <label for="mec_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
139
+ <select name="style" id="mec_style">
140
+ <option value=""><?php _e('Normal', 'modern-events-calendar-lite'); ?></option>
141
+ <option value="mec-label-featured"><?php _e('Featured', 'modern-events-calendar-lite'); ?></option>
142
+ <option value="mec-label-canceled"><?php _e('Canceled', 'modern-events-calendar-lite'); ?></option>
143
+ </select>
144
+ <p class="description"><?php _e('You can show featured and canceled events by a different style!', 'modern-events-calendar-lite'); ?></p>
145
+ </div>
146
  <?php
147
  }
148
 
155
  {
156
  $color = isset($_POST['color']) ? sanitize_text_field($_POST['color']) : $this->main->get_default_label_color();
157
  update_term_meta($term_id, 'color', $color);
158
+
159
+ $style = isset($_POST['style']) ? sanitize_text_field($_POST['style']) : '';
160
+ update_term_meta($term_id, 'style', $style);
161
  }
162
 
163
  /**
app/features/mec.php CHANGED
@@ -124,7 +124,8 @@ class MEC_feature_mec extends MEC_base
124
  case 'mec_label':
125
  case 'mec_location':
126
  case 'mec_organizer':
127
-
 
128
  $parent_file = 'mec-intro';
129
  break;
130
 
@@ -168,6 +169,10 @@ class MEC_feature_mec extends MEC_base
168
 
169
  $submenu_file = 'edit-tags.php?taxonomy=mec_organizer&post_type='.$this->PT;
170
  break;
 
 
 
 
171
  default:
172
  //nothing
173
  break;
@@ -194,6 +199,13 @@ class MEC_feature_mec extends MEC_base
194
  add_submenu_page('mec-intro', $this->main->m('taxonomy_labels', __('Labels', 'modern-events-calendar-lite')), $this->main->m('taxonomy_labels', __('Labels', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_label&post_type='.$this->PT);
195
  add_submenu_page('mec-intro', $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')), $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_location&post_type='.$this->PT);
196
  add_submenu_page('mec-intro', $this->main->m('taxonomy_organizers', __('Organizers', 'modern-events-calendar-lite')), $this->main->m('taxonomy_organizers', __('Organizers', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_organizer&post_type='.$this->PT);
 
 
 
 
 
 
 
197
  add_submenu_page('mec-intro', __('Shortcodes', 'modern-events-calendar-lite'), __('Shortcodes', 'modern-events-calendar-lite'), 'edit_others_posts', 'edit.php?post_type=mec_calendars');
198
  add_submenu_page('mec-intro', __('MEC - Settings', 'modern-events-calendar-lite'), __('Settings', 'modern-events-calendar-lite'), 'manage_options', 'MEC-settings', array($this, 'page'));
199
  }
124
  case 'mec_label':
125
  case 'mec_location':
126
  case 'mec_organizer':
127
+ case 'mec_speaker':
128
+
129
  $parent_file = 'mec-intro';
130
  break;
131
 
169
 
170
  $submenu_file = 'edit-tags.php?taxonomy=mec_organizer&post_type='.$this->PT;
171
  break;
172
+ case 'mec_speaker':
173
+
174
+ $submenu_file = 'edit-tags.php?taxonomy=mec_speaker&post_type='.$this->PT;
175
+ break;
176
  default:
177
  //nothing
178
  break;
199
  add_submenu_page('mec-intro', $this->main->m('taxonomy_labels', __('Labels', 'modern-events-calendar-lite')), $this->main->m('taxonomy_labels', __('Labels', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_label&post_type='.$this->PT);
200
  add_submenu_page('mec-intro', $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')), $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_location&post_type='.$this->PT);
201
  add_submenu_page('mec-intro', $this->main->m('taxonomy_organizers', __('Organizers', 'modern-events-calendar-lite')), $this->main->m('taxonomy_organizers', __('Organizers', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_organizer&post_type='.$this->PT);
202
+
203
+ // Speakers Menu
204
+ if(isset($this->settings['speakers_status']) and $this->settings['speakers_status'])
205
+ {
206
+ add_submenu_page('mec-intro', $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')), $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')), 'edit_others_posts', 'edit-tags.php?taxonomy=mec_speaker&post_type='.$this->PT);
207
+ }
208
+
209
  add_submenu_page('mec-intro', __('Shortcodes', 'modern-events-calendar-lite'), __('Shortcodes', 'modern-events-calendar-lite'), 'edit_others_posts', 'edit.php?post_type=mec_calendars');
210
  add_submenu_page('mec-intro', __('MEC - Settings', 'modern-events-calendar-lite'), __('Settings', 'modern-events-calendar-lite'), 'manage_options', 'MEC-settings', array($this, 'page'));
211
  }
app/features/mec/dashboard.php CHANGED
@@ -59,6 +59,9 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
59
  <div class="w-welcome">
60
  <p>
61
  <?php echo sprintf(__('%s - Most Powerful & Easy to Use Events Management System', 'modern-events-calendar-lite'), '<strong>'.($this->getPRO() ? __('Modern Event Calendar', 'modern-events-calendar-lite') : __('Modern Event Calendar (Lite)', 'modern-events-calendar-lite')).'</strong>'); ?>
 
 
 
62
  <?php if(version_compare(MEC_VERSION , $version, '<')): ?>
63
  <a class="mec-tooltip" title="<?php esc_attr_e("Update $version is ready for download.", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
64
  <?php endif; ?>
59
  <div class="w-welcome">
60
  <p>
61
  <?php echo sprintf(__('%s - Most Powerful & Easy to Use Events Management System', 'modern-events-calendar-lite'), '<strong>'.($this->getPRO() ? __('Modern Event Calendar', 'modern-events-calendar-lite') : __('Modern Event Calendar (Lite)', 'modern-events-calendar-lite')).'</strong>'); ?>
62
+ <?php if(!$this->getPRO()): ?>
63
+ <span><a href="https://wordpress.org/support/plugin/modern-events-calendar-lite/reviews/#new-post" target="_blank"><?php echo _x('Rate the plugin ★★★★★', 'plugin rate', 'modern-events-calendar-lite'); ?></a></span>
64
+ <?php endif; ?>
65
  <?php if(version_compare(MEC_VERSION , $version, '<')): ?>
66
  <a class="mec-tooltip" title="<?php esc_attr_e("Update $version is ready for download.", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
67
  <?php endif; ?>
app/features/mec/dyncss.php CHANGED
@@ -117,7 +117,7 @@ if($color && $color != '#40d9f1'): ?>
117
 
118
  /* == BorderColors
119
  ------------------ */
120
- .mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after
121
  {border-color: <?php echo $color; ?>;}
122
  .mec-event-countdown-style3 .mec-event-date:after
123
  {border-bottom-color:<?php echo $color; ?>;}
117
 
118
  /* == BorderColors
119
  ------------------ */
120
+ .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after
121
  {border-color: <?php echo $color; ?>;}
122
  .mec-event-countdown-style3 .mec-event-date:after
123
  {border-bottom-color:<?php echo $color; ?>;}
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -30,7 +30,7 @@ $events = $this->main->get_events();
30
  <?php $sk_options_list = isset($sk_options['list']) ? $sk_options['list'] : array(); ?>
31
  <div class="mec-form-row">
32
  <label class="mec-col-4" for="mec_skin_list_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
33
- <select class="mec-col-4" name="mec[sk-options][list][style]" id="mec_skin_list_style" onchange="mec_skin_style_changed('list', this.value); if(this.value == 'accordion') jQuery('.mec-sed-methode-container').hide(); else jQuery('.mec-sed-methode-container').show();">
34
  <option value="classic" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'classic') echo 'selected="selected"'; ?>><?php _e('Classic', 'modern-events-calendar-lite'); ?></option>
35
  <option value="minimal" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'minimal') echo 'selected="selected"'; ?>><?php _e('Minimal', 'modern-events-calendar-lite'); ?></option>
36
  <option value="modern" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
@@ -108,6 +108,16 @@ $events = $this->main->get_events();
108
  <div class="mec-sed-methode-container">
109
  <?php echo $this->sed_method_field('list', (isset($sk_options_list['sed_method']) ? $sk_options_list['sed_method'] : 0)); ?>
110
  </div>
 
 
 
 
 
 
 
 
 
 
111
  </div>
112
 
113
  <!-- Grid View -->
@@ -260,7 +270,7 @@ $events = $this->main->get_events();
260
  </div>
261
  <div class="mec-col-4">
262
  <input type="hidden" name="mec[sk-options][agenda][month_divider]" value="0" />
263
- <input type="checkbox" name="mec[sk-options][agenda][month_divider]" id="mec_skin_agenda_month_divider" value="1" <?php if(!isset($sk_options_agenda['month_divider']) or (isset($sk_options_agenda['month_divider']) and $sk_options_agenda['month_divider'])) echo 'checked="checked"'; ?> />
264
  <label for="mec_skin_agenda_month_divider"></label>
265
  </div>
266
  </div>
@@ -291,6 +301,13 @@ $events = $this->main->get_events();
291
  <option value="daily" <?php echo (isset($sk_options_full_calendar['default_view']) and $sk_options_full_calendar['default_view'] == 'daily') ? 'selected="selected"' : ''; ?>><?php _e('Daily View', 'modern-events-calendar-lite'); ?></option>
292
  </select>
293
  </div>
 
 
 
 
 
 
 
294
  <div class="mec-form-row mec-switcher">
295
  <div class="mec-col-4">
296
  <label for="mec_skin_full_calendar_list"><?php _e('List View', 'modern-events-calendar-lite'); ?></label>
@@ -412,7 +429,8 @@ $events = $this->main->get_events();
412
  <select class="mec-col-4" name="mec[sk-options][monthly_view][style]" id="mec_skin_monthly_view_style" onchange="mec_skin_style_changed('monthly_view', this.value);">
413
  <option value="classic" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'classic') echo 'selected="selected"'; ?>><?php _e('Classic', 'modern-events-calendar-lite'); ?></option>
414
  <option value="clean" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'clean') echo 'selected="selected"'; ?>><?php _e('Clean', 'modern-events-calendar-lite'); ?></option>
415
- <option value="modern" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
 
416
  </select>
417
  </div>
418
  <div class="mec-form-row">
@@ -642,6 +660,18 @@ $events = $this->main->get_events();
642
  <option value="organizer" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'organizer') echo 'selected="selected"'; ?>><?php _e('Organizer', 'modern-events-calendar-lite'); ?></option>
643
  </select>
644
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
645
  <?php echo $this->sed_method_field('masonry', (isset($sk_options_masonry['sed_method']) ? $sk_options_masonry['sed_method'] : 0)); ?>
646
  </div>
647
 
30
  <?php $sk_options_list = isset($sk_options['list']) ? $sk_options['list'] : array(); ?>
31
  <div class="mec-form-row">
32
  <label class="mec-col-4" for="mec_skin_list_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
33
+ <select class="mec-col-4" name="mec[sk-options][list][style]" id="mec_skin_list_style" onchange="mec_skin_style_changed('list', this.value); if(this.value == 'accordion'){ jQuery('.mec-sed-methode-container').hide();jQuery('.mec-toggle-month-divider').show(); }else{ jQuery('.mec-sed-methode-container').show();jQuery('.mec-toggle-month-divider').hide()}">
34
  <option value="classic" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'classic') echo 'selected="selected"'; ?>><?php _e('Classic', 'modern-events-calendar-lite'); ?></option>
35
  <option value="minimal" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'minimal') echo 'selected="selected"'; ?>><?php _e('Minimal', 'modern-events-calendar-lite'); ?></option>
36
  <option value="modern" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
108
  <div class="mec-sed-methode-container">
109
  <?php echo $this->sed_method_field('list', (isset($sk_options_list['sed_method']) ? $sk_options_list['sed_method'] : 0)); ?>
110
  </div>
111
+ <div class="mec-form-row mec-switcher mec-toggle-month-divider">
112
+ <div class="mec-col-4">
113
+ <label for="mec_skin_list_toggle_month_divider"><?php _e('Toggle for Month Divider', 'modern-events-calendar-lite'); ?></label>
114
+ </div>
115
+ <div class="mec-col-4">
116
+ <input type="hidden" name="mec[sk-options][list][toggle_month_divider]" value="0" />
117
+ <input type="checkbox" name="mec[sk-options][list][toggle_month_divider]" id="mec_skin_toggle_month_divider" value="1" <?php if(isset($sk_options_list['toggle_month_divider']) and $sk_options_list['toggle_month_divider']) echo 'checked="checked"'; ?> />
118
+ <label for="mec_skin_toggle_month_divider"></label>
119
+ </div>
120
+ </div>
121
  </div>
122
 
123
  <!-- Grid View -->
270
  </div>
271
  <div class="mec-col-4">
272
  <input type="hidden" name="mec[sk-options][agenda][month_divider]" value="0" />
273
+ <input type="checkbox" name="mec[sk-options][agenda][month_divider]" id="mec_skin_agenda_month_divider" value="1" <?php if(isset($sk_options_agenda['month_divider']) and $sk_options_agenda['month_divider']) echo 'checked="checked"'; ?> />
274
  <label for="mec_skin_agenda_month_divider"></label>
275
  </div>
276
  </div>
301
  <option value="daily" <?php echo (isset($sk_options_full_calendar['default_view']) and $sk_options_full_calendar['default_view'] == 'daily') ? 'selected="selected"' : ''; ?>><?php _e('Daily View', 'modern-events-calendar-lite'); ?></option>
302
  </select>
303
  </div>
304
+ <div class="mec-form-row">
305
+ <label class="mec-col-4" for="mec_skin_full_calendar_monthly_style"><?php _e('Monthly Style', 'modern-events-calendar-lite'); ?></label>
306
+ <select class="mec-col-4" name="mec[sk-options][full_calendar][monthly_style]" id="mec_skin_full_calendar_monthly_style">
307
+ <option value="clean" <?php echo (isset($sk_options_full_calendar['monthly_style']) and $sk_options_full_calendar['monthly_style'] == 'clean') ? 'selected="selected"' : ''; ?>><?php _e('Clean', 'modern-events-calendar-lite'); ?></option>
308
+ <option value="novel" <?php echo (isset($sk_options_full_calendar['monthly_style']) and $sk_options_full_calendar['monthly_style'] == 'novel') ? 'selected="selected"' : ''; ?>><?php _e('Novel', 'modern-events-calendar-lite'); ?></option>
309
+ </select>
310
+ </div>
311
  <div class="mec-form-row mec-switcher">
312
  <div class="mec-col-4">
313
  <label for="mec_skin_full_calendar_list"><?php _e('List View', 'modern-events-calendar-lite'); ?></label>
429
  <select class="mec-col-4" name="mec[sk-options][monthly_view][style]" id="mec_skin_monthly_view_style" onchange="mec_skin_style_changed('monthly_view', this.value);">
430
  <option value="classic" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'classic') echo 'selected="selected"'; ?>><?php _e('Classic', 'modern-events-calendar-lite'); ?></option>
431
  <option value="clean" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'clean') echo 'selected="selected"'; ?>><?php _e('Clean', 'modern-events-calendar-lite'); ?></option>
432
+ <option value="modern" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
433
+ <option value="novel" <?php if(isset($sk_options_monthly_view['style']) and $sk_options_monthly_view['style'] == 'novel') echo 'selected="selected"'; ?>><?php _e('Novel', 'modern-events-calendar-lite'); ?></option>
434
  </select>
435
  </div>
436
  <div class="mec-form-row">
660
  <option value="organizer" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'organizer') echo 'selected="selected"'; ?>><?php _e('Organizer', 'modern-events-calendar-lite'); ?></option>
661
  </select>
662
  </div>
663
+ <div class="mec-form-row mec-switcher">
664
+ <div class="mec-col-4">
665
+ <label><?php _e('Convert Masonry to Grid', 'modern-events-calendar-lite'); ?></label>
666
+ <p class="description"><?php _e('For using this option, your events should come with image', 'modern-events-calendar-lite'); ?></p>
667
+ </div>
668
+ <div class="mec-col-4">
669
+ <input type="hidden" name="mec[sk-options][masonry][masonry_like_grid]" value="0" />
670
+ <input type="checkbox" name="mec[sk-options][masonry][masonry_like_grid]" id="mec_skin_masonry_like_to_grid" value="1" <?php if(isset($sk_options_masonry['masonry_like_grid']) and $sk_options_masonry['masonry_like_grid']) echo 'checked="checked"'; ?> />
671
+ <label for="mec_skin_masonry_like_to_grid"></label>
672
+ </div>
673
+ </div>
674
+
675
  <?php echo $this->sed_method_field('masonry', (isset($sk_options_masonry['sed_method']) ? $sk_options_masonry['sed_method'] : 0)); ?>
676
  </div>
677
 
app/features/mec/meta_boxes/search_form.php CHANGED
@@ -168,6 +168,13 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
168
  <!-- Full Calendar -->
169
  <div class="mec-search-form-options-container mec-util-hidden" id="mec_full_calendar_search_form_options_container">
170
  <?php $sf_options_full_calendar = isset($sf_options['full_calendar']) ? $sf_options['full_calendar'] : array(); ?>
 
 
 
 
 
 
 
171
  <div class="mec-form-row">
172
  <label class="mec-col-12" for="mec_sf_full_calendar_month_filter"><?php _e('Month Filter', 'modern-events-calendar-lite'); ?></label>
173
  <select class="mec-col-12" name="mec[sf-options][full_calendar][month_filter][type]" id="mec_sf_full_calendar_month_filter">
168
  <!-- Full Calendar -->
169
  <div class="mec-search-form-options-container mec-util-hidden" id="mec_full_calendar_search_form_options_container">
170
  <?php $sf_options_full_calendar = isset($sf_options['full_calendar']) ? $sf_options['full_calendar'] : array(); ?>
171
+ <div class="mec-form-row">
172
+ <label class="mec-col-12" for="mec_sf_full_calendar_category"><?php echo $this->main->m('taxonomy_category', __('Category', 'modern-events-calendar-lite')); ?></label>
173
+ <select class="mec-col-12" name="mec[sf-options][full_calendar][category][type]" id="mec_sf_full_calendar_category">
174
+ <option value="0" <?php if(isset($sf_options_full_calendar['category']) and isset($sf_options_full_calendar['category']['type']) and $sf_options_full_calendar['category']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
175
+ <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>
176
+ </select>
177
+ </div>
178
  <div class="mec-form-row">
179
  <label class="mec-col-12" for="mec_sf_full_calendar_month_filter"><?php _e('Month Filter', 'modern-events-calendar-lite'); ?></label>
180
  <select class="mec-col-12" name="mec[sf-options][full_calendar][month_filter][type]" id="mec_sf_full_calendar_month_filter">
app/features/mec/settings.php CHANGED
@@ -7,6 +7,7 @@ $socials = $this->main->get_social_networks();
7
  $archive_skins = $this->main->get_archive_skins();
8
 
9
  $fees = isset($settings['fees']) ? $settings['fees'] : array();
 
10
  $currencies = $this->main->get_currencies();
11
 
12
  // WordPress Pages
@@ -64,7 +65,13 @@ if($this->getPRO())
64
  <a href="#currency_option" id="" class="wns-be-group-tab-link-a">
65
  <span class="pr-be-group-menu-title"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></span>
66
  </a>
67
- </li>
 
 
 
 
 
 
68
 
69
  <li id="" class="pr-be-group-menu-li">
70
  <a href="#googlemap_option" id="" class="wns-be-group-tab-link-a">
@@ -156,6 +163,12 @@ if($this->getPRO())
156
  </a>
157
  </li>
158
 
 
 
 
 
 
 
159
  <li id="" class="pr-be-group-menu-li">
160
  <a href="#buddy_option" id="" class="wns-be-group-tab-link-a">
161
  <span class="pr-be-group-menu-title"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></span>
@@ -449,7 +462,16 @@ if($this->getPRO())
449
  <a class="mec-tooltip" title="<?php esc_attr_e('Choose your single event style.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
450
  </div>
451
  </div>
452
-
 
 
 
 
 
 
 
 
 
453
  </div>
454
  <div id="currency_option" class="mec-options-fields">
455
 
@@ -504,6 +526,21 @@ if($this->getPRO())
504
 
505
  </div>
506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
  <div id="googlemap_option" class="mec-options-fields">
508
  <h4 class="mec-form-subtitle"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></h4>
509
 
@@ -865,6 +902,12 @@ if($this->getPRO())
865
  <input value="1" type="checkbox" name="mec[settings][fes_section_organizer]" <?php if(!isset($settings['fes_section_organizer']) or (isset($settings['fes_section_organizer']) and $settings['fes_section_organizer'])) echo 'checked="checked"'; ?> /> <?php _e('Event Organizer', 'modern-events-calendar-lite'); ?>
866
  </label>
867
  </div>
 
 
 
 
 
 
868
  <div class="mec-form-row">
869
  <label>
870
  <input type="hidden" name="mec[settings][fes_section_hourly_schedule]" value="0" />
@@ -880,7 +923,13 @@ if($this->getPRO())
880
  <div class="mec-form-row">
881
  <label>
882
  <input type="hidden" name="mec[settings][fes_section_fees]" value="0" />
883
- <input value="1" type="checkbox" name="mec[settings][fes_section_fees]" <?php if(!isset($settings['fes_section_fees']) or (isset($settings['fes_section_fees']) and $settings['fes_section_fees'])) echo 'checked="checked"'; ?> /> <?php _e('Fees/Taxes Options', 'modern-events-calendar-lite'); ?>
 
 
 
 
 
 
884
  </label>
885
  </div>
886
  <div class="mec-form-row">
@@ -1097,6 +1146,65 @@ if($this->getPRO())
1097
  <?php endif; ?>
1098
  </div>
1099
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
  <div id="buddy_option" class="mec-options-fields">
1101
  <h4 class="mec-form-subtitle"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></h4>
1102
  <div class="mec-form-row">
7
  $archive_skins = $this->main->get_archive_skins();
8
 
9
  $fees = isset($settings['fees']) ? $settings['fees'] : array();
10
+ $ticket_variations = isset($settings['ticket_variations']) ? $settings['ticket_variations'] : array();
11
  $currencies = $this->main->get_currencies();
12
 
13
  // WordPress Pages
65
  <a href="#currency_option" id="" class="wns-be-group-tab-link-a">
66
  <span class="pr-be-group-menu-title"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></span>
67
  </a>
68
+ </li>
69
+
70
+ <li id="" class="pr-be-group-menu-li">
71
+ <a href="#speakers_option" id="" class="wns-be-group-tab-link-a">
72
+ <span class="pr-be-group-menu-title"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></span>
73
+ </a>
74
+ </li>
75
 
76
  <li id="" class="pr-be-group-menu-li">
77
  <a href="#googlemap_option" id="" class="wns-be-group-tab-link-a">
163
  </a>
164
  </li>
165
 
166
+ <li id="" class="pr-be-group-menu-li">
167
+ <a href="#ticket_variations_option" id="" class="wns-be-group-tab-link-a">
168
+ <span class="pr-be-group-menu-title"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></span>
169
+ </a>
170
+ </li>
171
+
172
  <li id="" class="pr-be-group-menu-li">
173
  <a href="#buddy_option" id="" class="wns-be-group-tab-link-a">
174
  <span class="pr-be-group-menu-title"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></span>
462
  <a class="mec-tooltip" title="<?php esc_attr_e('Choose your single event style.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
463
  </div>
464
  </div>
465
+ <div class="mec-form-row">
466
+ <label class="mec-col-3" for="mec_settings_single_event_booking_style"><?php _e('Booking Style', 'modern-events-calendar-lite'); ?></label>
467
+ <div class="mec-col-4">
468
+ <select id="mec_settings_single_event_booking_style" name="mec[settings][single_booking_style]">
469
+ <option value="default" <?php echo (isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'default') ? 'selected="selected"' : ''; ?>><?php _e('Default', 'modern-events-calendar-lite'); ?></option>
470
+ <option value="modal" <?php echo (isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal') ? 'selected="selected"' : ''; ?>><?php _e('Modal', 'modern-events-calendar-lite'); ?></option>
471
+ </select>
472
+ <a class="mec-tooltip" title="<?php esc_attr_e('Choose your Booking style.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
473
+ </div>
474
+ </div>
475
  </div>
476
  <div id="currency_option" class="mec-options-fields">
477
 
526
 
527
  </div>
528
 
529
+ <div id="speakers_option" class="mec-options-fields">
530
+
531
+ <h4 class="mec-form-subtitle"><?php _e('Speakers Options', 'modern-events-calendar-lite'); ?></h4>
532
+ <div class="mec-form-row">
533
+ <div class="mec-col-12">
534
+ <label for="mec_settings_speakers_status">
535
+ <input type="hidden" name="mec[settings][speakers_status]" value="0" />
536
+ <input type="checkbox" name="mec[settings][speakers_status]" id="mec_settings_speakers_status" <?php echo ((isset($settings['speakers_status']) and $settings['speakers_status']) ? 'checked="checked"' : ''); ?> value="1" />
537
+ <?php _e('Enable speakers feature', 'modern-events-calendar-lite'); ?>
538
+ </label>
539
+ </div>
540
+ </div>
541
+
542
+ </div>
543
+
544
  <div id="googlemap_option" class="mec-options-fields">
545
  <h4 class="mec-form-subtitle"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></h4>
546
 
902
  <input value="1" type="checkbox" name="mec[settings][fes_section_organizer]" <?php if(!isset($settings['fes_section_organizer']) or (isset($settings['fes_section_organizer']) and $settings['fes_section_organizer'])) echo 'checked="checked"'; ?> /> <?php _e('Event Organizer', 'modern-events-calendar-lite'); ?>
903
  </label>
904
  </div>
905
+ <div class="mec-form-row">
906
+ <label>
907
+ <input type="hidden" name="mec[settings][fes_section_speaker]" value="0" />
908
+ <input value="1" type="checkbox" name="mec[settings][fes_section_speaker]" <?php if(isset($settings['fes_section_speaker']) and $settings['fes_section_speaker']) echo 'checked="checked"'; ?> /> <?php _e('Speakers', 'modern-events-calendar-lite'); ?>
909
+ </label>
910
+ </div>
911
  <div class="mec-form-row">
912
  <label>
913
  <input type="hidden" name="mec[settings][fes_section_hourly_schedule]" value="0" />
923
  <div class="mec-form-row">
924
  <label>
925
  <input type="hidden" name="mec[settings][fes_section_fees]" value="0" />
926
+ <input value="1" type="checkbox" name="mec[settings][fes_section_fees]" <?php if(!isset($settings['fes_section_fees']) or (isset($settings['fes_section_fees']) and $settings['fes_section_fees'])) echo 'checked="checked"'; ?> /> <?php _e('Fees / Taxes Options', 'modern-events-calendar-lite'); ?>
927
+ </label>
928
+ </div>
929
+ <div class="mec-form-row">
930
+ <label>
931
+ <input type="hidden" name="mec[settings][fes_section_ticket_variations]" value="0" />
932
+ <input value="1" type="checkbox" name="mec[settings][fes_section_ticket_variations]" <?php if(!isset($settings['fes_section_ticket_variations']) or (isset($settings['fes_section_ticket_variations']) and $settings['fes_section_ticket_variations'])) echo 'checked="checked"'; ?> /> <?php _e('Ticket Variations / Options', 'modern-events-calendar-lite'); ?>
933
  </label>
934
  </div>
935
  <div class="mec-form-row">
1146
  <?php endif; ?>
1147
  </div>
1148
 
1149
+ <div id="ticket_variations_option" class="mec-options-fields">
1150
+ <h4 class="mec-form-subtitle"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></h4>
1151
+
1152
+ <?php if(!$this->main->getPRO()): ?>
1153
+ <div class="info-msg"><?php echo sprintf(__("%s is required to use this feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
1154
+ <?php else: ?>
1155
+ <div class="mec-form-row">
1156
+ <label>
1157
+ <input type="hidden" name="mec[settings][ticket_variations_status]" value="0" />
1158
+ <input onchange="jQuery('#mec_ticket_variations_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][ticket_variations_status]" <?php if(isset($settings['ticket_variations_status']) and $settings['ticket_variations_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable ticket options module', 'modern-events-calendar-lite'); ?>
1159
+ </label>
1160
+ </div>
1161
+ <div id="mec_ticket_variations_container_toggle" class="<?php if((isset($settings['ticket_variations_status']) and !$settings['ticket_variations_status']) or !isset($settings['ticket_variations_status'])) echo 'mec-util-hidden'; ?>">
1162
+ <div class="mec-form-row">
1163
+ <button class="button" type="button" id="mec_add_ticket_variation_button"><?php _e('Add Variation / Option', 'modern-events-calendar-lite'); ?></button>
1164
+ </div>
1165
+ <div class="mec-form-row" id="mec_ticket_variations_list">
1166
+ <?php $i = 0; foreach($ticket_variations as $key=>$ticket_variation): if(!is_numeric($key)) continue; $i = max($i, $key); ?>
1167
+ <div class="mec-box" id="mec_ticket_variation_row<?php echo $i; ?>">
1168
+ <div class="mec-form-row">
1169
+ <input class="mec-col-12" type="text" name="mec[settings][ticket_variations][<?php echo $i; ?>][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" value="<?php echo (isset($ticket_variation['title']) ? $ticket_variation['title'] : ''); ?>" />
1170
+ </div>
1171
+ <div class="mec-form-row">
1172
+ <span class="mec-col-4">
1173
+ <input type="text" name="mec[settings][ticket_variations][<?php echo $i; ?>][price]" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" value="<?php echo (isset($ticket_variation['price']) ? $ticket_variation['price'] : ''); ?>" />
1174
+ <a class="mec-tooltip" title="<?php esc_attr_e('Option Price', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1175
+ </span>
1176
+ <span class="mec-col-4">
1177
+ <input type="number" min="0" name="mec[settings][ticket_variations][<?php echo $i; ?>][max]" placeholder="<?php esc_attr_e('Maximum Per Ticket', 'modern-events-calendar-lite'); ?>" value="<?php echo (isset($ticket_variation['max']) ? $ticket_variation['max'] : ''); ?>" />
1178
+ <a class="mec-tooltip" title="<?php esc_attr_e('Maximum Per Ticket. Leave it blank for unlimited.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1179
+ </span>
1180
+ <button class="button" type="button" id="mec_remove_ticket_variation_button<?php echo $i; ?>" onclick="mec_remove_ticket_variation(<?php echo $i; ?>);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
1181
+ </div>
1182
+ </div>
1183
+ <?php endforeach; ?>
1184
+ </div>
1185
+ <input type="hidden" id="mec_new_ticket_variation_key" value="<?php echo $i+1; ?>" />
1186
+ <div class="mec-util-hidden" id="mec_new_ticket_variation_raw">
1187
+ <div class="mec-box" id="mec_ticket_variation_row:i:">
1188
+ <div class="mec-form-row">
1189
+ <input class="mec-col-12" type="text" name="mec[settings][ticket_variations][:i:][title]" placeholder="<?php esc_attr_e('Title', 'modern-events-calendar-lite'); ?>" />
1190
+ </div>
1191
+ <div class="mec-form-row">
1192
+ <span class="mec-col-4">
1193
+ <input type="text" name="mec[settings][ticket_variations][:i:][price]" placeholder="<?php esc_attr_e('Price', 'modern-events-calendar-lite'); ?>" />
1194
+ <a class="mec-tooltip" title="<?php esc_attr_e('Option Price', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1195
+ </span>
1196
+ <span class="mec-col-4">
1197
+ <input type="number" min="0" name="mec[settings][ticket_variations][:i:][max]" placeholder="<?php esc_attr_e('Maximum Per Ticket', 'modern-events-calendar-lite'); ?>" value="1" />
1198
+ <a class="mec-tooltip" title="<?php esc_attr_e('Maximum Per Ticket. Leave it blank for unlimited.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1199
+ </span>
1200
+ <button class="button" type="button" id="mec_remove_ticket_variation_button:i:" onclick="mec_remove_ticket_variation(:i:);"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
1201
+ </div>
1202
+ </div>
1203
+ </div>
1204
+ </div>
1205
+ <?php endif; ?>
1206
+ </div>
1207
+
1208
  <div id="buddy_option" class="mec-options-fields">
1209
  <h4 class="mec-form-subtitle"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></h4>
1210
  <div class="mec-form-row">
app/features/speakers.php ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * Webnus MEC speakers class.
7
+ * @author Webnus <info@webnus.biz>
8
+ */
9
+ class MEC_feature_speakers extends MEC_base
10
+ {
11
+ public $factory;
12
+ public $main;
13
+ public $settings;
14
+
15
+ /**
16
+ * Constructor method
17
+ * @author Webnus <info@webnus.biz>
18
+ */
19
+ public function __construct()
20
+ {
21
+ // Import MEC Factory
22
+ $this->factory = $this->getFactory();
23
+
24
+ // Import MEC Main
25
+ $this->main = $this->getMain();
26
+
27
+ // MEC Settings
28
+ $this->settings = $this->main->get_settings();
29
+ }
30
+
31
+ /**
32
+ * Initialize organizers feature
33
+ * @author Webnus <info@webnus.biz>
34
+ */
35
+ public function init()
36
+ {
37
+ // Speakers Feature is Disabled
38
+ if(!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) return;
39
+
40
+ $this->factory->action('init', array($this, 'register_taxonomy'), 25);
41
+ $this->factory->action('mec_speaker_edit_form_fields', array($this, 'edit_form'));
42
+ $this->factory->action('mec_speaker_add_form_fields', array($this, 'add_form'));
43
+ $this->factory->action('edited_mec_speaker', array($this, 'save_metadata'));
44
+ $this->factory->action('created_mec_speaker', array($this, 'save_metadata'));
45
+
46
+ $this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
47
+ $this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
48
+ }
49
+
50
+ /**
51
+ * Registers speaker taxonomy
52
+ * @author Webnus <info@webnus.biz>
53
+ */
54
+ public function register_taxonomy()
55
+ {
56
+ $singular_label = $this->main->m('taxonomy_speaker', __('Speaker', 'modern-events-calendar-lite'));
57
+ $plural_label = $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite'));
58
+
59
+ register_taxonomy(
60
+ 'mec_speaker',
61
+ $this->main->get_main_post_type(),
62
+ array(
63
+ 'label'=>$plural_label,
64
+ 'labels'=>array(
65
+ 'name'=>$plural_label,
66
+ 'singular_name'=>$singular_label,
67
+ 'all_items'=>sprintf(__('All %s', 'modern-events-calendar-lite'), $plural_label),
68
+ 'edit_item'=>sprintf(__('Edit %s', 'modern-events-calendar-lite'), $singular_label),
69
+ 'view_item'=>sprintf(__('View %s', 'modern-events-calendar-lite'), $singular_label),
70
+ 'update_item'=>sprintf(__('Update %s', 'modern-events-calendar-lite'), $singular_label),
71
+ 'add_new_item'=>sprintf(__('Add New %s', 'modern-events-calendar-lite'), $singular_label),
72
+ 'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label),
73
+ 'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label),
74
+ 'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label),
75
+ ),
76
+ 'rewrite'=>array('slug'=>'events-speaker'),
77
+ 'public'=>false,
78
+ 'show_ui'=>true,
79
+ 'hierarchical'=>false,
80
+ )
81
+ );
82
+
83
+ register_taxonomy_for_object_type('mec_speaker', $this->main->get_main_post_type());
84
+ }
85
+
86
+ /**
87
+ * Show edit form of speaker taxonomy
88
+ * @author Webnus <info@webnus.biz>
89
+ * @param object $term
90
+ */
91
+ public function edit_form($term)
92
+ {
93
+ $job_title = get_metadata('term', $term->term_id, 'job_title', true);
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
+ ?>
101
+ <tr class="form-field">
102
+ <th scope="row" valign="top">
103
+ <label for="mec_job_title"><?php _e('Job Title', 'modern-events-calendar-lite'); ?></label>
104
+ </th>
105
+ <td>
106
+ <input type="text" placeholder="<?php esc_attr_e('Insert speaker job title.', 'modern-events-calendar-lite'); ?>" name="job_title" id="mec_job_title" value="<?php echo $job_title; ?>" />
107
+ </td>
108
+ </tr>
109
+ <tr class="form-field">
110
+ <th scope="row" valign="top">
111
+ <label for="mec_tel"><?php _e('Tel', 'modern-events-calendar-lite'); ?></label>
112
+ </th>
113
+ <td>
114
+ <input type="text" placeholder="<?php esc_attr_e('Insert speaker phone number.', 'modern-events-calendar-lite'); ?>" name="tel" id="mec_tel" value="<?php echo $tel; ?>" />
115
+ </td>
116
+ </tr>
117
+ <tr class="form-field">
118
+ <th scope="row" valign="top">
119
+ <label for="mec_email"><?php _e('Email', 'modern-events-calendar-lite'); ?></label>
120
+ </th>
121
+ <td>
122
+ <input type="text" placeholder="<?php esc_attr_e('Insert speaker email address.', 'modern-events-calendar-lite'); ?>" name="email" id="mec_email" value="<?php echo $email; ?>" />
123
+ </td>
124
+ </tr>
125
+ <tr class="form-field">
126
+ <th scope="row" valign="top">
127
+ <label for="mec_facebook"><?php _e('Facebook Page', 'modern-events-calendar-lite'); ?></label>
128
+ </th>
129
+ <td>
130
+ <input type="text" placeholder="<?php esc_attr_e('Insert URL of Facebook Page', 'modern-events-calendar-lite'); ?>" name="facebook" id="mec_facebook" value="<?php echo $facebook; ?>" />
131
+ </td>
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">
142
+ <th scope="row" valign="top">
143
+ <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
144
+ </th>
145
+ <td>
146
+ <input type="text" placeholder="<?php esc_attr_e('Insert URL of Twitter Page', 'modern-events-calendar-lite'); ?>" name="twitter" id="mec_twitter" value="<?php echo $twitter; ?>" />
147
+ </td>
148
+ </tr>
149
+ <tr class="form-field">
150
+ <th scope="row" valign="top">
151
+ <label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
152
+ </th>
153
+ <td>
154
+ <div id="mec_thumbnail_img"><?php if(trim($thumbnail) != '') echo '<img src="'.$thumbnail.'" />'; ?></div>
155
+ <input type="hidden" name="thumbnail" id="mec_thumbnail" value="<?php echo $thumbnail; ?>" />
156
+ <button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
157
+ <button type="button" class="mec_remove_image_button button <?php echo (!trim($thumbnail) ? 'mec-util-hidden' : ''); ?>"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
158
+ </td>
159
+ </tr>
160
+ <?php
161
+ }
162
+
163
+ /**
164
+ * Show add form of speaker taxonomy
165
+ * @author Webnus <info@webnus.biz>
166
+ */
167
+ public function add_form()
168
+ {
169
+ ?>
170
+ <div class="form-field">
171
+ <label for="mec_job_title"><?php _e('Job Title', 'modern-events-calendar-lite'); ?></label>
172
+ <input type="text" name="job_title" placeholder="<?php esc_attr_e('Insert speaker job title.', 'modern-events-calendar-lite'); ?>" id="mec_job_title" value="" />
173
+ </div>
174
+ <div class="form-field">
175
+ <label for="mec_tel"><?php _e('Tel', 'modern-events-calendar-lite'); ?></label>
176
+ <input type="text" name="tel" placeholder="<?php esc_attr_e('Insert organizer phone number.', 'modern-events-calendar-lite'); ?>" id="mec_tel" value="" />
177
+ </div>
178
+ <div class="form-field">
179
+ <label for="mec_email"><?php _e('Email', 'modern-events-calendar-lite'); ?></label>
180
+ <input type="text" name="email" placeholder="<?php esc_attr_e('Insert organizer email address.', 'modern-events-calendar-lite'); ?>" id="mec_email" value="" />
181
+ </div>
182
+ <div class="form-field">
183
+ <label for="mec_facebook"><?php _e('Facebook Page', 'modern-events-calendar-lite'); ?></label>
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>
192
+ <input type="text" name="twitter" placeholder="<?php esc_attr_e('Insert URL of Twitter Page', 'modern-events-calendar-lite'); ?>" id="mec_twitter" value="" />
193
+ </div>
194
+ <div class="form-field">
195
+ <label for="mec_thumbnail_button"><?php _e('Thumbnail', 'modern-events-calendar-lite'); ?></label>
196
+ <div id="mec_thumbnail_img"></div>
197
+ <input type="hidden" name="thumbnail" id="mec_thumbnail" value="" />
198
+ <button type="button" class="mec_upload_image_button button" id="mec_thumbnail_button"><?php echo __('Upload/Add image', 'modern-events-calendar-lite'); ?></button>
199
+ <button type="button" class="mec_remove_image_button button mec-util-hidden"><?php echo __('Remove image', 'modern-events-calendar-lite'); ?></button>
200
+ </div>
201
+ <?php
202
+ }
203
+
204
+ /**
205
+ * Save meta data of speaker taxonomy
206
+ * @author Webnus <info@webnus.biz>
207
+ * @param int $term_id
208
+ */
209
+ public function save_metadata($term_id)
210
+ {
211
+ $job_title = isset($_POST['job_title']) ? sanitize_text_field($_POST['job_title']) : '';
212
+ $tel = isset($_POST['tel']) ? sanitize_text_field($_POST['tel']) : '';
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);
220
+ update_term_meta($term_id, 'tel', $tel);
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
+
228
+ /**
229
+ * Filter columns of speaker taxonomy
230
+ * @author Webnus <info@webnus.biz>
231
+ * @param array $columns
232
+ * @return array
233
+ */
234
+ public function filter_columns($columns)
235
+ {
236
+ unset($columns['name']);
237
+ unset($columns['slug']);
238
+ unset($columns['description']);
239
+ unset($columns['posts']);
240
+
241
+ $columns['id'] = __('ID', 'modern-events-calendar-lite');
242
+ $columns['name'] = $this->main->m('taxonomy_speaker', __('Speaker', 'modern-events-calendar-lite'));
243
+ $columns['job_title'] = __('Job Title', 'modern-events-calendar-lite');
244
+ $columns['tel'] = __('Tel', 'modern-events-calendar-lite');
245
+ $columns['posts'] = __('Count', 'modern-events-calendar-lite');
246
+
247
+ return $columns;
248
+ }
249
+
250
+ /**
251
+ * Filter content of speaker taxonomy columns
252
+ * @author Webnus <info@webnus.biz>
253
+ * @param string $content
254
+ * @param string $column_name
255
+ * @param int $term_id
256
+ * @return string
257
+ */
258
+ public function filter_columns_content($content, $column_name, $term_id)
259
+ {
260
+ switch($column_name)
261
+ {
262
+ case 'id':
263
+
264
+ $content = $term_id;
265
+ break;
266
+
267
+ case 'tel':
268
+
269
+ $content = get_metadata('term', $term_id, 'tel', true);
270
+
271
+ break;
272
+
273
+ case 'job_title':
274
+
275
+ $content = get_metadata('term', $term_id, 'job_title', true);
276
+
277
+ break;
278
+
279
+ default:
280
+ break;
281
+ }
282
+
283
+ return $content;
284
+ }
285
+ }
app/libraries/book.php CHANGED
@@ -37,13 +37,14 @@ class MEC_book extends MEC_base
37
  * @param array $tickets
38
  * @param int $event_id
39
  * @param array $event_tickets
 
40
  * @return array
41
  */
42
- public function get_price_details($tickets, $event_id, $event_tickets)
43
  {
44
  $total = 0;
45
  $details = array();
46
-
47
  $total_tickets_count = 0;
48
  foreach($tickets as $ticket_id=>$count)
49
  {
@@ -57,6 +58,30 @@ class MEC_book extends MEC_base
57
  }
58
 
59
  $details[] = array('amount'=>$total, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  // Default fee amount
62
  $total_fee_amount = 0;
@@ -71,7 +96,7 @@ class MEC_book extends MEC_base
71
  $fee_amount = 0;
72
  if(!is_numeric($key)) continue;
73
 
74
- if($fee['type'] == 'percent') $fee_amount += ($total*$fee['amount'])/100;
75
  elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
76
  elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
77
 
@@ -81,7 +106,7 @@ class MEC_book extends MEC_base
81
  }
82
  }
83
 
84
- return array('total'=>($total+$total_fee_amount), 'details'=>$details);
85
  }
86
 
87
  /**
@@ -356,8 +381,8 @@ class MEC_book extends MEC_base
356
 
357
  if($bookings_limit_unlimited == '1') $total_bookings_limit = '-1';
358
 
359
- // Set Total Booking Limit
360
- $availability['total'] = $total_bookings_limit;
361
 
362
  $ex = explode(':', $date);
363
  $date = $ex[0];
@@ -371,16 +396,8 @@ class MEC_book extends MEC_base
371
  $booked = 0;
372
  foreach($tickets as $ticket_id=>$ticket)
373
  {
374
- // $limit = (isset($ticket['limit']) and trim($ticket['limit'])) ? $ticket['limit'] : -1;
375
- // $limit = ( trim($ticket['limit']) == 0 ) ? $ticket['limit'] : $ticket['limit'];
376
- // var_dump(isset($ticket['limit']));
377
- if ( isset($ticket['limit']) and trim($ticket['limit']) ) {
378
- $limit = $ticket['limit'];
379
- } elseif ( trim($ticket['limit']) == 0 ) {
380
- $limit = $ticket['limit'];
381
- } else {
382
- $limit = -1;
383
- }
384
  $query = new WP_Query(array
385
  (
386
  'post_type'=>$this->PT,
@@ -413,6 +430,8 @@ class MEC_book extends MEC_base
413
  }
414
  }
415
 
 
 
416
  $booked += $bookings;
417
 
418
  // Restore original Post Data
@@ -420,22 +439,24 @@ class MEC_book extends MEC_base
420
 
421
  if((isset($ticket['unlimited']) and $ticket['unlimited'] == 1) or $limit == -1)
422
  {
423
- $availability[$ticket_id] = -1;
424
  continue;
425
  }
426
- if ( $limit == '' ) {
427
- $limit = 0;
428
- }
429
  // Unlimited Total
430
  if($total_bookings_limit == '-1') $ticket_availability = $limit-$bookings;
431
  else $ticket_availability = min(($limit-$bookings), max($total_bookings_limit, 0));
432
 
433
-
434
  $availability[$ticket_id] = $ticket_availability >= 0 ? $ticket_availability : 0;
435
  }
436
 
 
 
 
437
  // Total Booking Limit Reached
438
- if($total_bookings_limit != -1 and $booked >= $total_bookings_limit)
439
  {
440
  $new_availability = array();
441
  foreach($availability as $ticket_id=>$limit)
37
  * @param array $tickets
38
  * @param int $event_id
39
  * @param array $event_tickets
40
+ * @param array $variations
41
  * @return array
42
  */
43
+ public function get_price_details($tickets, $event_id, $event_tickets, $variations = array())
44
  {
45
  $total = 0;
46
  $details = array();
47
+
48
  $total_tickets_count = 0;
49
  foreach($tickets as $ticket_id=>$count)
50
  {
58
  }
59
 
60
  $details[] = array('amount'=>$total, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
61
+
62
+ // Default variations amount
63
+ $total_variations_amount = 0;
64
+
65
+ // Variations module is enabled and some variations bought
66
+ if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'] and is_array($variations) and count($variations))
67
+ {
68
+ $ticket_variations = $this->main->ticket_variations($event_id);
69
+
70
+ foreach($ticket_variations as $key=>$ticket_variation)
71
+ {
72
+ if(!is_numeric($key)) continue;
73
+ if(!isset($ticket_variation['title']) or (isset($ticket_variation['title']) and !trim($ticket_variation['title']))) continue;
74
+
75
+ $variation_count = isset($variations[$key]) ? $variations[$key] : 0;
76
+ if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
77
+
78
+ $variation_amount = $ticket_variation['price']*$variation_count;
79
+ $variation_title = $ticket_variation['title'].' ('.$variation_count.')';
80
+ $details[] = array('amount'=>$variation_amount, 'description'=>__($variation_title, 'modern-events-calendar-lite'), 'type'=>'variation');
81
+
82
+ $total_variations_amount += $variation_amount;
83
+ }
84
+ }
85
 
86
  // Default fee amount
87
  $total_fee_amount = 0;
96
  $fee_amount = 0;
97
  if(!is_numeric($key)) continue;
98
 
99
+ if($fee['type'] == 'percent') $fee_amount += (($total+$total_variations_amount)*$fee['amount'])/100;
100
  elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
101
  elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
102
 
106
  }
107
  }
108
 
109
+ return array('total'=>($total+$total_fee_amount+$total_variations_amount), 'details'=>$details);
110
  }
111
 
112
  /**
381
 
382
  if($bookings_limit_unlimited == '1') $total_bookings_limit = '-1';
383
 
384
+ // Total Booking Limit
385
+ $total_bookings_limit_original = $total_bookings_limit;
386
 
387
  $ex = explode(':', $date);
388
  $date = $ex[0];
396
  $booked = 0;
397
  foreach($tickets as $ticket_id=>$ticket)
398
  {
399
+ $limit = (isset($ticket['limit']) and trim($ticket['limit']) != '') ? $ticket['limit'] : -1;
400
+
 
 
 
 
 
 
 
 
401
  $query = new WP_Query(array
402
  (
403
  'post_type'=>$this->PT,
430
  }
431
  }
432
 
433
+ if($total_bookings_limit > 0) $total_bookings_limit = max(($total_bookings_limit - $bookings), 0);
434
+
435
  $booked += $bookings;
436
 
437
  // Restore original Post Data
439
 
440
  if((isset($ticket['unlimited']) and $ticket['unlimited'] == 1) or $limit == -1)
441
  {
442
+ $availability[$ticket_id] = ($total_bookings_limit > 0) ? $total_bookings_limit : -1;
443
  continue;
444
  }
445
+
446
+ if($limit == '') $limit = 0;
447
+
448
  // Unlimited Total
449
  if($total_bookings_limit == '-1') $ticket_availability = $limit-$bookings;
450
  else $ticket_availability = min(($limit-$bookings), max($total_bookings_limit, 0));
451
 
 
452
  $availability[$ticket_id] = $ticket_availability >= 0 ? $ticket_availability : 0;
453
  }
454
 
455
+ // Set Total Booking Limit
456
+ $availability['total'] = $total_bookings_limit;
457
+
458
  // Total Booking Limit Reached
459
+ if($total_bookings_limit_original != -1 and $booked >= $total_bookings_limit_original)
460
  {
461
  $new_availability = array();
462
  foreach($availability as $ticket_id=>$limit)
app/libraries/factory.php CHANGED
@@ -188,7 +188,9 @@ class MEC_factory extends MEC_base
188
  if(!$this->getPRO())
189
  {
190
  $upgrade = '<a href="'.$this->main->get_pro_link().'" target="_blank"><b>'._x('Upgrade to Pro Version', 'plugin link', 'modern-events-calendar-lite').'</b></a>';
 
191
  $links[] = $upgrade;
 
192
  }
193
  }
194
 
@@ -269,6 +271,9 @@ class MEC_factory extends MEC_base
269
 
270
  // Include Lity Lightbox
271
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
 
 
 
272
 
273
  // Include MEC frontend JS libraries
274
  wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
@@ -764,7 +769,7 @@ class MEC_factory extends MEC_base
764
  foreach($calendars as $calendar)
765
  {
766
  // Calendar exists
767
- if(post_exists($calendar['title'], 'MEC')) continue;
768
 
769
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
770
  $post_id = wp_insert_post($post);
188
  if(!$this->getPRO())
189
  {
190
  $upgrade = '<a href="'.$this->main->get_pro_link().'" target="_blank"><b>'._x('Upgrade to Pro Version', 'plugin link', 'modern-events-calendar-lite').'</b></a>';
191
+ $rate = '<a href="https://wordpress.org/support/plugin/modern-events-calendar-lite/reviews/#new-post" target="_blank">'._x('Rate the plugin ★★★★★', 'plugin rate', 'modern-events-calendar-lite').'</a>';
192
  $links[] = $upgrade;
193
+ $links[] = $rate;
194
  }
195
  }
196
 
271
 
272
  // Include Lity Lightbox
273
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
274
+
275
+ // Include color brightness
276
+ wp_enqueue_script('mec-colorbrightness-script', $this->main->asset('packages/colorbrightness/colorbrightness.min.js'));
277
 
278
  // Include MEC frontend JS libraries
279
  wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
769
  foreach($calendars as $calendar)
770
  {
771
  // Calendar exists
772
+ if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
773
 
774
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
775
  $post_id = wp_insert_post($post);
app/libraries/main.php CHANGED
@@ -163,7 +163,7 @@ class MEC_main extends MEC_base
163
  $type = strtolower($type);
164
 
165
  // Frontend
166
- if(in_array($type, array('frontend','site'))) $url = site_url().'/';
167
  // Backend
168
  elseif(in_array($type, array('backend','admin'))) $url = admin_url();
169
  // WordPress Content directory URL
@@ -524,6 +524,7 @@ class MEC_main extends MEC_base
524
  /**
525
  * Returns registration form fields
526
  * @author Webnus <info@webnus.biz>
 
527
  * @return array
528
  */
529
  public function get_reg_fields($event_id = NULL)
@@ -546,6 +547,33 @@ class MEC_main extends MEC_base
546
 
547
  return $reg_fields;
548
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
 
550
  /**
551
  * Returns Messages Options
@@ -1569,18 +1597,40 @@ class MEC_main extends MEC_base
1569
  $pdf->Write(20, __('Attendees', 'modern-events-calendar-lite'));
1570
  $pdf->Ln();
1571
 
1572
- $pdf->SetFont('DejaVuBold', '', 12);
1573
- $pdf->Cell(50, 10, __('Name', 'modern-events-calendar-lite'), 1, 0);
1574
- $pdf->Cell(70, 10, __('Email', 'modern-events-calendar-lite'), 1, 0);
1575
- $pdf->Cell(70, 10, __('Ticket', 'modern-events-calendar-lite'), 1, 0);
1576
- $pdf->Ln();
1577
-
1578
- $pdf->SetFont('DejaVu', '', 10);
1579
  foreach($transaction['tickets'] as $attendee)
1580
  {
1581
- $pdf->Cell(50, 7, $attendee['name'], 1, 0);
1582
- $pdf->Cell(70, 7, $attendee['email'], 1, 0);
1583
- $pdf->MultiCell(70, 7, ((isset($event->tickets[$attendee['id']]) ? $event->tickets[$attendee['id']]['name'] : '').' '.(isset($event->tickets[$attendee['id']]) ? $event->tickets[$attendee['id']]['price_label'] : '')), 1, 'J');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1584
  }
1585
  }
1586
 
@@ -1594,7 +1644,7 @@ class MEC_main extends MEC_base
1594
  $pdf->SetFont('DejaVu', '', 12);
1595
  foreach($transaction['price_details']['details'] as $price_row)
1596
  {
1597
- $pdf->Write(6, $price_row['description']." - ".$this->render_price($price_row['amount']));
1598
  $pdf->Ln();
1599
  }
1600
 
@@ -4105,6 +4155,8 @@ class MEC_main extends MEC_base
4105
  'taxonomy_location'=>array('label'=>__('Location Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Location', 'modern-events-calendar-lite')),
4106
  'taxonomy_organizers'=>array('label'=>__('Organizer Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Organizers', 'modern-events-calendar-lite')),
4107
  'taxonomy_organizer'=>array('label'=>__('Organizer Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Organizer', 'modern-events-calendar-lite')),
 
 
4108
  )
4109
  ),
4110
  'weekdays'=>array(
163
  $type = strtolower($type);
164
 
165
  // Frontend
166
+ if(in_array($type, array('frontend','site'))) $url = home_url().'/';
167
  // Backend
168
  elseif(in_array($type, array('backend','admin'))) $url = admin_url();
169
  // WordPress Content directory URL
524
  /**
525
  * Returns registration form fields
526
  * @author Webnus <info@webnus.biz>
527
+ * @param integer $event_id
528
  * @return array
529
  */
530
  public function get_reg_fields($event_id = NULL)
547
 
548
  return $reg_fields;
549
  }
550
+
551
+ /**
552
+ * Returns Ticket Variations
553
+ * @author Webnus <info@webnus.biz>
554
+ * @param integer $event_id
555
+ * @return array
556
+ */
557
+ public function ticket_variations($event_id = NULL)
558
+ {
559
+ $options = $this->get_options();
560
+ $ticket_variations = (isset($options['ticket_variations']) and is_array($options['ticket_variations'])) ? $options['ticket_variations'] : array();
561
+
562
+ // Event Ticket Variations
563
+ if($event_id)
564
+ {
565
+ $global_inheritance = get_post_meta($event_id, 'mec_ticket_variations_global_inheritance', true);
566
+ if(trim($global_inheritance) == '') $global_inheritance = 1;
567
+
568
+ if(!$global_inheritance)
569
+ {
570
+ $event_ticket_variations = get_post_meta($event_id, 'mec_ticket_variations', true);
571
+ if(is_array($event_ticket_variations)) $ticket_variations = $event_ticket_variations;
572
+ }
573
+ }
574
+
575
+ return $ticket_variations;
576
+ }
577
 
578
  /**
579
  * Returns Messages Options
1597
  $pdf->Write(20, __('Attendees', 'modern-events-calendar-lite'));
1598
  $pdf->Ln();
1599
 
1600
+ $i = 1;
 
 
 
 
 
 
1601
  foreach($transaction['tickets'] as $attendee)
1602
  {
1603
+ $pdf->SetFont('DejaVuBold', '', 12);
1604
+ $pdf->Write(6, $attendee['name']);
1605
+ $pdf->Ln();
1606
+
1607
+ $pdf->SetFont('DejaVu', '', 10);
1608
+ $pdf->Write(6, $attendee['email']);
1609
+ $pdf->Ln();
1610
+
1611
+ $pdf->Write(6, ((isset($event->tickets[$attendee['id']]) ? __($this->m('ticket', __('Ticket', 'modern-events-calendar-lite'))).': '.$event->tickets[$attendee['id']]['name'] : '').' '.(isset($event->tickets[$attendee['id']]) ? $event->tickets[$attendee['id']]['price_label'] : '')));
1612
+
1613
+ // Ticket Variations
1614
+ if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
1615
+ {
1616
+ $ticket_variations = $this->ticket_variations($event_id);
1617
+
1618
+ foreach($attendee['variations'] as $variation_id=>$variation_count)
1619
+ {
1620
+ if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
1621
+
1622
+ $variation_title = (isset($ticket_variations[$variation_id]) and isset($ticket_variations[$variation_id]['title'])) ? $ticket_variations[$variation_id]['title'] : '';
1623
+ if(!trim($variation_title)) continue;
1624
+
1625
+ $pdf->Ln();
1626
+ $pdf->Write(6, '+ '.$variation_title.' ('.$variation_count.')');
1627
+ }
1628
+ }
1629
+
1630
+ if($i != count($transaction['tickets'])) $pdf->Ln(12);
1631
+ else $pdf->Ln();
1632
+
1633
+ $i++;
1634
  }
1635
  }
1636
 
1644
  $pdf->SetFont('DejaVu', '', 12);
1645
  foreach($transaction['price_details']['details'] as $price_row)
1646
  {
1647
+ $pdf->Write(6, $price_row['description'].": ".$this->render_price($price_row['amount']));
1648
  $pdf->Ln();
1649
  }
1650
 
4155
  'taxonomy_location'=>array('label'=>__('Location Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Location', 'modern-events-calendar-lite')),
4156
  'taxonomy_organizers'=>array('label'=>__('Organizer Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Organizers', 'modern-events-calendar-lite')),
4157
  'taxonomy_organizer'=>array('label'=>__('Organizer Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Organizer', 'modern-events-calendar-lite')),
4158
+ 'taxonomy_speakers'=>array('label'=>__('Speaker Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Speakers', 'modern-events-calendar-lite')),
4159
+ 'taxonomy_speaker'=>array('label'=>__('Speaker Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Speaker', 'modern-events-calendar-lite')),
4160
  )
4161
  ),
4162
  'weekdays'=>array(
app/libraries/render.php CHANGED
@@ -11,6 +11,7 @@ class MEC_render extends MEC_base
11
  public $db;
12
  public $main;
13
  public $file;
 
14
 
15
  /**
16
  * Constructor method
@@ -33,6 +34,9 @@ class MEC_render extends MEC_base
33
 
34
  // MEC DB library
35
  $this->db = $this->getDB();
 
 
 
36
  }
37
 
38
  /**
@@ -227,24 +231,22 @@ class MEC_render extends MEC_base
227
  */
228
  public function vdefault($atts = array())
229
  {
230
- $settings = $this->main->get_settings();
231
-
232
- if(!isset($settings['default_skin_archive']) or (isset($settings['default_skin_archive']) and trim($settings['default_skin_archive']) == ''))
233
  {
234
  return $this->vmonth($atts);
235
  }
236
 
237
- if($settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth($atts);
238
- elseif($settings['default_skin_archive'] == 'full_calendar') $content = $this->vfull($atts);
239
- elseif($settings['default_skin_archive'] == 'yearly_view') $content = $this->vyear($atts);
240
- elseif($settings['default_skin_archive'] == 'weekly_view') $content = $this->vweek($atts);
241
- elseif($settings['default_skin_archive'] == 'daily_view') $content = $this->vday($atts);
242
- elseif($settings['default_skin_archive'] == 'timetable') $content = $this->vtimetable($atts);
243
- elseif($settings['default_skin_archive'] == 'masonry') $content = $this->vmasonry($atts);
244
- elseif($settings['default_skin_archive'] == 'list') $content = $this->vlist($atts);
245
- elseif($settings['default_skin_archive'] == 'grid') $content = $this->vgrid($atts);
246
- elseif($settings['default_skin_archive'] == 'agenda') $content = $this->vagenda($atts);
247
- elseif($settings['default_skin_archive'] == 'map') $content = $this->vmap($atts);
248
  else $content = apply_filters('mec_default_skin_content', '');
249
 
250
  return $content;
@@ -264,10 +266,7 @@ class MEC_render extends MEC_base
264
  // Get event ID
265
  $event_id = isset($atts['id']) ? $atts['id'] : 0;
266
 
267
- // MEC Settings
268
- $settings = $this->main->get_settings();
269
-
270
- $defaults = array('maximum_dates'=>(isset($settings['booking_maximum_dates']) ? $settings['booking_maximum_dates'] : 6));
271
  $atts = apply_filters('mec_vsingle_atts', $this->parse($event_id, wp_parse_args($atts, $defaults)));
272
 
273
  $skin = 'single';
@@ -282,13 +281,11 @@ class MEC_render extends MEC_base
282
  */
283
  public function vcategory($atts = array())
284
  {
285
- $settings = $this->main->get_settings();
286
-
287
  // Skin
288
- $skin = (isset($settings['default_skin_category']) and trim($settings['default_skin_category']) != '') ? $settings['default_skin_category'] : 'list';
289
 
290
  // Show Only Expired Events
291
- if(isset($settings['category_events_method']) and $settings['category_events_method'] == 2) $atts['show_only_past_events'] = 1;
292
 
293
  if($skin == 'full_calendar') $content = $this->vfull($atts);
294
  elseif($skin == 'yearly_view') $content = $this->vyear($atts);
@@ -375,7 +372,7 @@ class MEC_render extends MEC_base
375
  {
376
  $cached = wp_cache_get($post_id, 'mec-events-data');
377
  if($cached) return $cached;
378
-
379
  $data = new stdClass();
380
 
381
  // Post Data
@@ -413,8 +410,23 @@ class MEC_render extends MEC_base
413
  'end'=>($hide_end_time ? '' : $this->main->get_time($meta['mec_end_day_seconds']))
414
  );
415
  }
416
-
417
- $data->hourly_schedules = isset($meta['mec_hourly_schedules']) ? $meta['mec_hourly_schedules'] : array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  $data->tickets = isset($meta['mec_tickets']) ? $meta['mec_tickets'] : array();
419
  $data->color = isset($meta['mec_color']) ? $meta['mec_color'] : '';
420
 
@@ -449,15 +461,36 @@ class MEC_render extends MEC_base
449
  'large'=>esc_url(get_the_post_thumbnail_url($post_id, 'large')),
450
  'full'=>esc_url(get_the_post_thumbnail_url($post_id, 'full'))
451
  );
452
-
453
- $terms = wp_get_post_terms($post_id, array('mec_label', 'mec_organizer', 'mec_location', 'mec_category', 'post_tag'), array('fields'=>'all'));
 
 
 
 
454
  foreach($terms as $term)
455
  {
456
- if($term->taxonomy == 'mec_label') $data->labels[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'color'=>get_metadata('term', $term->term_id, 'color', true));
 
 
 
457
  elseif($term->taxonomy == 'mec_organizer') $data->organizers[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'tel'=>get_metadata('term', $term->term_id, 'tel', true), 'email'=>get_metadata('term', $term->term_id, 'email', true), 'url'=>get_metadata('term', $term->term_id, 'url', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
458
  elseif($term->taxonomy == 'mec_location') $data->locations[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'address'=>get_metadata('term', $term->term_id, 'address', true), 'latitude'=>get_metadata('term', $term->term_id, 'latitude', true), 'longitude'=>get_metadata('term', $term->term_id, 'longitude', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
459
  elseif($term->taxonomy == 'mec_category') $data->categories[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
460
  elseif($term->taxonomy == 'post_tag') $data->tags[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  }
462
 
463
  // Set to cache
@@ -781,9 +814,8 @@ class MEC_render extends MEC_base
781
  public function markers($events)
782
  {
783
  $markers = array();
784
-
785
- $settings = $this->main->get_settings();
786
- $date_format = (isset($settings['google_maps_date_format1']) and trim($settings['google_maps_date_format1'])) ? $settings['google_maps_date_format1'] : 'M d Y';
787
 
788
  foreach($events as $event)
789
  {
11
  public $db;
12
  public $main;
13
  public $file;
14
+ public $settings;
15
 
16
  /**
17
  * Constructor method
34
 
35
  // MEC DB library
36
  $this->db = $this->getDB();
37
+
38
+ // MEC Settings
39
+ $this->settings = $this->main->get_settings();
40
  }
41
 
42
  /**
231
  */
232
  public function vdefault($atts = array())
233
  {
234
+ if(!isset($this->settings['default_skin_archive']) or (isset($this->settings['default_skin_archive']) and trim($this->settings['default_skin_archive']) == ''))
 
 
235
  {
236
  return $this->vmonth($atts);
237
  }
238
 
239
+ if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth($atts);
240
+ elseif($this->settings['default_skin_archive'] == 'full_calendar') $content = $this->vfull($atts);
241
+ elseif($this->settings['default_skin_archive'] == 'yearly_view') $content = $this->vyear($atts);
242
+ elseif($this->settings['default_skin_archive'] == 'weekly_view') $content = $this->vweek($atts);
243
+ elseif($this->settings['default_skin_archive'] == 'daily_view') $content = $this->vday($atts);
244
+ elseif($this->settings['default_skin_archive'] == 'timetable') $content = $this->vtimetable($atts);
245
+ elseif($this->settings['default_skin_archive'] == 'masonry') $content = $this->vmasonry($atts);
246
+ elseif($this->settings['default_skin_archive'] == 'list') $content = $this->vlist($atts);
247
+ elseif($this->settings['default_skin_archive'] == 'grid') $content = $this->vgrid($atts);
248
+ elseif($this->settings['default_skin_archive'] == 'agenda') $content = $this->vagenda($atts);
249
+ elseif($this->settings['default_skin_archive'] == 'map') $content = $this->vmap($atts);
250
  else $content = apply_filters('mec_default_skin_content', '');
251
 
252
  return $content;
266
  // Get event ID
267
  $event_id = isset($atts['id']) ? $atts['id'] : 0;
268
 
269
+ $defaults = array('maximum_dates'=>(isset($this->settings['booking_maximum_dates']) ? $this->settings['booking_maximum_dates'] : 6));
 
 
 
270
  $atts = apply_filters('mec_vsingle_atts', $this->parse($event_id, wp_parse_args($atts, $defaults)));
271
 
272
  $skin = 'single';
281
  */
282
  public function vcategory($atts = array())
283
  {
 
 
284
  // Skin
285
+ $skin = (isset($this->settings['default_skin_category']) and trim($this->settings['default_skin_category']) != '') ? $this->settings['default_skin_category'] : 'list';
286
 
287
  // Show Only Expired Events
288
+ if(isset($this->settings['category_events_method']) and $this->settings['category_events_method'] == 2) $atts['show_only_past_events'] = 1;
289
 
290
  if($skin == 'full_calendar') $content = $this->vfull($atts);
291
  elseif($skin == 'yearly_view') $content = $this->vyear($atts);
372
  {
373
  $cached = wp_cache_get($post_id, 'mec-events-data');
374
  if($cached) return $cached;
375
+
376
  $data = new stdClass();
377
 
378
  // Post Data
410
  'end'=>($hide_end_time ? '' : $this->main->get_time($meta['mec_end_day_seconds']))
411
  );
412
  }
413
+
414
+ // Hourly Schedules
415
+ $meta_hourly_schedules = isset($meta['mec_hourly_schedules']) ? $meta['mec_hourly_schedules'] : array();
416
+ $first_key = key($meta_hourly_schedules);
417
+
418
+ $hourly_schedules = array();
419
+ if(count($meta_hourly_schedules) and !isset($meta_hourly_schedules[$first_key]['schedules']))
420
+ {
421
+ $hourly_schedules[] = array(
422
+ 'title' => __('Day 1', 'modern-events-calendar-lite'),
423
+ 'schedules'=>$meta_hourly_schedules
424
+ );
425
+ }
426
+ else $hourly_schedules = $meta_hourly_schedules;
427
+
428
+ $data->hourly_schedules = $hourly_schedules;
429
+
430
  $data->tickets = isset($meta['mec_tickets']) ? $meta['mec_tickets'] : array();
431
  $data->color = isset($meta['mec_color']) ? $meta['mec_color'] : '';
432
 
461
  'large'=>esc_url(get_the_post_thumbnail_url($post_id, 'large')),
462
  'full'=>esc_url(get_the_post_thumbnail_url($post_id, 'full'))
463
  );
464
+
465
+ $taxonomies = array('mec_label', 'mec_organizer', 'mec_location', 'mec_category', 'post_tag');
466
+ if(isset($this->settings['speakers_status']) and $this->settings['speakers_status']) $taxonomies[] = 'mec_speaker';
467
+
468
+ $terms = wp_get_post_terms($post_id, $taxonomies, array('fields'=>'all'));
469
+
470
  foreach($terms as $term)
471
  {
472
+ // First Validation
473
+ if(!isset($term->taxonomy)) continue;
474
+
475
+ if($term->taxonomy == 'mec_label') $data->labels[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'color'=>get_metadata('term', $term->term_id, 'color', true), 'style'=>get_metadata('term', $term->term_id, 'style', true));
476
  elseif($term->taxonomy == 'mec_organizer') $data->organizers[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'tel'=>get_metadata('term', $term->term_id, 'tel', true), 'email'=>get_metadata('term', $term->term_id, 'email', true), 'url'=>get_metadata('term', $term->term_id, 'url', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
477
  elseif($term->taxonomy == 'mec_location') $data->locations[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name, 'address'=>get_metadata('term', $term->term_id, 'address', true), 'latitude'=>get_metadata('term', $term->term_id, 'latitude', true), 'longitude'=>get_metadata('term', $term->term_id, 'longitude', true), 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true));
478
  elseif($term->taxonomy == 'mec_category') $data->categories[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
479
  elseif($term->taxonomy == 'post_tag') $data->tags[$term->term_id] = array('id'=>$term->term_id, 'name'=>$term->name);
480
+ elseif($term->taxonomy == 'mec_speaker')
481
+ {
482
+ $data->speakers[$term->term_id] = array(
483
+ 'id'=>$term->term_id,
484
+ 'name'=>$term->name,
485
+ 'job_title'=>get_metadata('term', $term->term_id, 'job_title', true),
486
+ 'tel'=>get_metadata('term', $term->term_id, 'tel', true),
487
+ 'email'=>get_metadata('term', $term->term_id, 'email', true),
488
+ 'facebook'=>get_metadata('term', $term->term_id, 'facebook', true),
489
+ 'twitter'=>get_metadata('term', $term->term_id, 'twitter', true),
490
+ 'gplus'=>get_metadata('term', $term->term_id, 'gplus', true),
491
+ 'thumbnail'=>get_metadata('term', $term->term_id, 'thumbnail', true)
492
+ );
493
+ }
494
  }
495
 
496
  // Set to cache
814
  public function markers($events)
815
  {
816
  $markers = array();
817
+
818
+ $date_format = (isset($this->settings['google_maps_date_format1']) and trim($this->settings['google_maps_date_format1'])) ? $this->settings['google_maps_date_format1'] : 'M d Y';
 
819
 
820
  foreach($events as $event)
821
  {
app/libraries/skins.php CHANGED
@@ -94,6 +94,7 @@ class MEC_skins extends MEC_base
94
  public $active_day;
95
  public $load_more_button;
96
  public $month_divider;
 
97
 
98
  /**
99
  * Constructor method
@@ -613,6 +614,28 @@ class MEC_skins extends MEC_base
613
  include $calendar_path;
614
  return ob_get_clean();
615
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
 
617
  /**
618
  * Generates Search Form
94
  public $active_day;
95
  public $load_more_button;
96
  public $month_divider;
97
+ public $toggle_month_divider;
98
 
99
  /**
100
  * Constructor method
614
  include $calendar_path;
615
  return ob_get_clean();
616
  }
617
+
618
+ /**
619
+ * @param object $event
620
+ * @return string
621
+ */
622
+ public function get_event_classes($event)
623
+ {
624
+ // Labels are not set
625
+ if(!isset($event->data) or (isset($event->data) and !isset($event->data->labels))) return NULL;
626
+
627
+ // No Labels
628
+ if(!is_array($event->data->labels) or (is_array($event->data->labels) and !count($event->data->labels))) return NULL;
629
+
630
+ $classes = '';
631
+ foreach($event->data->labels as $label)
632
+ {
633
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
634
+ $classes .= ' '.$label['style'];
635
+ }
636
+
637
+ return trim($classes);
638
+ }
639
 
640
  /**
641
  * Generates Search Form
app/modules/booking/default.php CHANGED
@@ -387,6 +387,16 @@ function mec_book_free'.$uniqueid.'()
387
  }
388
  });
389
  }
 
 
 
 
 
 
 
 
 
 
390
  </script>';
391
 
392
  // Include javascript code into the footer
387
  }
388
  });
389
  }
390
+
391
+ function mec_check_variation_min_max'.$uniqueid.'(variation)
392
+ {
393
+ var value = parseInt(jQuery(variation).val());
394
+ var max = parseInt(jQuery(variation).prop("max"));
395
+ var min = parseInt(jQuery(variation).prop("min"));
396
+
397
+ if(value > max) jQuery(variation).val(max);
398
+ if(value < min) jQuery(variation).val(min);
399
+ }
400
  </script>';
401
 
402
  // Include javascript code into the footer
app/modules/booking/steps/form.php CHANGED
@@ -5,8 +5,8 @@ defined('MECEXEC') or die();
5
  $event_id = $event->ID;
6
  $reg_fields = $this->main->get_reg_fields($event_id);
7
 
 
8
  $event_tickets = isset($event->data->tickets) ? $event->data->tickets : array();
9
- $price_details = $this->book->get_price_details($tickets, $event_id, $event_tickets);
10
 
11
  $current_user = wp_get_current_user();
12
  $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($this->settings['booking_first_for_all']) and $this->settings['booking_first_for_all'] == 1)) ? true : false;
@@ -83,6 +83,14 @@ $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($th
83
  </div>
84
  <?php endforeach; endif; ?>
85
 
 
 
 
 
 
 
 
 
86
  <input type="hidden" name="book[tickets][<?php echo $j; ?>][id]" value="<?php echo $ticket_id; ?>" />
87
  <input type="hidden" name="book[tickets][<?php echo $j; ?>][count]" value="1" />
88
  </li>
@@ -99,19 +107,6 @@ $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($th
99
  <?php endif; ?>
100
 
101
  </ul>
102
- <div class="mec-book-form-price">
103
- <?php if(isset($price_details['details']) and is_array($price_details['details']) and count($price_details['details'])): ?>
104
- <ul class="mec-book-price-details">
105
- <?php foreach($price_details['details'] as $detail): ?>
106
- <li class="mec-book-price-detail mec-book-price-detail-type<?php echo $detail['type']; ?>">
107
- <span class="mec-book-price-detail-description"><?php echo $detail['description']; ?></span>
108
- <span class="mec-book-price-detail-amount"><?php echo $this->main->render_price($detail['amount']); ?></span>
109
- </li>
110
- <?php endforeach; ?>
111
- </ul>
112
- <?php endif; ?>
113
- <span class="mec-book-price-total"><?php echo $this->main->render_price($price_details['total']); ?></span>
114
- </div>
115
  <input type="hidden" name="book[date]" value="<?php echo $date; ?>" />
116
  <input type="hidden" name="book[event_id]" value="<?php echo $event_id; ?>" />
117
  <input type="hidden" name="action" value="mec_book_form" />
5
  $event_id = $event->ID;
6
  $reg_fields = $this->main->get_reg_fields($event_id);
7
 
8
+ $ticket_variations = $this->main->ticket_variations($event_id);
9
  $event_tickets = isset($event->data->tickets) ? $event->data->tickets : array();
 
10
 
11
  $current_user = wp_get_current_user();
12
  $first_for_all = (!isset($this->settings['booking_first_for_all']) or (isset($this->settings['booking_first_for_all']) and $this->settings['booking_first_for_all'] == 1)) ? true : false;
83
  </div>
84
  <?php endforeach; endif; ?>
85
 
86
+ <!-- Ticket Variations -->
87
+ <?php if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'] and count($ticket_variations)): foreach($ticket_variations as $ticket_variation_id=>$ticket_variation): if(!is_numeric($ticket_variation_id) or !isset($ticket_variation['title']) or (isset($ticket_variation['title']) and !trim($ticket_variation['title']))) continue; ?>
88
+ <div class="mec-book-ticket-variation" data-ticket-id="<?php echo $j; ?>" data-ticket-variation-id="<?php echo $ticket_variation_id; ?>">
89
+ <h5><span class="mec-ticket-variation-name"><?php echo $ticket_variation['title']; ?></span><span class="mec-ticket-variation-price"><?php echo $this->main->render_price($ticket_variation['price']); ?></span></h5>
90
+ <input type="number" min="0" max="<?php echo ((is_numeric($ticket_variation['max']) and $ticket_variation['max']) ? $ticket_variation['max'] : 1); ?>" name="book[tickets][<?php echo $j; ?>][variations][<?php echo $ticket_variation_id; ?>]" onchange="mec_check_variation_min_max<?php echo $uniqueid; ?>(this);">
91
+ </div>
92
+ <?php endforeach; endif; ?>
93
+
94
  <input type="hidden" name="book[tickets][<?php echo $j; ?>][id]" value="<?php echo $ticket_id; ?>" />
95
  <input type="hidden" name="book[tickets][<?php echo $j; ?>][count]" value="1" />
96
  </li>
107
  <?php endif; ?>
108
 
109
  </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  <input type="hidden" name="book[date]" value="<?php echo $date; ?>" />
111
  <input type="hidden" name="book[event_id]" value="<?php echo $event_id; ?>" />
112
  <input type="hidden" name="action" value="mec_book_form" />
app/modules/links/details.php CHANGED
@@ -21,7 +21,7 @@ $socials = $this->get_social_networks();
21
  <?php
22
  foreach($socials as $social)
23
  {
24
- if(!$settings['sn'][$social['id']]) continue;
25
  if(is_callable($social['function'])) echo call_user_func($social['function'], $url, $event);
26
  }
27
  ?>
21
  <?php
22
  foreach($socials as $social)
23
  {
24
+ if(!isset($settings['sn'][$social['id']]) or (isset($settings['sn'][$social['id']]) and !$settings['sn'][$social['id']])) continue;
25
  if(is_callable($social['function'])) echo call_user_func($social['function'], $url, $event);
26
  }
27
  ?>
app/modules/links/list.php CHANGED
@@ -16,6 +16,6 @@ $socials = $this->get_social_networks();
16
 
17
  foreach($socials as $social)
18
  {
19
- if(!$settings['sn'][$social['id']]) continue;
20
  if(is_callable($social['function'])) echo call_user_func($social['function'], $url, $event);
21
  }
16
 
17
  foreach($socials as $social)
18
  {
19
+ if(!isset($settings['sn'][$social['id']]) or (isset($settings['sn'][$social['id']]) and !$settings['sn'][$social['id']])) continue;
20
  if(is_callable($social['function'])) echo call_user_func($social['function'], $url, $event);
21
  }
app/modules/speakers/details.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ // MEC Settings
6
+ $settings = $this->get_settings();
7
+
8
+ // The module is disabled
9
+ if(!isset($settings['speakers_status']) or (isset($settings['speakers_status']) and !$settings['speakers_status'])) return;
10
+
11
+ // Event Speakers
12
+ $speakers = (isset($event->data->speakers) and is_array($event->data->speakers)) ? $event->data->speakers : array();
13
+
14
+ // No Speaker
15
+ if(!count($speakers)) return false;
16
+ ?>
17
+ <div class="mec-speakers-details mec-frontbox" id="mec_speakers_details">
18
+ <h3 class="mec-speakers mec-frontbox-title"><?php echo $this->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></h3>
19
+ <ul>
20
+ <?php foreach($speakers as $speaker): ?>
21
+ <li>
22
+ <div class="mec-speaker-avatar">
23
+ <a class="mec-color-hover" href="#mec-speaker-info-<?php echo $event->ID.'-'.$speaker['id']; ?>" data-lity>
24
+ <?php if(isset($speaker['thumbnail']) and trim($speaker['thumbnail'])): ?>
25
+ <img class="mec-border-color-hover" src="<?php echo $speaker['thumbnail']; ?>" alt="<?php echo $speaker['name']; ?>">
26
+ <?php endif; ?>
27
+ <span class="mec-speaker-name"><?php echo $speaker['name']; ?></span>
28
+ <?php if(isset($speaker['job_title']) and trim($speaker['job_title'])): ?>
29
+ <span class="mec-speaker-job-title"><?php echo $speaker['job_title']; ?></span>
30
+ <?php endif; ?>
31
+ </a>
32
+ </div>
33
+ <div class="mec-speaker-info lity-hide mec-hourly-schedule-speaker-info" id="mec-speaker-info-<?php echo $event->ID.'-'.$speaker['id']; ?>">
34
+ <!-- Speaker Thumbnail -->
35
+ <?php if($thumbnail = trim(get_term_meta($speaker['id'], 'thumbnail', true))): ?>
36
+ <div class="mec-hourly-schedule-speaker-thumbnail">
37
+ <img src="<?php echo $thumbnail; ?>" alt="<?php echo $speaker['name']; ?>">
38
+ </div>
39
+ <?php endif; ?>
40
+ <div class="mec-hourly-schedule-speaker-details">
41
+ <!-- Speaker Name -->
42
+ <div class="mec-hourly-schedule-speaker-name">
43
+ <?php echo $speaker['name']; ?>
44
+ </div>
45
+ <!-- Speaker Job Title -->
46
+ <?php if($job_title = trim(get_term_meta($speaker['id'], 'job_title', true))): ?>
47
+ <div class="mec-hourly-schedule-speaker-job-title mec-color">
48
+ <?php echo $speaker['job_title']; ?>
49
+ </div>
50
+ <?php endif; ?>
51
+ <div class="mec-hourly-schedule-speaker-contact-information">
52
+ <!-- Speaker Telephone -->
53
+ <?php if($tel = trim(get_term_meta($speaker['id'], 'tel', true))): ?>
54
+ <a href="tel:<?php echo $tel; ?>"><i class="mec-fa-phone"></i></a>
55
+ <?php endif; ?>
56
+ <!-- Speaker Email -->
57
+ <?php if($email = trim(get_term_meta($speaker['id'], 'email', true))): ?>
58
+ <a href="mailto:<?php echo $email; ?>" target="_blank"><i class="mec-fa-envelope"></i></a>
59
+ <?php endif; ?>
60
+ <!-- Speaker Facebook page -->
61
+ <?php if($facebook = trim(get_term_meta($speaker['id'], 'facebook', true))): ?>
62
+ <a href="<?php echo $facebook; ?>" target="_blank"><i class="mec-fa-facebook"></i></a>
63
+ <?php endif; ?>
64
+ <!-- Speaker Twitter -->
65
+ <?php if($twitter = trim(get_term_meta($speaker['id'], 'twitter', true))): ?>
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 -->
74
+ <?php $desc = trim(term_description($speaker['id'])); if( !empty($desc)): ?>
75
+ <div class="mec-hourly-schedule-speaker-description">
76
+ <?php echo $desc; ?>
77
+ </div>
78
+ <?php endif; ?>
79
+ </div>
80
+ </div>
81
+ </li>
82
+ <?php endforeach; ?>
83
+ </ul>
84
+ </div>
app/modules/speakers/index.html ADDED
File without changes
app/skins/agenda/render.php CHANGED
@@ -1,8 +1,15 @@
1
  <?php
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
 
 
4
  ?>
5
  <?php foreach($this->events as $date=>$events): ?>
 
 
 
 
 
6
  <div class="mec-events-agenda">
7
 
8
  <div class="mec-agenda-date-wrap">
@@ -20,9 +27,25 @@ defined('MECEXEC') or die();
20
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
21
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
22
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  ?>
 
24
  <?php if($this->style == 'clean'): ?>
25
- <div class="mec-agenda-event">
26
  <i class="mec-sl-clock "></i>
27
  <span class="mec-agenda-time">
28
  <?php
@@ -36,6 +59,7 @@ defined('MECEXEC') or die();
36
  <span class="mec-agenda-event-title">
37
  <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>
38
  <?php echo $event_color; ?>
 
39
  </span>
40
  </div>
41
  <?php endif; ?>
1
  <?php
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
+
5
+ $current_month_divider = $this->request->getVar('current_month_divider', 0);
6
  ?>
7
  <?php foreach($this->events as $date=>$events): ?>
8
+
9
+ <?php $month_id = date('Ym', strtotime($date)); if($this->month_divider and $month_id != $current_month_divider): $current_month_divider = $month_id; ?>
10
+ <div class="mec-month-divider" data-toggle-divider="mec-toggle-<?php echo date_i18n('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>"><span><?php echo date_i18n('F Y', strtotime($date)); ?></span><i class="mec-sl-arrow-down"></i></div>
11
+ <?php endif; ?>
12
+
13
  <div class="mec-events-agenda">
14
 
15
  <div class="mec-agenda-date-wrap">
27
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
28
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
29
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
30
+ $label_style = '';
31
+ if ( !empty($event->data->labels) ):
32
+ foreach( $event->data->labels as $label)
33
+ {
34
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
35
+ if ( $label['style'] == 'mec-label-featured' )
36
+ {
37
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
38
+ }
39
+ elseif ( $label['style'] == 'mec-label-canceled' )
40
+ {
41
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
42
+ }
43
+ }
44
+ endif;
45
  ?>
46
+
47
  <?php if($this->style == 'clean'): ?>
48
+ <div class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
49
  <i class="mec-sl-clock "></i>
50
  <span class="mec-agenda-time">
51
  <?php
59
  <span class="mec-agenda-event-title">
60
  <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>
61
  <?php echo $event_color; ?>
62
+ <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
63
  </span>
64
  </div>
65
  <?php endif; ?>
app/skins/available_spot/tpl.php CHANGED
@@ -21,6 +21,21 @@ $event_time = '';
21
  $event_time .= sprintf("%02d", (isset($event->data->meta['mec_date']['start']['hour']) ? $event->data->meta['mec_date']['start']['hour'] : 8)).':';
22
  $event_time .= sprintf("%02d", (isset($event->data->meta['mec_date']['start']['minutes']) ? $event->data->meta['mec_date']['start']['minutes'] : 0));
23
  $event_time .= (isset($event->data->meta['mec_date']['start']['ampm']) ? $event->data->meta['mec_date']['start']['ampm'] : 'AM');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.date('H:i:s', strtotime($event_time))));
26
 
@@ -73,7 +88,7 @@ foreach($availability as $ticket_id=>$count)
73
  <div class="mec-av-spot-wrap">
74
 
75
  <div class="mec-av-spot">
76
- <article class="mec-event-article mec-clear">
77
 
78
  <?php if($event_thumb_url): ?>
79
  <div class="mec-av-spot-img" style="background: url('<?php echo $event_thumb_url; ?>');"></div>
21
  $event_time .= sprintf("%02d", (isset($event->data->meta['mec_date']['start']['hour']) ? $event->data->meta['mec_date']['start']['hour'] : 8)).':';
22
  $event_time .= sprintf("%02d", (isset($event->data->meta['mec_date']['start']['minutes']) ? $event->data->meta['mec_date']['start']['minutes'] : 0));
23
  $event_time .= (isset($event->data->meta['mec_date']['start']['ampm']) ? $event->data->meta['mec_date']['start']['ampm'] : 'AM');
24
+ $label_style = '';
25
+ if ( !empty($event->data->labels) ):
26
+ foreach( $event->data->labels as $label)
27
+ {
28
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
29
+ if ( $label['style'] == 'mec-label-featured' )
30
+ {
31
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
32
+ }
33
+ elseif ( $label['style'] == 'mec-label-canceled' )
34
+ {
35
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
36
+ }
37
+ }
38
+ endif;
39
 
40
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.date('H:i:s', strtotime($event_time))));
41
 
88
  <div class="mec-av-spot-wrap">
89
 
90
  <div class="mec-av-spot">
91
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
92
 
93
  <?php if($event_thumb_url): ?>
94
  <div class="mec-av-spot-img" style="background: url('<?php echo $event_thumb_url; ?>');"></div>
app/skins/carousel/render.php CHANGED
@@ -15,12 +15,27 @@ $settings = $this->main->get_settings();
15
 
16
  // Skip to next event if there is no image
17
  if(empty($event->data->thumbnails['meccarouselthumb'])) continue;
18
-
19
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
20
  $organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
21
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ?>
23
- <article class="mec-event-article mec-clear">
24
  <?php if($this->style == 'type1'): ?>
25
  <div class="event-carousel-type1-head clearfix">
26
  <div class="mec-event-date mec-color">
15
 
16
  // Skip to next event if there is no image
17
  if(empty($event->data->thumbnails['meccarouselthumb'])) continue;
18
+
19
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
20
  $organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
21
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
22
+ $label_style = '';
23
+ if ( !empty($event->data->labels) ):
24
+ foreach( $event->data->labels as $label)
25
+ {
26
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
27
+ if ( $label['style'] == 'mec-label-featured' )
28
+ {
29
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
30
+ }
31
+ elseif ( $label['style'] == 'mec-label-canceled' )
32
+ {
33
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
34
+ }
35
+ }
36
+ endif;
37
  ?>
38
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
39
  <?php if($this->style == 'type1'): ?>
40
  <div class="event-carousel-type1-head clearfix">
41
  <div class="mec-event-date mec-color">
app/skins/countdown/tpl.php CHANGED
@@ -14,6 +14,21 @@ $event_organizer = isset($event->data->organizers[$event->data->meta['mec_organi
14
  $event_date = (isset($event->date['start']) ? $event->date['start']['date'] : $event->data->meta['mec_start_date']);
15
  $event_link = (isset($event->data->permalink) and trim($event->data->permalink)) ? $this->main->get_event_date_permalink($event->data->permalink, $event_date) : get_permalink($event->data->ID);
16
  $event_title = $event->data->title;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  $start_date = (isset($event->date['start']) and isset($event->date['start']['date'])) ? $event->date['start']['date'] : date('Y-m-d H:i:s');
19
 
@@ -59,10 +74,10 @@ $this->factory->params('footer', $javascript);
59
  </style>
60
  <div class="mec-wrap <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
61
  <?php if($this->style == 'style1'): ?>
62
- <article class="mec-event-countdown-style1 col-md-12">
63
  <div class="mec-event-countdown-part1 col-md-4">
64
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
65
- <h4 class="mec-event-title"><?php echo $event_title; ?></h4>
66
  </div>
67
  <div class="mec-event-countdown-part2 col-md-5">
68
  <div class="mec-event-date-place">
@@ -103,10 +118,10 @@ $this->factory->params('footer', $javascript);
103
  </div>
104
  </article>
105
  <?php elseif($this->style == 'style2'): ?>
106
- <article class="mec-event-countdown-style2">
107
  <div class="mec-event-countdown-part1 col-md-4">
108
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
109
- <h4 class="mec-event-title"><?php echo $event_title; ?></h4>
110
  </div>
111
  <div class="mec-event-countdown-part2 col-md-5">
112
  <div class="mec-event-date-place">
@@ -147,7 +162,7 @@ $this->factory->params('footer', $javascript);
147
  </div>
148
  </article>
149
  <?php elseif($this->style == 'style3'): ?>
150
- <article class="mec-event-countdown-style3">
151
  <div class="mec-event-countdown-part1">
152
  <div class="mec-event-countdown-part-title">
153
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
@@ -159,7 +174,7 @@ $this->factory->params('footer', $javascript);
159
  <span class="mec-date3"><?php echo date_i18n($this->date_format_style33, strtotime($event_date)); ?></span>
160
  </div>
161
  <div class="mec-event-title-link">
162
- <h4 class="mec-event-title"><?php echo $event_title; ?></h4>
163
  <a class="mec-event-link" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('Event Detail', 'modern-events-calendar-lite')); ?></a>
164
  </div>
165
  <div class="mec-event-countdown" id="mec_skin_countdown<?php echo $this->id; ?>">
14
  $event_date = (isset($event->date['start']) ? $event->date['start']['date'] : $event->data->meta['mec_start_date']);
15
  $event_link = (isset($event->data->permalink) and trim($event->data->permalink)) ? $this->main->get_event_date_permalink($event->data->permalink, $event_date) : get_permalink($event->data->ID);
16
  $event_title = $event->data->title;
17
+ $label_style = '';
18
+ if ( !empty($event->data->labels) ):
19
+ foreach( $event->data->labels as $label)
20
+ {
21
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
22
+ if ( $label['style'] == 'mec-label-featured' )
23
+ {
24
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
25
+ }
26
+ elseif ( $label['style'] == 'mec-label-canceled' )
27
+ {
28
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
29
+ }
30
+ }
31
+ endif;
32
 
33
  $start_date = (isset($event->date['start']) and isset($event->date['start']['date'])) ? $event->date['start']['date'] : date('Y-m-d H:i:s');
34
 
74
  </style>
75
  <div class="mec-wrap <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
76
  <?php if($this->style == 'style1'): ?>
77
+ <article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
78
  <div class="mec-event-countdown-part1 col-md-4">
79
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
80
+ <h4 class="mec-event-title"><?php echo $event_title; ?> <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
81
  </div>
82
  <div class="mec-event-countdown-part2 col-md-5">
83
  <div class="mec-event-date-place">
118
  </div>
119
  </article>
120
  <?php elseif($this->style == 'style2'): ?>
121
+ <article class="mec-event-countdown-style2 <?php echo $this->get_event_classes($event); ?>">
122
  <div class="mec-event-countdown-part1 col-md-4">
123
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
124
+ <h4 class="mec-event-title"><?php echo $event_title; ?> <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
125
  </div>
126
  <div class="mec-event-countdown-part2 col-md-5">
127
  <div class="mec-event-date-place">
162
  </div>
163
  </article>
164
  <?php elseif($this->style == 'style3'): ?>
165
+ <article class="mec-event-countdown-style3 <?php echo $this->get_event_classes($event); ?>">
166
  <div class="mec-event-countdown-part1">
167
  <div class="mec-event-countdown-part-title">
168
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
174
  <span class="mec-date3"><?php echo date_i18n($this->date_format_style33, strtotime($event_date)); ?></span>
175
  </div>
176
  <div class="mec-event-title-link">
177
+ <h4 class="mec-event-title"><?php echo $event_title; ?> <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
178
  <a class="mec-event-link" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('Event Detail', 'modern-events-calendar-lite')); ?></a>
179
  </div>
180
  <div class="mec-event-countdown" id="mec_skin_countdown<?php echo $this->id; ?>">
app/skins/cover/tpl.php CHANGED
@@ -17,14 +17,29 @@ $event_title = $event->data->title;
17
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
18
  $event_thumb = $event->data->thumbnails['large'];
19
  $event_thumb_url = $event->data->featured_image['large'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  ?>
21
  <div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
22
  <?php if($this->style == 'modern' and $event_thumb_url): ?>
23
- <article class="mec-event-cover-modern" style="background: url('<?php echo $event_thumb_url; ?>'); height: 678px;background-size: cover;">
24
  <a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
25
  <div class="mec-event-overlay mec-bg-color"></div>
26
  <div class="mec-event-detail">
27
- <div class="mec-event-tag mec-color"><?php _e('featured event', 'modern-events-calendar-lite'); ?></div>
28
  <div class="mec-event-date"><?php echo date_i18n($this->date_format_modern1, strtotime($event_date)).((isset($event->data->time) and trim($event->data->time['start'])) ? ' - '.$event->data->time['start'] : ''); ?></div>
29
  <h4 class="mec-event-title"><?php echo $event_title . $event_color; ?></h4>
30
  <div class="mec-event-place"><?php echo (isset($event_location['name']) ? $event_location['name'] : ''); ?></div>
@@ -32,7 +47,7 @@ $event_thumb_url = $event->data->featured_image['large'];
32
  </a>
33
  </article>
34
  <?php elseif($event_thumb): ?>
35
- <article class="mec-event-cover-<?php echo $this->style; ?>">
36
  <div class="mec-event-image"><?php echo $event_thumb; ?></div>
37
  <div class="mec-event-overlay"></div>
38
  <?php if($this->style == 'classic'): ?>
@@ -41,12 +56,12 @@ $event_thumb_url = $event->data->featured_image['large'];
41
  <div class="mec-event-date">
42
  <span class="mec-color"><?php echo date_i18n($this->date_format_classic1, strtotime($event_date)); ?></span> <?php echo date_i18n($this->date_format_classic2, strtotime($event_date)); ?>
43
  </div>
44
- <h4 class="mec-event-title"><?php echo $event_title . $event_color; ?></h4>
45
  <div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
46
  </div>
47
  <?php elseif($this->style == 'clean'): ?>
48
  <div class="mec-event-content">
49
- <h4 class="mec-event-title"><a href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $event_color; ?></h4>
50
  <?php if(isset($event_organizer['name'])): ?><div class="mec-event-place"><?php echo (isset($event_organizer['name']) ? $event_organizer['name'] : ''); ?></div><?php endif; ?>
51
  </div>
52
  <div class="mec-event-date mec-bg-color">
17
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
18
  $event_thumb = $event->data->thumbnails['large'];
19
  $event_thumb_url = $event->data->featured_image['large'];
20
+ $label_style = '';
21
+ if ( !empty($event->data->labels) ):
22
+ foreach( $event->data->labels as $label)
23
+ {
24
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
25
+ if ( $label['style'] == 'mec-label-featured' )
26
+ {
27
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
28
+ }
29
+ elseif ( $label['style'] == 'mec-label-canceled' )
30
+ {
31
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
32
+ }
33
+ }
34
+ endif;
35
  ?>
36
  <div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
37
  <?php if($this->style == 'modern' and $event_thumb_url): ?>
38
+ <article class="mec-event-cover-modern <?php echo $this->get_event_classes($event); ?>" style="background: url('<?php echo $event_thumb_url; ?>'); height: 678px;background-size: cover;">
39
  <a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
40
  <div class="mec-event-overlay mec-bg-color"></div>
41
  <div class="mec-event-detail">
42
+ <?php if ( empty($label_style) ) echo '<div class="mec-event-tag mec-color">' . __('featured event', 'modern-events-calendar-lite') . ' </div>'; else echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
43
  <div class="mec-event-date"><?php echo date_i18n($this->date_format_modern1, strtotime($event_date)).((isset($event->data->time) and trim($event->data->time['start'])) ? ' - '.$event->data->time['start'] : ''); ?></div>
44
  <h4 class="mec-event-title"><?php echo $event_title . $event_color; ?></h4>
45
  <div class="mec-event-place"><?php echo (isset($event_location['name']) ? $event_location['name'] : ''); ?></div>
47
  </a>
48
  </article>
49
  <?php elseif($event_thumb): ?>
50
+ <article class="mec-event-cover-<?php echo $this->style; ?> <?php echo $this->get_event_classes($event); ?>">
51
  <div class="mec-event-image"><?php echo $event_thumb; ?></div>
52
  <div class="mec-event-overlay"></div>
53
  <?php if($this->style == 'classic'): ?>
56
  <div class="mec-event-date">
57
  <span class="mec-color"><?php echo date_i18n($this->date_format_classic1, strtotime($event_date)); ?></span> <?php echo date_i18n($this->date_format_classic2, strtotime($event_date)); ?>
58
  </div>
59
+ <h4 class="mec-event-title"><?php echo $event_title . $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
60
  <div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
61
  </div>
62
  <?php elseif($this->style == 'clean'): ?>
63
  <div class="mec-event-content">
64
+ <h4 class="mec-event-title"><a href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
65
  <?php if(isset($event_organizer['name'])): ?><div class="mec-event-place"><?php echo (isset($event_organizer['name']) ? $event_organizer['name'] : ''); ?></div><?php endif; ?>
66
  </div>
67
  <div class="mec-event-date mec-bg-color">
app/skins/daily_view/render.php CHANGED
@@ -12,8 +12,23 @@ defined('MECEXEC') or die();
12
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
13
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
14
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ?>
16
- <article class="mec-event-article">
17
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
18
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
19
  <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4><div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
12
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
13
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
14
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
15
+ $label_style = '';
16
+ if ( !empty($event->data->labels) ):
17
+ foreach( $event->data->labels as $label)
18
+ {
19
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
20
+ if ( $label['style'] == 'mec-label-featured' )
21
+ {
22
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
23
+ }
24
+ elseif ( $label['style'] == 'mec-label-canceled' )
25
+ {
26
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
27
+ }
28
+ }
29
+ endif;
30
  ?>
31
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
32
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
33
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
34
  <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4><div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
app/skins/daily_view/tpl.php CHANGED
@@ -75,7 +75,7 @@ jQuery(document).ready(function()
75
  month_id: "'.date('Ym', $current_month_time).'",
76
  year: "'.date('Y', $current_month_time).'",
77
  month: "'.date('m', $current_month_time).'",
78
- day: "'.date('d', $current_month_time).'",
79
  events_label: "'.esc_attr__('Events', 'modern-events-calendar-lite').'",
80
  event_label: "'.esc_attr__('Event', 'modern-events-calendar-lite').'",
81
  month_navigator: '.($this->next_previous_button ? 1 : 0).',
75
  month_id: "'.date('Ym', $current_month_time).'",
76
  year: "'.date('Y', $current_month_time).'",
77
  month: "'.date('m', $current_month_time).'",
78
+ day: "'.date('d', strtotime($this->active_day)).'",
79
  events_label: "'.esc_attr__('Events', 'modern-events-calendar-lite').'",
80
  event_label: "'.esc_attr__('Event', 'modern-events-calendar-lite').'",
81
  month_navigator: '.($this->next_previous_button ? 1 : 0).',
app/skins/full_calendar.php CHANGED
@@ -14,6 +14,7 @@ class MEC_skin_full_calendar extends MEC_skins
14
  public $skin = 'full_calendar';
15
 
16
  public $default_view;
 
17
  public $yearly;
18
  public $monthly;
19
  public $weekly;
@@ -73,6 +74,11 @@ class MEC_skin_full_calendar extends MEC_skins
73
  $this->default_view = isset($this->skin_options['default_view']) ? $this->skin_options['default_view'] : 'list';
74
  if(isset($this->skin_options[$this->default_view]) and !$this->skin_options[$this->default_view]) $this->default_view = 'list';
75
 
 
 
 
 
 
76
  $this->yearly = isset($this->skin_options['yearly']) ? $this->skin_options['yearly'] : true;
77
  $this->monthly = isset($this->skin_options['monthly']) ? $this->skin_options['monthly'] : true;
78
  $this->weekly = isset($this->skin_options['weekly']) ? $this->skin_options['weekly'] : true;
@@ -151,7 +157,7 @@ class MEC_skin_full_calendar extends MEC_skins
151
  $atts = $this->atts;
152
  $atts['sk-options']['monthly_view']['start_date_type'] = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : '';
153
  $atts['sk-options']['monthly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
154
- $atts['sk-options']['monthly_view']['style'] = 'clean';
155
  $atts['sk-options']['monthly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
156
  $atts['sf_status'] = false;
157
 
14
  public $skin = 'full_calendar';
15
 
16
  public $default_view;
17
+ public $monthly_style;
18
  public $yearly;
19
  public $monthly;
20
  public $weekly;
74
  $this->default_view = isset($this->skin_options['default_view']) ? $this->skin_options['default_view'] : 'list';
75
  if(isset($this->skin_options[$this->default_view]) and !$this->skin_options[$this->default_view]) $this->default_view = 'list';
76
 
77
+ // Default style for Monthly View
78
+ $this->monthly_style = isset($this->skin_options['monthly_style']) ? $this->skin_options['monthly_style'] : 'clean';
79
+ if(isset($this->skin_options[$this->monthly_style]) and !$this->skin_options[$this->monthly_style]) $this->monthly_style = 'clean';
80
+
81
+
82
  $this->yearly = isset($this->skin_options['yearly']) ? $this->skin_options['yearly'] : true;
83
  $this->monthly = isset($this->skin_options['monthly']) ? $this->skin_options['monthly'] : true;
84
  $this->weekly = isset($this->skin_options['weekly']) ? $this->skin_options['weekly'] : true;
157
  $atts = $this->atts;
158
  $atts['sk-options']['monthly_view']['start_date_type'] = isset($this->skin_options['start_date_type']) ? $this->skin_options['start_date_type'] : '';
159
  $atts['sk-options']['monthly_view']['start_date'] = isset($this->skin_options['start_date']) ? $this->skin_options['start_date'] : '';
160
+ $atts['sk-options']['monthly_view']['style'] = $this->monthly_style;
161
  $atts['sk-options']['monthly_view']['sed_method'] = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
162
  $atts['sf_status'] = false;
163
 
app/skins/full_calendar/tpl.php CHANGED
@@ -32,11 +32,31 @@ $this->factory->params('footer', $javascript);
32
  <div class="mec-totalcal-box">
33
  <?php if($this->sf_status): ?>
34
  <span id="mec_search_form_<?php echo $this->id; ?>">
 
 
 
 
 
 
 
 
 
 
 
 
35
  <div class="col-md-3">
36
- <?php echo $this->sf_search_field('month_filter', (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array())); ?>
 
 
 
 
 
37
  </div>
38
- <div class="col-md-5">
39
- <?php echo $this->sf_search_field('text_search', (isset($this->sf_options['text_search']) ? $this->sf_options['text_search'] : array())); ?>
 
 
 
40
  </div>
41
  </span>
42
  <?php endif; ?>
32
  <div class="mec-totalcal-box">
33
  <?php if($this->sf_status): ?>
34
  <span id="mec_search_form_<?php echo $this->id; ?>">
35
+ <?php
36
+ $sf_month_filter = (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array());
37
+ $sf_category = (isset($this->sf_options['category']) ? $this->sf_options['category'] : array());
38
+ $sf_text_search = (isset($this->sf_options['text_search']) ? $this->sf_options['text_search'] : array());
39
+
40
+ $sf_month_filter_status = (isset($sf_month_filter['type']) and trim($sf_month_filter['type'])) ? true : false;
41
+ $sf_category_status = (isset($sf_category['type']) and trim($sf_category['type'])) ? true : false;
42
+ $sf_text_search_status = (isset($sf_text_search['type']) and trim($sf_text_search['type'])) ? true : false;
43
+
44
+ $sf_columns = 8;
45
+ ?>
46
+ <?php if($sf_month_filter_status): $sf_columns -= 3; ?>
47
  <div class="col-md-3">
48
+ <?php echo $this->sf_search_field('month_filter', $sf_month_filter); ?>
49
+ </div>
50
+ <?php endif; ?>
51
+ <?php if($sf_category_status): $sf_columns -= 2; ?>
52
+ <div class="col-md-2">
53
+ <?php echo $this->sf_search_field('category', $sf_category); ?>
54
  </div>
55
+ <?php endif; ?>
56
+ <div class="col-md-<?php echo $sf_columns; ?>">
57
+ <?php if($sf_text_search_status): ?>
58
+ <?php echo $this->sf_search_field('text_search', $sf_text_search); ?>
59
+ <?php endif; ?>
60
  </div>
61
  </span>
62
  <?php endif; ?>
app/skins/grid/render.php CHANGED
@@ -35,11 +35,27 @@ if($this->style == 'colorful')
35
  $organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
36
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
37
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
38
- $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
 
39
  // colorful
40
  $colorful_bg_color = ($colorful_flag && isset($event->data->meta['mec_color'])) ? ' style="background: #' . $event->data->meta['mec_color'] . '"' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
- echo '<article class="mec-event-article mec-clear"' . $colorful_bg_color . '>';
43
  ?>
44
  <?php if($this->style == 'modern'): ?>
45
  <div class="event-grid-modern-head clearfix">
@@ -76,6 +92,7 @@ if($this->style == 'colorful')
76
  <div class="mec-event-date mec-bg-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
77
  <?php endif; ?>
78
  <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4>
 
79
  <p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
80
  </div>
81
  <div class="mec-event-footer">
@@ -92,7 +109,7 @@ if($this->style == 'colorful')
92
  <?php elseif($this->style == 'minimal'): ?>
93
  <div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
94
  <div class="event-detail-wrap">
95
- <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4>
96
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
97
  </div>
98
  <?php elseif($this->style == 'clean'): ?>
@@ -161,7 +178,7 @@ if($this->style == 'colorful')
161
  </div>
162
  <?php elseif($this->style == 'simple'): ?>
163
  <div class="mec-event-date mec-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_simple_1); ?></div>
164
- <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4>
165
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
166
  <?php endif;
167
  echo '</article></div>';
35
  $organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
36
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
37
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
38
+ $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
39
+
40
  // colorful
41
  $colorful_bg_color = ($colorful_flag && isset($event->data->meta['mec_color'])) ? ' style="background: #' . $event->data->meta['mec_color'] . '"' : '';
42
+ $label_style = '';
43
+ if ( !empty($event->data->labels) ):
44
+ foreach( $event->data->labels as $label)
45
+ {
46
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
47
+ if ( $label['style'] == 'mec-label-featured' )
48
+ {
49
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
50
+ }
51
+ elseif ( $label['style'] == 'mec-label-canceled' )
52
+ {
53
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
54
+ }
55
+ }
56
+ endif;
57
 
58
+ echo '<article data-style="'.$label_style.'" class="mec-event-article mec-clear '.$this->get_event_classes($event).'"' . $colorful_bg_color . '>';
59
  ?>
60
  <?php if($this->style == 'modern'): ?>
61
  <div class="event-grid-modern-head clearfix">
92
  <div class="mec-event-date mec-bg-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
93
  <?php endif; ?>
94
  <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4>
95
+ <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
96
  <p><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
97
  </div>
98
  <div class="mec-event-footer">
109
  <?php elseif($this->style == 'minimal'): ?>
110
  <div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
111
  <div class="event-detail-wrap">
112
+ <h4 class="mec-event-title"><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><?php echo $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
113
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
114
  </div>
115
  <?php elseif($this->style == 'clean'): ?>
178
  </div>
179
  <?php elseif($this->style == 'simple'): ?>
180
  <div class="mec-event-date mec-color"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_simple_1); ?></div>
181
+ <h4 class="mec-event-title"><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><?php echo $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
182
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
183
  <?php endif;
184
  echo '</article></div>';
app/skins/list.php CHANGED
@@ -92,7 +92,10 @@ class MEC_skin_list extends MEC_skins
92
 
93
  // Show Month Divider or not
94
  $this->month_divider = isset($this->skin_options['month_divider']) ? $this->skin_options['month_divider'] : true;
95
-
 
 
 
96
  // The style
97
  $this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
98
 
92
 
93
  // Show Month Divider or not
94
  $this->month_divider = isset($this->skin_options['month_divider']) ? $this->skin_options['month_divider'] : true;
95
+
96
+ // Toggle Month Divider or not
97
+ $this->toggle_month_divider = isset($this->skin_options['toggle_month_divider']) ? $this->skin_options['toggle_month_divider'] : 0;
98
+
99
  // The style
100
  $this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'modern';
101
 
app/skins/list/render.php CHANGED
@@ -12,8 +12,8 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
12
  <div class="mec-event-list-<?php echo $this->style; ?>">
13
  <?php foreach($this->events as $date=>$events): ?>
14
 
15
- <?php $month = date('m', strtotime($date)); if($this->month_divider and $month != $current_month_divider): $current_month_divider = $month; ?>
16
- <div class="mec-month-divider"><span><?php echo date_i18n('F Y', strtotime($date)); ?></span></div>
17
  <?php endif; ?>
18
 
19
  <?php
@@ -24,8 +24,24 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
24
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
25
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
26
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ?>
28
- <article class="mec-event-article mec-clear">
29
  <?php if($this->style == 'modern'): ?>
30
  <div class="col-md-2 col-sm-2">
31
  <div class="mec-event-date">
@@ -35,7 +51,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
35
  </div>
36
  </div>
37
  <div class="col-md-6 col-sm-6">
38
- <h4 class="mec-event-title"><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><?php echo $event_color; ?></h4>
39
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
40
  <ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
41
  </div>
@@ -130,23 +146,23 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
130
  <div class="mec-toggle-item">
131
  <div class="mec-toggle-item-inner" id="" tabindex="0" aria-controls="" aria-expanded="false">
132
  <div class="mec-toggle-item-col">
133
- <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
134
- <div class="mec-event-date"><?php echo date_i18n($this->date_format_acc_1, strtotime($event->date['start']['date'])); ?></div>
135
- <div class="mec-event-month"><?php echo date_i18n($this->date_format_acc_2, strtotime($event->date['start']['date'])); ?></div>
136
- <?php else: ?>
137
- <div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_acc_1) . ' ' . date_i18n($this->date_format_acc_2, strtotime($event->date['start']['date'])); ?></div>
138
- <?php endif; ?>
139
- <?php
140
- if(trim($start_time))
141
- {
142
- echo '<div class="mec-event-detail"><span class="mec-start-time">'.$start_time.'</span>';
143
- if(trim($end_time)) echo ' - <span class="mec-end-time">'.$end_time.'</span>';
144
- echo '</div>';
145
- }
146
- ?>
147
  </div>
148
  <h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $event_color ; ?></h3>
149
- <i class="mec-sl-arrow-down"></i>
150
  </div>
151
  <div class="mec-content-toggle" id="" aria-hidden="true" style="display: none;">
152
  <div class="mec-toggle-content">
12
  <div class="mec-event-list-<?php echo $this->style; ?>">
13
  <?php foreach($this->events as $date=>$events): ?>
14
 
15
+ <?php $month_id = date('Ym', strtotime($date)); if($this->month_divider and $month_id != $current_month_divider): $current_month_divider = $month_id; ?>
16
+ <div class="mec-month-divider" data-toggle-divider="mec-toggle-<?php echo date_i18n('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>"><span><?php echo date_i18n('F Y', strtotime($date)); ?></span><i class="mec-sl-arrow-down"></i></div>
17
  <?php endif; ?>
18
 
19
  <?php
24
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
25
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
26
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
27
+ $label_style = '';
28
+
29
+ if(!empty($event->data->labels)):
30
+ foreach($event->data->labels as $label)
31
+ {
32
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
33
+ if($label['style'] == 'mec-label-featured')
34
+ {
35
+ $label_style = esc_html__('Featured' , 'modern-events-calendar-lite');
36
+ }
37
+ elseif($label['style'] == 'mec-label-canceled')
38
+ {
39
+ $label_style = esc_html__('Canceled' , 'modern-events-calendar-lite');
40
+ }
41
+ }
42
+ endif;
43
  ?>
44
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?> mec-divider-toggle mec-toggle-<?php echo date_i18n('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>">
45
  <?php if($this->style == 'modern'): ?>
46
  <div class="col-md-2 col-sm-2">
47
  <div class="mec-event-date">
51
  </div>
52
  </div>
53
  <div class="col-md-6 col-sm-6">
54
+ <h4 class="mec-event-title"><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><?php echo $event_color; ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
55
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
56
  <ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
57
  </div>
146
  <div class="mec-toggle-item">
147
  <div class="mec-toggle-item-inner" id="" tabindex="0" aria-controls="" aria-expanded="false">
148
  <div class="mec-toggle-item-col">
149
+ <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
150
+ <div class="mec-event-date"><?php echo date_i18n($this->date_format_acc_1, strtotime($event->date['start']['date'])); ?></div>
151
+ <div class="mec-event-month"><?php echo date_i18n($this->date_format_acc_2, strtotime($event->date['start']['date'])); ?></div>
152
+ <?php else: ?>
153
+ <div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_acc_1.' '.$this->date_format_acc_2); ?></div>
154
+ <?php endif; ?>
155
+ <?php
156
+ if(trim($start_time))
157
+ {
158
+ echo '<div class="mec-event-detail"><span class="mec-start-time">'.$start_time.'</span>';
159
+ if(trim($end_time)) echo ' - <span class="mec-end-time">'.$end_time.'</span>';
160
+ echo '</div>';
161
+ }
162
+ ?>
163
  </div>
164
  <h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $event_color ; ?></h3>
165
+ <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?><i class="mec-sl-arrow-down"></i>
166
  </div>
167
  <div class="mec-content-toggle" id="" aria-hidden="true" style="display: none;">
168
  <div class="mec-toggle-content">
app/skins/list/tpl.php CHANGED
@@ -29,6 +29,7 @@ jQuery(document).ready(function()
29
  offset: "'.$this->next_offset.'",
30
  limit: "'.$this->limit.'",
31
  current_month_divider: "'.$current_month_divider.'",
 
32
  style: "'.(isset($this->skin_options['style']) ? $this->skin_options['style'] : NULL).'",
33
  atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
34
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
@@ -49,14 +50,14 @@ $this->factory->params('footer', $javascript);
49
  <?php if($this->sf_status) echo $this->sf_search_form(); ?>
50
 
51
  <?php if($this->found): ?>
52
- <div class="mec-skin-list-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
53
  <?php echo $items_html; ?>
54
  </div>
55
  <div class="mec-skin-list-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo $this->id; ?>">
56
  <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
57
  </div>
58
  <?php else: ?>
59
- <div class="mec-skin-list-events-container" id="mec_skin_events_<?php echo $this->id; ?>">
60
  <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
61
  </div>
62
  <?php endif; ?>
29
  offset: "'.$this->next_offset.'",
30
  limit: "'.$this->limit.'",
31
  current_month_divider: "'.$current_month_divider.'",
32
+ toggle_month_divider: "'.$this->toggle_month_divider.'",
33
  style: "'.(isset($this->skin_options['style']) ? $this->skin_options['style'] : NULL).'",
34
  atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
35
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
50
  <?php if($this->sf_status) echo $this->sf_search_form(); ?>
51
 
52
  <?php if($this->found): ?>
53
+ <div class="mec-skin-list-events-container<?php if($this->style == 'accordion' and $this->toggle_month_divider and $this->month_divider) echo ' mec-toggle-month-divider'; ?>" id="mec_skin_events_<?php echo $this->id; ?>">
54
  <?php echo $items_html; ?>
55
  </div>
56
  <div class="mec-skin-list-no-events-container mec-util-hidden" id="mec_skin_no_events_<?php echo $this->id; ?>">
57
  <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
58
  </div>
59
  <?php else: ?>
60
+ <div class="mec-skin-list-events-container<?php if($this->style == 'accordion' and $this->toggle_month_divider and $this->month_divider) echo ' mec-toggle-month-divider'; ?>" id="mec_skin_events_<?php echo $this->id; ?>">
61
  <?php _e('No event found!', 'modern-events-calendar-lite'); ?>
62
  </div>
63
  <?php endif; ?>
app/skins/masonry.php CHANGED
@@ -15,6 +15,7 @@ class MEC_skin_masonry extends MEC_skins
15
  public $date_format_1 = 'j';
16
  public $date_format_2 = 'F';
17
  public $filter_by = 'category';
 
18
 
19
  /**
20
  * Constructor method
@@ -70,6 +71,8 @@ class MEC_skin_masonry extends MEC_skins
70
  $this->html_class = '';
71
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
72
 
 
 
73
  // SED Method
74
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
75
 
15
  public $date_format_1 = 'j';
16
  public $date_format_2 = 'F';
17
  public $filter_by = 'category';
18
+ public $masonry_like_grid;
19
 
20
  /**
21
  * Constructor method
71
  $this->html_class = '';
72
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
73
 
74
+ $this->masonry_like_grid = isset($this->skin_options['masonry_like_grid']) ? $this->skin_options['masonry_like_grid'] : 0;
75
+
76
  // SED Method
77
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
78
 
app/skins/masonry/render.php CHANGED
@@ -18,14 +18,31 @@ $settings = $this->main->get_settings();
18
 
19
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
20
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ?>
22
  <div class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>">
23
  <div class="mec-masonry">
24
 
25
- <article class="mec-event-article mec-clear">
26
 
27
- <?php if(isset($event->data->featured_image) and isset($event->data->featured_image['full']) and trim($event->data->featured_image['full'])): ?>
28
- <div class="mec-masonry-img" ><img src="<?php echo $event->data->featured_image['full']; ?>"></div>
 
 
29
  <?php endif; ?>
30
 
31
  <div class="mec-masonry-content mec-event-grid-modern">
18
 
19
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
20
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
21
+ $label_style = '';
22
+ if ( !empty($event->data->labels) ):
23
+ foreach( $event->data->labels as $label)
24
+ {
25
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
26
+ if ( $label['style'] == 'mec-label-featured' )
27
+ {
28
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
29
+ }
30
+ elseif ( $label['style'] == 'mec-label-canceled' )
31
+ {
32
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
33
+ }
34
+ }
35
+ endif;
36
  ?>
37
  <div class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>">
38
  <div class="mec-masonry">
39
 
40
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
41
 
42
+ <?php if(isset($event->data->featured_image) and $this->masonry_like_grid ): ?>
43
+ <div class="mec-masonry-img" ><img src="<?php echo $event->data->featured_image['thumblist']; ?>"></div>
44
+ <?php elseif( isset($event->data->featured_image) and isset($event->data->featured_image['full']) and trim($event->data->featured_image['full'])): ?>
45
+ <div class="mec-masonry-img" ><img src="<?php echo $event->data->featured_image['full']; ?>"></div>
46
  <?php endif; ?>
47
 
48
  <div class="mec-masonry-content mec-event-grid-modern">
app/skins/monthly_view/calendar.php CHANGED
@@ -62,7 +62,6 @@ elseif($week_start == 5) // Friday
62
  // Print events
63
  if(isset($events[$today]) and count($events[$today]))
64
  {
65
-
66
  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></dt>';
67
  $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>';
68
 
@@ -71,8 +70,23 @@ elseif($week_start == 5) // Friday
71
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
72
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
73
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
74
-
75
- $events_str .= '<article class="mec-event-article">';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
77
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
78
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
62
  // Print events
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></dt>';
66
  $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>';
67
 
70
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
71
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
72
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
73
+ $label_style = '';
74
+ if ( !empty($event->data->labels) ):
75
+ foreach( $event->data->labels as $label)
76
+ {
77
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
78
+ if ( $label['style'] == 'mec-label-featured' )
79
+ {
80
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
81
+ }
82
+ elseif ( $label['style'] == 'mec-label-canceled' )
83
+ {
84
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
85
+ }
86
+ }
87
+ endif;
88
+
89
+ $events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event).'">';
90
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
91
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
92
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -71,8 +71,23 @@ elseif($week_start == 5) // Friday
71
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
72
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
73
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
74
-
75
- $events_str .= '<article class="mec-event-article">';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
77
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
78
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
71
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
72
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
73
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
74
+ $label_style = '';
75
+ if ( !empty($event->data->labels) ):
76
+ foreach( $event->data->labels as $label)
77
+ {
78
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
79
+ if ( $label['style'] == 'mec-label-featured' )
80
+ {
81
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
82
+ }
83
+ elseif ( $label['style'] == 'mec-label-canceled' )
84
+ {
85
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
86
+ }
87
+ }
88
+ endif;
89
+
90
+ $events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event).'">';
91
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
92
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
93
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
app/skins/monthly_view/calendar_novel.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ // table headings
6
+ $headings = $this->main->get_weekday_abbr_labels();
7
+ echo '<dl class="mec-calendar-table-head"><dt class="mec-calendar-day-head">'.implode('</dt><dt class="mec-calendar-day-head">', $headings).'</dt></dl>';
8
+
9
+ // Start day of week
10
+ $week_start = $this->main->get_first_day_of_week();
11
+
12
+ // Get date suffix
13
+ $settings = $this->main->get_settings();
14
+
15
+ // days and weeks vars
16
+ $running_day = date('w', mktime(0, 0, 0, $month, 1, $year));
17
+ $days_in_month = date('t', mktime(0, 0, 0, $month, 1, $year));
18
+ $days_in_previous_month = date('t', strtotime('-1 month', strtotime($this->active_day)));
19
+
20
+ $days_in_this_week = 1;
21
+ $day_counter = 0;
22
+
23
+ if($week_start == 0) $running_day = $running_day; // Sunday
24
+ elseif($week_start == 1) // Monday
25
+ {
26
+ if($running_day != 0) $running_day = $running_day - 1;
27
+ else $running_day = 6;
28
+ }
29
+ elseif($week_start == 6) // Saturday
30
+ {
31
+ if($running_day != 6) $running_day = $running_day + 1;
32
+ else $running_day = 0;
33
+ }
34
+ elseif($week_start == 5) // Friday
35
+ {
36
+ if($running_day < 4) $running_day = $running_day + 2;
37
+ elseif($running_day == 5) $running_day = 0;
38
+ elseif($running_day == 6) $running_day = 1;
39
+ }
40
+ ?>
41
+ <dl class="mec-calendar-row">
42
+ <?php
43
+ // print "blank" days until the first of the current week
44
+ for($x = 0; $x < $running_day; $x++)
45
+ {
46
+ echo '<dt class="mec-table-nullday">'.($days_in_previous_month - ($running_day-1-$x)).'</dt>';
47
+ $days_in_this_week++;
48
+ }
49
+ $print_name = array();
50
+
51
+ // keep going with days ....
52
+ for($list_day = 1; $list_day <= $days_in_month; $list_day++)
53
+ {
54
+ $time = strtotime($year.'-'.$month.'-'.$list_day);
55
+ $date_suffix = (isset($settings['date_suffix']) && $settings['date_suffix'] == '0') ? date_i18n('jS', $time) : date_i18n('j', $time);
56
+
57
+ $today = date('Y-m-d', $time);
58
+ $day_id = date('Ymd', $time);
59
+ $selected_day = (str_replace('-', '', $this->active_day) == $day_id) ? ' mec-selected-day' : '';
60
+ $selected_day_date = (str_replace('-', '', $this->active_day) == $day_id) ? ' mec-bg-color' : '';
61
+ // Print events
62
+ if(isset($events[$today]) and count($events[$today]))
63
+ {
64
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="mec-calendar-novel-selected-day'.$selected_day_date.'">'.$list_day.'</div>';
65
+ foreach($events[$today] as $event)
66
+ {
67
+ $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
68
+ $start_date = (isset($event->date['start']['date']) ? str_replace ( '-', '', $event->date['start']['date'] ) : '');
69
+ $end_date = (isset($event->date['end']['date']) ? str_replace ( '-', '', $event->date['end']['date'] ) : '');
70
+ $label_style = '';
71
+ if ( !empty($event->data->labels) ):
72
+ foreach( $event->data->labels as $label)
73
+ {
74
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
75
+ if ( $label['style'] == 'mec-label-featured' )
76
+ {
77
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
78
+ }
79
+ elseif ( $label['style'] == 'mec-label-canceled' )
80
+ {
81
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
82
+ }
83
+ }
84
+ endif;
85
+ echo '<a class="event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
86
+ if ( ( $end_date - $start_date == '0' && !in_array( $event->data->ID, $print_name) ) ) :
87
+ echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
88
+ elseif( ( $end_date - $start_date == '0' && in_array( $event->data->ID, $print_name) ) ) :
89
+ echo '<h4 class="mec-event-title"></h4>';
90
+ $print_name[] = $event->data->ID;
91
+ elseif ( !in_array( $event->data->ID, $print_name) ) :
92
+ echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
93
+ $print_name[] = $event->data->ID;
94
+ endif;
95
+ echo '</div></a>';
96
+ }
97
+ echo '</dt>';
98
+ }
99
+ else
100
+ {
101
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
102
+ echo '</dt>';
103
+
104
+ }
105
+
106
+
107
+ if($running_day == 6)
108
+ {
109
+ echo '</dl>';
110
+
111
+ if((($day_counter+1) != $days_in_month) or (($day_counter+1) == $days_in_month and $days_in_this_week == 7))
112
+ {
113
+ echo '<dl class="mec-calendar-row">';
114
+ }
115
+
116
+ $running_day = -1;
117
+ $days_in_this_week = 0;
118
+ }
119
+
120
+ $days_in_this_week++; $running_day++; $day_counter++;
121
+ }
122
+
123
+ // finish the rest of the days in the week
124
+ if($days_in_this_week < 8)
125
+ {
126
+ for($x = 1; $x <= (8 - $days_in_this_week); $x++)
127
+ {
128
+ echo '<dt class="mec-table-nullday">'.$x.'</dt>';
129
+ }
130
+ }
131
+ ?>
132
+ </dl>
app/skins/monthly_view/render.php CHANGED
@@ -4,5 +4,6 @@ defined('MECEXEC') or die();
4
 
5
  $calendar_type = 'calendar';
6
  if(in_array($this->style, array('clean', 'modern'))) $calendar_type = 'calendar_clean';
 
7
 
8
  echo $this->draw_monthly_calendar($this->year, $this->month, $this->events, $calendar_type);
4
 
5
  $calendar_type = 'calendar';
6
  if(in_array($this->style, array('clean', 'modern'))) $calendar_type = 'calendar_clean';
7
+ if(in_array($this->style, array('novel'))) $calendar_type = 'calendar_novel';
8
 
9
  echo $this->draw_monthly_calendar($this->year, $this->month, $this->events, $calendar_type);
app/skins/monthly_view/tpl.php CHANGED
@@ -71,6 +71,7 @@ jQuery(document).ready(function()
71
  event_label: "'.esc_attr__('Event', 'modern-events-calendar-lite').'",
72
  month_navigator: '.($this->next_previous_button ? 1 : 0).',
73
  atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
 
74
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
75
  sed_method: "'.$this->sed_method.'",
76
  sf:
@@ -87,9 +88,9 @@ $this->factory->params('footer', $javascript);
87
  $styling = $this->main->get_styling();
88
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
89
 
90
- if($this->style == 'classic')
91
  {
92
- $cal_style = 'mec-box-calendar mec-event-calendar-classic';
93
  $div_start_topsec = $div_end_topsec = $events_side = $div_footer = '';
94
  }
95
  else
71
  event_label: "'.esc_attr__('Event', 'modern-events-calendar-lite').'",
72
  month_navigator: '.($this->next_previous_button ? 1 : 0).',
73
  atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
74
+ style: "'.(isset($this->skin_options['style']) ? $this->skin_options['style'] : NULL).'",
75
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
76
  sed_method: "'.$this->sed_method.'",
77
  sf:
88
  $styling = $this->main->get_styling();
89
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
90
 
91
+ if($this->style == 'classic' || $this->style == 'novel' )
92
  {
93
+ $cal_style = 'mec-box-calendar mec-event-calendar-classic mec-event-container-'.$this->style;
94
  $div_start_topsec = $div_end_topsec = $events_side = $div_footer = '';
95
  }
96
  else
app/skins/single.php CHANGED
@@ -229,4 +229,97 @@ class MEC_skin_single extends MEC_skins
229
  </div>
230
  <?php
231
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  }
229
  </div>
230
  <?php
231
  }
232
+
233
+ /**
234
+ * @param object $event
235
+ * @return void
236
+ */
237
+ public function show_hourly_schedules($event)
238
+ {
239
+ if(isset($event->data->hourly_schedules) and is_array($event->data->hourly_schedules) and count($event->data->hourly_schedules)):
240
+
241
+ // Status of Speakers Feature
242
+ $speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
243
+ $speakers = array();
244
+ ?>
245
+ <div class="mec-event-schedule mec-frontbox">
246
+ <h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule','modern-events-calendar-lite'); ?></h3>
247
+ <?php foreach($event->data->hourly_schedules as $day): ?>
248
+ <?php if(count($event->data->hourly_schedules) > 1 and isset($day['title'])): ?>
249
+ <h4 class="mec-schedule-part"><?php echo $day['title']; ?></h4>
250
+ <?php endif; ?>
251
+ <div class="mec-event-schedule-content">
252
+ <?php foreach($day['schedules'] as $schedule): ?>
253
+ <dl>
254
+ <dt class="mec-schedule-time"><span class="mec-schedule-start-time mec-color"><?php echo $schedule['from']; ?></span> - <span class="mec-schedule-end-time mec-color"><?php echo $schedule['to']; ?></span> </dt>
255
+ <dt class="mec-schedule-title"><?php echo $schedule['title']; ?></dt>
256
+ <dt class="mec-schedule-description"><?php echo $schedule['description']; ?></dt>
257
+
258
+ <?php if($speakers_status and isset($schedule['speakers']) and is_array($schedule['speakers']) and count($schedule['speakers'])): ?>
259
+ <dt class="mec-schedule-speakers">
260
+ <h6><?php echo $this->main->m('taxonomy_speakers', __('Speakers:', 'modern-events-calendar-lite')); ?></h6>
261
+ <?php $speaker_count = count($schedule['speakers']); $i = 0; ?>
262
+ <?php foreach($schedule['speakers'] as $speaker_id): $speaker = get_term($speaker_id); array_push($speakers, $speaker_id); ?>
263
+ <a class="mec-color-hover mec-hourly-schedule-speaker-lightbox" href="#mec_hourly_schedule_speaker_lightbox_<?php echo $speaker->term_id; ?>" data-lity><?php echo $speaker->name; ?></a><?php if( ++$i != $speaker_count ) echo ","; ?>
264
+ <?php endforeach; ?>
265
+ </dt>
266
+ <?php endif; ?>
267
+ </dl>
268
+ <?php endforeach; ?>
269
+ </div>
270
+ <?php endforeach; ?>
271
+
272
+ <?php if(count($speakers)): $speakers = array_unique($speakers); foreach($speakers as $speaker_id): $speaker = get_term($speaker_id); ?>
273
+ <div class="lity-hide mec-hourly-schedule-speaker-info" id="mec_hourly_schedule_speaker_lightbox_<?php echo $speaker->term_id; ?>">
274
+ <!-- Speaker Thumbnail -->
275
+ <?php if($thumbnail = trim(get_term_meta($speaker->term_id, 'thumbnail', true))): ?>
276
+ <div class="mec-hourly-schedule-speaker-thumbnail">
277
+ <img src="<?php echo $thumbnail; ?>" alt="<?php echo $speaker->name; ?>">
278
+ </div>
279
+ <?php endif; ?>
280
+ <div class="mec-hourly-schedule-speaker-details">
281
+ <!-- Speaker Name -->
282
+ <div class="mec-hourly-schedule-speaker-name">
283
+ <?php echo $speaker->name; ?>
284
+ </div>
285
+ <!-- Speaker Job Title -->
286
+ <?php if($job_title = trim(get_term_meta($speaker->term_id, 'job_title', true))): ?>
287
+ <div class="mec-hourly-schedule-speaker-job-title mec-color">
288
+ <?php echo $job_title; ?>
289
+ </div>
290
+ <?php endif; ?>
291
+ <div class="mec-hourly-schedule-speaker-contact-information">
292
+ <!-- Speaker Telephone -->
293
+ <?php if($tel = trim(get_term_meta($speaker->term_id, 'tel', true))): ?>
294
+ <a href="tel:<?php echo $tel; ?>"><i class="mec-fa-phone"></i></a>
295
+ <?php endif; ?>
296
+ <!-- Speaker Email -->
297
+ <?php if($email = trim(get_term_meta($speaker->term_id, 'email', true))): ?>
298
+ <a href="mailto:<?php echo $email; ?>" target="_blank"><i class="mec-fa-envelope"></i></a>
299
+ <?php endif; ?>
300
+ <!-- Speaker Facebook page -->
301
+ <?php if($facebook = trim(get_term_meta($speaker->term_id, 'facebook', true))): ?>
302
+ <a href="<?php echo $facebook; ?>" target="_blank"><i class="mec-fa-facebook"></i></a>
303
+ <?php endif; ?>
304
+ <!-- Speaker Twitter -->
305
+ <?php if($twitter = trim(get_term_meta($speaker->term_id, 'twitter', true))): ?>
306
+ <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
307
+ <?php endif; ?>
308
+ <!-- Speaker Google Plus -->
309
+ <?php if($gplus = trim(get_term_meta($speaker->term_id, 'gplus', true))): ?>
310
+ <a href="<?php echo $gplus; ?>" target="_blank"><i class="mec-fa-google-plus"></i></a>
311
+ <?php endif; ?>
312
+ </div>
313
+ <!-- Speaker Description -->
314
+ <?php if(trim($speaker->description)): ?>
315
+ <div class="mec-hourly-schedule-speaker-description">
316
+ <?php echo $speaker->description; ?>
317
+ </div>
318
+ <?php endif; ?>
319
+ </div>
320
+ </div>
321
+ <?php endforeach; endif; ?>
322
+ </div>
323
+ <?php endif;
324
+ }
325
  }
app/skins/single/default.php CHANGED
@@ -22,26 +22,14 @@ defined('MECEXEC') or die();
22
  <?php endif; ?>
23
 
24
  <!-- Hourly Schedule -->
25
- <?php if(isset($event->data->meta['mec_hourly_schedules']) and is_array($event->data->meta['mec_hourly_schedules']) and count($event->data->meta['mec_hourly_schedules'])): ?>
26
- <div class="mec-event-schedule mec-frontbox">
27
- <h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule','modern-events-calendar-lite'); ?></h3>
28
- <div class="mec-event-schedule-content">
29
- <?php foreach($event->data->meta['mec_hourly_schedules'] as $schedule): ?>
30
- <dl>
31
- <dt class="mec-schedule-time"><span class="mec-schedule-start-time mec-color"><?php echo $schedule['from']; ?></span> - <span class="mec-schedule-end-time mec-color"><?php echo $schedule['to']; ?></span> </dt>
32
- <dt class="mec-schedule-title"><?php echo $schedule['title']; ?></dt>
33
- <dt class="mec-schedule-description"><?php echo $schedule['description']; ?></dt>
34
- </dl>
35
- <?php endforeach; ?>
36
- </div>
37
- </div>
38
- <?php endif; ?>
39
 
40
  <!-- Booking Module -->
41
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
42
  <div class="mec-sold-tickets warning-msg"><?php _e('Sold out!', 'wpl'); ?></div>
43
  <?php elseif($this->main->can_show_booking_module($event)): ?>
44
- <div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="mec-events-meta-group mec-events-meta-group-booking">
 
45
  <?php echo $this->main->module('booking.default', array('event'=>$this->events)); ?>
46
  </div>
47
  <?php endif ?>
@@ -166,7 +154,6 @@ defined('MECEXEC') or die();
166
  <i class="mec-sl-folder"></i>
167
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
168
  <?php
169
- $cats = array();
170
  foreach($event->data->categories as $category)
171
  {
172
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
@@ -226,11 +213,15 @@ defined('MECEXEC') or die();
226
 
227
  <!-- Register Booking Button -->
228
  <?php if($this->main->can_show_booking_module($event)): ?>
229
- <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
 
230
  <?php endif ?>
231
 
232
- </div>
233
-
 
 
 
234
  <!-- Attendees List Module -->
235
  <?php echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
236
 
@@ -368,7 +359,6 @@ defined('MECEXEC') or die();
368
  <i class="mec-sl-folder"></i>
369
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
370
  <?php
371
- $cats = array();
372
  foreach($event->data->categories as $category)
373
  {
374
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
@@ -428,10 +418,14 @@ defined('MECEXEC') or die();
428
 
429
  <!-- Register Booking Button -->
430
  <?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
431
- <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
 
432
  <?php endif ?>
433
  </div>
434
 
 
 
 
435
  <!-- Attendees List Module -->
436
  <?php if($single->found_value('attende_module', $settings) == 'on') echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
437
 
22
  <?php endif; ?>
23
 
24
  <!-- Hourly Schedule -->
25
+ <?php $this->show_hourly_schedules($event); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  <!-- Booking Module -->
28
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
29
  <div class="mec-sold-tickets warning-msg"><?php _e('Sold out!', 'wpl'); ?></div>
30
  <?php elseif($this->main->can_show_booking_module($event)): ?>
31
+ <?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
32
+ <div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="<?php echo $data_lity_class; ?>mec-events-meta-group mec-events-meta-group-booking">
33
  <?php echo $this->main->module('booking.default', array('event'=>$this->events)); ?>
34
  </div>
35
  <?php endif ?>
154
  <i class="mec-sl-folder"></i>
155
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
156
  <?php
 
157
  foreach($event->data->categories as $category)
158
  {
159
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
213
 
214
  <!-- Register Booking Button -->
215
  <?php if($this->main->can_show_booking_module($event)): ?>
216
+ <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
217
+ <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
218
  <?php endif ?>
219
 
220
+ </div>
221
+
222
+ <!-- Speakers Module -->
223
+ <?php echo $this->main->module('speakers.details', array('event'=>$event)); ?>
224
+
225
  <!-- Attendees List Module -->
226
  <?php echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
227
 
359
  <i class="mec-sl-folder"></i>
360
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
361
  <?php
 
362
  foreach($event->data->categories as $category)
363
  {
364
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
418
 
419
  <!-- Register Booking Button -->
420
  <?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
421
+ <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
422
+ <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
423
  <?php endif ?>
424
  </div>
425
 
426
+ <!-- Speakers Module -->
427
+ <?php if($single->found_value('event_speakers', $settings) == 'on') echo $this->main->module('speakers.details', array('event'=>$event)); ?>
428
+
429
  <!-- Attendees List Module -->
430
  <?php if($single->found_value('attende_module', $settings) == 'on') echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
431
 
app/skins/single/m1.php CHANGED
@@ -166,7 +166,6 @@ defined('MECEXEC') or die();
166
  <i class="mec-sl-folder"></i>
167
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
168
  <?php
169
- $cats = array();
170
  foreach($event->data->categories as $category)
171
  {
172
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
@@ -227,20 +226,7 @@ defined('MECEXEC') or die();
227
  <?php endif; ?>
228
 
229
  <!-- Hourly Schedule -->
230
- <?php if(isset($event->data->meta['mec_hourly_schedules']) and is_array($event->data->meta['mec_hourly_schedules']) and count($event->data->meta['mec_hourly_schedules'])): ?>
231
- <div class="mec-event-schedule mec-frontbox">
232
- <h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule','modern-events-calendar-lite'); ?></h3>
233
- <div class="mec-event-schedule-content">
234
- <?php foreach($event->data->meta['mec_hourly_schedules'] as $schedule): ?>
235
- <dl>
236
- <dt class="mec-schedule-time"><span class="mec-schedule-start-time mec-color"><?php echo $schedule['from']; ?></span> - <span class="mec-schedule-end-time mec-color"><?php echo $schedule['to']; ?></span> </dt>
237
- <dt class="mec-schedule-title"><?php echo $schedule['title']; ?></dt>
238
- <dt class="mec-schedule-description"><?php echo $schedule['description']; ?></dt>
239
- </dl>
240
- <?php endforeach; ?>
241
- </div>
242
- </div>
243
- <?php endif; ?>
244
 
245
  <!-- Booking Module -->
246
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
166
  <i class="mec-sl-folder"></i>
167
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
168
  <?php
 
169
  foreach($event->data->categories as $category)
170
  {
171
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
226
  <?php endif; ?>
227
 
228
  <!-- Hourly Schedule -->
229
+ <?php $this->show_hourly_schedules($event); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
230
 
231
  <!-- Booking Module -->
232
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
app/skins/single/m2.php CHANGED
@@ -98,7 +98,6 @@ defined('MECEXEC') or die();
98
  <i class="mec-sl-folder"></i>
99
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
100
  <?php
101
- $cats = array();
102
  foreach($event->data->categories as $category)
103
  {
104
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
@@ -152,20 +151,7 @@ defined('MECEXEC') or die();
152
  <?php echo $this->main->module('export.details', array('event'=>$event)); ?>
153
 
154
  <!-- Hourly Schedule -->
155
- <?php if(isset($event->data->meta['mec_hourly_schedules']) and is_array($event->data->meta['mec_hourly_schedules']) and count($event->data->meta['mec_hourly_schedules'])): ?>
156
- <div class="mec-event-schedule mec-frontbox">
157
- <h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule','modern-events-calendar-lite'); ?></h3>
158
- <div class="mec-event-schedule-content">
159
- <?php foreach($event->data->meta['mec_hourly_schedules'] as $schedule): ?>
160
- <dl>
161
- <dt class="mec-schedule-time"><span class="mec-schedule-start-time mec-color"><?php echo $schedule['from']; ?></span> - <span class="mec-schedule-end-time mec-color"><?php echo $schedule['to']; ?></span> </dt>
162
- <dt class="mec-schedule-title"><?php echo $schedule['title']; ?></dt>
163
- <dt class="mec-schedule-description"><?php echo $schedule['description']; ?></dt>
164
- </dl>
165
- <?php endforeach; ?>
166
- </div>
167
- </div>
168
- <?php endif; ?>
169
 
170
  <!-- Booking Module -->
171
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
98
  <i class="mec-sl-folder"></i>
99
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
100
  <?php
 
101
  foreach($event->data->categories as $category)
102
  {
103
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
151
  <?php echo $this->main->module('export.details', array('event'=>$event)); ?>
152
 
153
  <!-- Hourly Schedule -->
154
+ <?php $this->show_hourly_schedules($event); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
155
 
156
  <!-- Booking Module -->
157
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
app/skins/single/modern.php CHANGED
@@ -54,10 +54,14 @@ defined('MECEXEC') or die();
54
 
55
  <!-- Register Booking Button -->
56
  <?php if($this->main->can_show_booking_module($event)): ?>
57
- <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
 
58
  <?php endif ?>
59
  </div>
60
 
 
 
 
61
  <!-- Local Time Module -->
62
  <?php echo $this->main->module('local-time.details', array('event'=>$event)); ?>
63
 
@@ -91,7 +95,6 @@ defined('MECEXEC') or die();
91
  <i class="mec-sl-folder"></i>
92
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
93
  <?php
94
- $cats = array();
95
  foreach($event->data->categories as $category)
96
  {
97
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
@@ -226,26 +229,14 @@ defined('MECEXEC') or die();
226
  <?php endif; ?>
227
 
228
  <!-- Hourly Schedule -->
229
- <?php if(isset($event->data->meta['mec_hourly_schedules']) and is_array($event->data->meta['mec_hourly_schedules']) and count($event->data->meta['mec_hourly_schedules'])): ?>
230
- <div class="mec-event-schedule mec-frontbox">
231
- <h3 class="mec-schedule-head mec-frontbox-title"><?php _e('Hourly Schedule','modern-events-calendar-lite'); ?></h3>
232
- <div class="mec-event-schedule-content">
233
- <?php foreach($event->data->meta['mec_hourly_schedules'] as $schedule): ?>
234
- <dl>
235
- <dt class="mec-schedule-time"><span class="mec-schedule-start-time mec-color"><?php echo $schedule['from']; ?></span> - <span class="mec-schedule-end-time mec-color"><?php echo $schedule['to']; ?></span> </dt>
236
- <dt class="mec-schedule-title"><?php echo $schedule['title']; ?></dt>
237
- <dt class="mec-schedule-description"><?php echo $schedule['description']; ?></dt>
238
- </dl>
239
- <?php endforeach; ?>
240
- </div>
241
- </div>
242
- <?php endif; ?>
243
 
244
  <!-- Booking Module -->
245
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
246
  <div class="mec-sold-tickets warning-msg"><?php _e('Sold out!', 'wpl'); ?></div>
247
  <?php elseif($this->main->can_show_booking_module($event)): ?>
248
- <div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="mec-events-meta-group mec-events-meta-group-booking">
 
249
  <?php echo $this->main->module('booking.default', array('event'=>$this->events)); ?>
250
  </div>
251
  <?php endif ?>
54
 
55
  <!-- Register Booking Button -->
56
  <?php if($this->main->can_show_booking_module($event)): ?>
57
+ <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
58
+ <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
59
  <?php endif ?>
60
  </div>
61
 
62
+ <!-- Speakers Module -->
63
+ <?php echo $this->main->module('speakers.details', array('event'=>$event)); ?>
64
+
65
  <!-- Local Time Module -->
66
  <?php echo $this->main->module('local-time.details', array('event'=>$event)); ?>
67
 
95
  <i class="mec-sl-folder"></i>
96
  <dt><?php echo $this->main->m('taxonomy_categories', __('Category', 'modern-events-calendar-lite')); ?></dt>
97
  <?php
 
98
  foreach($event->data->categories as $category)
99
  {
100
  $icon = get_metadata('term', $category['id'], 'mec_cat_icon', true);
229
  <?php endif; ?>
230
 
231
  <!-- Hourly Schedule -->
232
+ <?php $this->show_hourly_schedules($event); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
233
 
234
  <!-- Booking Module -->
235
  <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
236
  <div class="mec-sold-tickets warning-msg"><?php _e('Sold out!', 'wpl'); ?></div>
237
  <?php elseif($this->main->can_show_booking_module($event)): ?>
238
+ <?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
239
+ <div id="mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" class="<?php echo $data_lity_class; ?>mec-events-meta-group mec-events-meta-group-booking">
240
  <?php echo $this->main->module('booking.default', array('event'=>$this->events)); ?>
241
  </div>
242
  <?php endif ?>
app/skins/slider/render.php CHANGED
@@ -37,9 +37,25 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
37
 
38
  $excerpt = implode(' ', $words);
39
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ?>
41
  <?php if($this->style == 't1'): ?>
42
- <article class="mec-event-article mec-clear">
43
 
44
  <div class="mec-slider-t1-img" style="background: url(<?php echo $src; ?> );"></div>
45
 
@@ -61,7 +77,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
61
  </div>
62
  </article>
63
  <?php elseif($this->style == 't2'): ?>
64
- <article class="mec-event-article mec-clear">
65
 
66
  <div class="mec-slider-t2-img" style="background: url(<?php echo $src; ?> );"></div>
67
  <div class="mec-slider-t2-content mec-event-grid-modern mec-bg-color">
@@ -82,7 +98,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
82
  </div>
83
  </article>
84
  <?php elseif($this->style == 't3'): ?>
85
- <article class="mec-event-article mec-clear">
86
  <div class="mec-slider-t3-img" style="background: url(<?php echo $src; ?> );"></div>
87
  <div class="mec-slider-t3-content mec-event-grid-modern">
88
 
@@ -102,7 +118,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
102
  </div>
103
  </article>
104
  <?php elseif($this->style == 't4'): ?>
105
- <article class="mec-event-article mec-clear">
106
  <div class="mec-slider-t4-img" style="background: url(<?php echo $src; ?> );"></div>
107
  <div class="mec-slider-t4-content mec-event-grid-modern">
108
 
@@ -121,37 +137,37 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
121
  </div>
122
  </div>
123
  </article>
124
- <?php elseif($this->style == 't5'): ?>
125
- <article class="mec-event-article mec-clear">
126
- <div class="mec-slider-t5-img" style="background: url(<?php echo $src; ?> );"></div>
127
- <div class="mec-slider-t5-content mec-event-grid-modern">
128
- <div class="event-grid-modern-head clearfix">
129
- <div class="mec-slider-t5-col6">
130
- <div class="mec-event-date mec-color"><?php echo date_i18n($this->date_format_type5_1, strtotime($event->date['start']['date'])); ?></div>
131
- <div class="mec-event-month"><?php echo date_i18n($this->date_format_type5_2, strtotime($event->date['start']['date'])); ?></div>
132
- <div class="mec-event-detail"> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div>
133
- </div>
134
- <div class="mec-slider-t5-col6">
135
- <div class="mec-event-location">
136
- <i class="mec-sl-location-pin mec-color"></i>
137
- <div class="mec-event-location-det">
138
- <h6 class="mec-location"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></h6>
139
- <address class="mec-events-address"><span class="mec-address"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
140
  </div>
141
- </div>
142
- </div>
143
- </div>
144
- <div class="mec-event-content">
145
- <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
146
- <div class="mec-event-description mec-events-content">
147
- <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
148
  </div>
149
  </div>
150
- <div class="mec-event-footer">
151
- <a class="mec-booking-button" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
 
 
 
 
 
 
 
 
152
  </div>
153
- </div>
154
- </article>
155
  <?php endif; ?>
156
 
157
  <?php endforeach; ?>
37
 
38
  $excerpt = implode(' ', $words);
39
  }
40
+
41
+ $label_style = '';
42
+ if ( !empty($event->data->labels) ):
43
+ foreach( $event->data->labels as $label)
44
+ {
45
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
46
+ if ( $label['style'] == 'mec-label-featured' )
47
+ {
48
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
49
+ }
50
+ elseif ( $label['style'] == 'mec-label-canceled' )
51
+ {
52
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
53
+ }
54
+ }
55
+ endif;
56
  ?>
57
  <?php if($this->style == 't1'): ?>
58
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
59
 
60
  <div class="mec-slider-t1-img" style="background: url(<?php echo $src; ?> );"></div>
61
 
77
  </div>
78
  </article>
79
  <?php elseif($this->style == 't2'): ?>
80
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
81
 
82
  <div class="mec-slider-t2-img" style="background: url(<?php echo $src; ?> );"></div>
83
  <div class="mec-slider-t2-content mec-event-grid-modern mec-bg-color">
98
  </div>
99
  </article>
100
  <?php elseif($this->style == 't3'): ?>
101
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
102
  <div class="mec-slider-t3-img" style="background: url(<?php echo $src; ?> );"></div>
103
  <div class="mec-slider-t3-content mec-event-grid-modern">
104
 
118
  </div>
119
  </article>
120
  <?php elseif($this->style == 't4'): ?>
121
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
122
  <div class="mec-slider-t4-img" style="background: url(<?php echo $src; ?> );"></div>
123
  <div class="mec-slider-t4-content mec-event-grid-modern">
124
 
137
  </div>
138
  </div>
139
  </article>
140
+ <?php elseif($this->style == 't5'): ?>
141
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
142
+ <div class="mec-slider-t5-img" style="background: url(<?php echo $src; ?> );"></div>
143
+ <div class="mec-slider-t5-content mec-event-grid-modern">
144
+ <div class="event-grid-modern-head clearfix">
145
+ <div class="mec-slider-t5-col6">
146
+ <div class="mec-event-date mec-color"><?php echo date_i18n($this->date_format_type5_1, strtotime($event->date['start']['date'])); ?></div>
147
+ <div class="mec-event-month"><?php echo date_i18n($this->date_format_type5_2, strtotime($event->date['start']['date'])); ?></div>
148
+ <div class="mec-event-detail"> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div>
 
 
 
 
 
 
 
149
  </div>
150
+ <div class="mec-slider-t5-col6">
151
+ <div class="mec-event-location">
152
+ <i class="mec-sl-location-pin mec-color"></i>
153
+ <div class="mec-event-location-det">
154
+ <h6 class="mec-location"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></h6>
155
+ <address class="mec-events-address"><span class="mec-address"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
156
+ </div>
157
  </div>
158
  </div>
159
+ </div>
160
+ <div class="mec-event-content">
161
+ <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
162
+ <div class="mec-event-description mec-events-content">
163
+ <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
164
+ </div>
165
+ </div>
166
+ <div class="mec-event-footer">
167
+ <a class="mec-booking-button" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets)) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
168
+ </div>
169
  </div>
170
+ </article>
 
171
  <?php endif; ?>
172
 
173
  <?php endforeach; ?>
app/skins/timetable/render.php CHANGED
@@ -22,8 +22,23 @@ $has_events = array();
22
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
23
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
24
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  ?>
26
- <article class="mec-timetable-event mec-timetable-day-<?php echo $this->id; ?>-<?php echo date('Ymd', strtotime($date)); ?>">
27
  <span class="mec-timetable-event-span mec-timetable-event-time">
28
  <i class="mec-sl-clock"></i>
29
  <?php if(trim($start_time)): ?>
@@ -32,7 +47,9 @@ $has_events = array();
32
  </span>
33
  <span class="mec-timetable-event-span mec-timetable-event-title">
34
  <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><?php echo $event_color; ?>
 
35
  </span>
 
36
  <span class="mec-timetable-event-span mec-timetable-event-location">
37
  <i class="mec-sl-location-pin"></i>
38
  <?php if(isset($location['name']) and trim($location['name'])): ?>
@@ -68,12 +85,28 @@ $has_events = array();
68
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
69
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
70
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  ?>
72
- <article class="mec-event-article">
73
  <?php echo $event_color; ?>
74
  <div class="mec-timetable-t2-content">
75
  <h4 class="mec-event-title">
76
  <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>
 
77
  </h4>
78
  <div class="mec-event-time">
79
  <i class="mec-sl-clock-o"></i>
22
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
23
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
24
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
25
+ $label_style = '';
26
+ if ( !empty($event->data->labels) ):
27
+ foreach( $event->data->labels as $label)
28
+ {
29
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
30
+ if ( $label['style'] == 'mec-label-featured' )
31
+ {
32
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
33
+ }
34
+ elseif ( $label['style'] == 'mec-label-canceled' )
35
+ {
36
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
37
+ }
38
+ }
39
+ endif;
40
  ?>
41
+ <article class="mec-timetable-event mec-timetable-day-<?php echo $this->id; ?>-<?php echo date('Ymd', strtotime($date)); ?> <?php echo $this->get_event_classes($event); ?>">
42
  <span class="mec-timetable-event-span mec-timetable-event-time">
43
  <i class="mec-sl-clock"></i>
44
  <?php if(trim($start_time)): ?>
47
  </span>
48
  <span class="mec-timetable-event-span mec-timetable-event-title">
49
  <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><?php echo $event_color; ?>
50
+ <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
51
  </span>
52
+
53
  <span class="mec-timetable-event-span mec-timetable-event-location">
54
  <i class="mec-sl-location-pin"></i>
55
  <?php if(isset($location['name']) and trim($location['name'])): ?>
85
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
86
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
87
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
88
+ $label_style = '';
89
+ if ( !empty($event->data->labels) ):
90
+ foreach( $event->data->labels as $label)
91
+ {
92
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
93
+ if ( $label['style'] == 'mec-label-featured' )
94
+ {
95
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
96
+ }
97
+ elseif ( $label['style'] == 'mec-label-canceled' )
98
+ {
99
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
100
+ }
101
+ }
102
+ endif;
103
  ?>
104
+ <article class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
105
  <?php echo $event_color; ?>
106
  <div class="mec-timetable-t2-content">
107
  <h4 class="mec-event-title">
108
  <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>
109
+ <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
110
  </h4>
111
  <div class="mec-event-time">
112
  <i class="mec-sl-clock-o"></i>
app/skins/weekly_view/render.php CHANGED
@@ -20,8 +20,23 @@ $has_events = array();
20
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
21
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
22
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  ?>
24
- <article class="mec-event-article">
25
  <div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
26
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
27
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
20
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
21
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
22
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
23
+ $label_style = '';
24
+ if ( !empty($event->data->labels) ):
25
+ foreach( $event->data->labels as $label)
26
+ {
27
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
28
+ if ( $label['style'] == 'mec-label-featured' )
29
+ {
30
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
31
+ }
32
+ elseif ( $label['style'] == 'mec-label-canceled' )
33
+ {
34
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
35
+ }
36
+ }
37
+ endif;
38
  ?>
39
+ <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
40
  <div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
41
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
42
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
app/skins/yearly_view/render.php CHANGED
@@ -37,9 +37,24 @@ for($i = 1; $i <= 12; $i++)
37
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
38
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
39
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ?>
41
  <?php if($this->style == 'modern'): ?>
42
- <div class="mec-agenda-event">
43
  <i class="mec-sl-clock "></i>
44
  <span class="mec-agenda-time">
45
  <?php
@@ -53,6 +68,7 @@ for($i = 1; $i <= 12; $i++)
53
  <span class="mec-agenda-event-title">
54
  <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>
55
  <?php echo $event_color; ?>
 
56
  </span>
57
  </div>
58
  <?php endif; ?>
37
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
38
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
39
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
40
+ $label_style = '';
41
+ if ( !empty($event->data->labels) ):
42
+ foreach( $event->data->labels as $label)
43
+ {
44
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
45
+ if ( $label['style'] == 'mec-label-featured' )
46
+ {
47
+ $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
48
+ }
49
+ elseif ( $label['style'] == 'mec-label-canceled' )
50
+ {
51
+ $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
52
+ }
53
+ }
54
+ endif;
55
  ?>
56
  <?php if($this->style == 'modern'): ?>
57
+ <div data-style="" class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
58
  <i class="mec-sl-clock "></i>
59
  <span class="mec-agenda-time">
60
  <?php
68
  <span class="mec-agenda-event-title">
69
  <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>
70
  <?php echo $event_color; ?>
71
+ <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
72
  </span>
73
  </div>
74
  <?php endif; ?>
app/widgets/single.php CHANGED
@@ -19,7 +19,7 @@ class MEC_single_widget extends WP_Widget
19
  */
20
  public function __construct()
21
  {
22
- parent::__construct($this->get_widget_slug(), __('MEC Single Sidebar Items', 'mec'), array('classname' => $this->get_widget_slug().'-class', 'description' => __('To manage event details page elements.', 'mec')));
23
 
24
  // Refreshing the widget's cached output with each new post
25
  add_action('save_post', array($this, 'flush_widget_cache'));
@@ -80,6 +80,7 @@ class MEC_single_widget extends WP_Widget
80
  $event_location = isset($instance['event_location']) ? esc_attr($instance['event_location']) : '';
81
  $event_categories = isset($instance['event_categories']) ? esc_attr($instance['event_categories']) : '';
82
  $event_orgnizer = isset($instance['event_orgnizer']) ? esc_attr($instance['event_orgnizer']) : '';
 
83
  $register_btn = isset($instance['register_btn']) ? esc_attr($instance['register_btn']) : '';
84
  $attende_module = isset($instance['attende_module']) ? esc_attr($instance['attende_module']) : '';
85
  $next_module = isset($instance['next_module']) ? esc_attr($instance['next_module']) : '';
@@ -91,63 +92,67 @@ class MEC_single_widget extends WP_Widget
91
  <ul class="mec-sortable">
92
  <li>
93
  <input class="checkbox" type="checkbox" <?php checked($data_time, 'on'); ?> id="<?php echo $this->get_field_id('data_time'); ?>" name="<?php echo $this->get_field_name('data_time'); ?>" />
94
- <label for="<?php echo $this->get_field_id('data_time'); ?>"><?php _e('Date Time Module', 'mec'); ?></label>
95
  </li>
96
  <li>
97
  <input class="checkbox" type="checkbox" <?php checked($local_time, 'on'); ?> id="<?php echo $this->get_field_id('local_time'); ?>" name="<?php echo $this->get_field_name('local_time'); ?>" />
98
- <label for="<?php echo $this->get_field_id('local_time'); ?>"><?php _e('Local Time', 'mec'); ?></label>
99
  </li>
100
  <li>
101
  <input class="checkbox" type="checkbox" <?php checked($event_cost, 'on'); ?> id="<?php echo $this->get_field_id('event_cost'); ?>" name="<?php echo $this->get_field_name('event_cost'); ?>" />
102
- <label for="<?php echo $this->get_field_id('event_cost'); ?>"><?php _e('Event Cost', 'mec'); ?></label>
103
  </li>
104
  <li>
105
  <input class="checkbox" type="checkbox" <?php checked($more_info, 'on'); ?> id="<?php echo $this->get_field_id('more_info'); ?>" name="<?php echo $this->get_field_name('more_info'); ?>" />
106
- <label for="<?php echo $this->get_field_id('more_info'); ?>"><?php _e('More Info', 'mec'); ?></label>
107
  </li>
108
  <li>
109
- <input class="checkbox" type="checkbox" <?php checked($event_label, 'on'); ?> id="<?php echo $this->get_field_id('event_label'); ?>" name="<?php echo $this->get_field_name('event_label'); ?>" /
110
- <label for="<?php echo $this->get_field_id('event_label'); ?>"><?php _e('Event Label', 'mec'); ?></label>
111
  </li>
112
  <li>
113
  <input class="checkbox" type="checkbox" <?php checked($event_location, 'on'); ?> id="<?php echo $this->get_field_id('event_location'); ?>" name="<?php echo $this->get_field_name('event_location'); ?>" />
114
- <label for="<?php echo $this->get_field_id('event_location'); ?>"><?php _e('Event Location', 'mec'); ?></label>
115
  </li>
116
  <li>
117
  <input class="checkbox" type="checkbox" <?php checked($event_categories, 'on'); ?> id="<?php echo $this->get_field_id('event_categories'); ?>" name="<?php echo $this->get_field_name('event_categories'); ?>" />
118
- <label for="<?php echo $this->get_field_id('event_categories'); ?>"><?php _e('Event Categories', 'mec'); ?></label>
119
  </li>
120
  <li>
121
  <input class="checkbox" type="checkbox" <?php checked($event_orgnizer, 'on'); ?> id="<?php echo $this->get_field_id('event_orgnizer'); ?>" name="<?php echo $this->get_field_name('event_orgnizer'); ?>" />
122
- <label for="<?php echo $this->get_field_id('event_orgnizer'); ?>"><?php _e('Event Organizer', 'mec'); ?></label>
123
  </li>
 
 
 
 
124
  <li>
125
  <input class="checkbox" type="checkbox" <?php checked($register_btn, 'on'); ?> id="<?php echo $this->get_field_id('register_btn'); ?>" name="<?php echo $this->get_field_name('register_btn'); ?>" />
126
- <label for="<?php echo $this->get_field_id('register_btn'); ?>"><?php _e('Register Button', 'mec'); ?></label>
127
  </li>
128
  <li>
129
  <input class="checkbox" type="checkbox" <?php checked($attende_module, 'on'); ?> id="<?php echo $this->get_field_id('attende_module'); ?>" name="<?php echo $this->get_field_name('attende_module'); ?>" />
130
- <label for="<?php echo $this->get_field_id('attende_module'); ?>"><?php _e('Attendees Module', 'mec'); ?></label>
131
  </li>
132
  <li>
133
  <input class="checkbox" type="checkbox" <?php checked($next_module, 'on'); ?> id="<?php echo $this->get_field_id('next_module'); ?>" name="<?php echo $this->get_field_name('next_module'); ?>" />
134
- <label for="<?php echo $this->get_field_id('next_module'); ?>"><?php _e('Next Pervious Module', 'mec'); ?></label>
135
  </li>
136
  <li>
137
  <input class="checkbox" type="checkbox" <?php checked($links_module, 'on'); ?> id="<?php echo $this->get_field_id('links_module'); ?>" name="<?php echo $this->get_field_name('links_module'); ?>" />
138
- <label for="<?php echo $this->get_field_id('links_module'); ?>"><?php _e('Social Module', 'mec'); ?></label>
139
  </li>
140
  <li>
141
  <input class="checkbox" type="checkbox" <?php checked($weather, 'on'); ?> id="<?php echo $this->get_field_id('weather_module'); ?>" name="<?php echo $this->get_field_name('weather_module'); ?>" />
142
- <label for="<?php echo $this->get_field_id('weather_module'); ?>"><?php _e('Weather Module', 'mec'); ?></label>
143
  </li>
144
  <li>
145
  <input class="checkbox" type="checkbox" <?php checked($google_map, 'on'); ?> id="<?php echo $this->get_field_id('google_map'); ?>" name="<?php echo $this->get_field_name('google_map'); ?>" />
146
- <label for="<?php echo $this->get_field_id('google_map'); ?>"><?php _e('Google Map', 'mec'); ?></label>
147
  </li>
148
  <li>
149
  <input class="checkbox" type="checkbox" <?php checked($qrcode, 'on'); ?> id="<?php echo $this->get_field_id('qrcode_module'); ?>" name="<?php echo $this->get_field_name('qrcode_module'); ?>" />
150
- <label for="<?php echo $this->get_field_id('qrcode_module'); ?>"><?php _e('QR Code', 'mec'); ?></label>
151
  </li>
152
  </ul>
153
  <?php
@@ -176,6 +181,7 @@ class MEC_single_widget extends WP_Widget
176
  $instance['event_location'] = strip_tags($new_instance['event_location']);
177
  $instance['event_categories'] = strip_tags($new_instance['event_categories']);
178
  $instance['event_orgnizer'] = strip_tags($new_instance['event_orgnizer']);
 
179
  $instance['register_btn'] = strip_tags($new_instance['register_btn']);
180
  $instance['attende_module'] = strip_tags($new_instance['attende_module']);
181
  $instance['next_module'] = strip_tags($new_instance['next_module']);
19
  */
20
  public function __construct()
21
  {
22
+ parent::__construct($this->get_widget_slug(), __('MEC Single Sidebar Items', 'modern-events-calendar-lite'), array('classname' => $this->get_widget_slug().'-class', 'description' => __('To manage event details page elements.', 'modern-events-calendar-lite')));
23
 
24
  // Refreshing the widget's cached output with each new post
25
  add_action('save_post', array($this, 'flush_widget_cache'));
80
  $event_location = isset($instance['event_location']) ? esc_attr($instance['event_location']) : '';
81
  $event_categories = isset($instance['event_categories']) ? esc_attr($instance['event_categories']) : '';
82
  $event_orgnizer = isset($instance['event_orgnizer']) ? esc_attr($instance['event_orgnizer']) : '';
83
+ $event_speakers = isset($instance['event_speakers']) ? esc_attr($instance['event_speakers']) : '';
84
  $register_btn = isset($instance['register_btn']) ? esc_attr($instance['register_btn']) : '';
85
  $attende_module = isset($instance['attende_module']) ? esc_attr($instance['attende_module']) : '';
86
  $next_module = isset($instance['next_module']) ? esc_attr($instance['next_module']) : '';
92
  <ul class="mec-sortable">
93
  <li>
94
  <input class="checkbox" type="checkbox" <?php checked($data_time, 'on'); ?> id="<?php echo $this->get_field_id('data_time'); ?>" name="<?php echo $this->get_field_name('data_time'); ?>" />
95
+ <label for="<?php echo $this->get_field_id('data_time'); ?>"><?php _e('Date Time Module', 'modern-events-calendar-lite'); ?></label>
96
  </li>
97
  <li>
98
  <input class="checkbox" type="checkbox" <?php checked($local_time, 'on'); ?> id="<?php echo $this->get_field_id('local_time'); ?>" name="<?php echo $this->get_field_name('local_time'); ?>" />
99
+ <label for="<?php echo $this->get_field_id('local_time'); ?>"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></label>
100
  </li>
101
  <li>
102
  <input class="checkbox" type="checkbox" <?php checked($event_cost, 'on'); ?> id="<?php echo $this->get_field_id('event_cost'); ?>" name="<?php echo $this->get_field_name('event_cost'); ?>" />
103
+ <label for="<?php echo $this->get_field_id('event_cost'); ?>"><?php _e('Event Cost', 'modern-events-calendar-lite'); ?></label>
104
  </li>
105
  <li>
106
  <input class="checkbox" type="checkbox" <?php checked($more_info, 'on'); ?> id="<?php echo $this->get_field_id('more_info'); ?>" name="<?php echo $this->get_field_name('more_info'); ?>" />
107
+ <label for="<?php echo $this->get_field_id('more_info'); ?>"><?php _e('More Info', 'modern-events-calendar-lite'); ?></label>
108
  </li>
109
  <li>
110
+ <input class="checkbox" type="checkbox" <?php checked($event_label, 'on'); ?> id="<?php echo $this->get_field_id('event_label'); ?>" name="<?php echo $this->get_field_name('event_label'); ?>" />
111
+ <label for="<?php echo $this->get_field_id('event_label'); ?>"><?php _e('Event Label', 'modern-events-calendar-lite'); ?></label>
112
  </li>
113
  <li>
114
  <input class="checkbox" type="checkbox" <?php checked($event_location, 'on'); ?> id="<?php echo $this->get_field_id('event_location'); ?>" name="<?php echo $this->get_field_name('event_location'); ?>" />
115
+ <label for="<?php echo $this->get_field_id('event_location'); ?>"><?php _e('Event Location', 'modern-events-calendar-lite'); ?></label>
116
  </li>
117
  <li>
118
  <input class="checkbox" type="checkbox" <?php checked($event_categories, 'on'); ?> id="<?php echo $this->get_field_id('event_categories'); ?>" name="<?php echo $this->get_field_name('event_categories'); ?>" />
119
+ <label for="<?php echo $this->get_field_id('event_categories'); ?>"><?php _e('Event Categories', 'modern-events-calendar-lite'); ?></label>
120
  </li>
121
  <li>
122
  <input class="checkbox" type="checkbox" <?php checked($event_orgnizer, 'on'); ?> id="<?php echo $this->get_field_id('event_orgnizer'); ?>" name="<?php echo $this->get_field_name('event_orgnizer'); ?>" />
123
+ <label for="<?php echo $this->get_field_id('event_orgnizer'); ?>"><?php _e('Event Organizer', 'modern-events-calendar-lite'); ?></label>
124
  </li>
125
+ <li>
126
+ <input class="checkbox" type="checkbox" <?php checked($event_speakers, 'on'); ?> id="<?php echo $this->get_field_id('event_speakers'); ?>" name="<?php echo $this->get_field_name('event_speakers'); ?>" />
127
+ <label for="<?php echo $this->get_field_id('event_speakers'); ?>"><?php _e('Event Speakers', 'modern-events-calendar-lite'); ?></label>
128
+ </li>
129
  <li>
130
  <input class="checkbox" type="checkbox" <?php checked($register_btn, 'on'); ?> id="<?php echo $this->get_field_id('register_btn'); ?>" name="<?php echo $this->get_field_name('register_btn'); ?>" />
131
+ <label for="<?php echo $this->get_field_id('register_btn'); ?>"><?php _e('Register Button', 'modern-events-calendar-lite'); ?></label>
132
  </li>
133
  <li>
134
  <input class="checkbox" type="checkbox" <?php checked($attende_module, 'on'); ?> id="<?php echo $this->get_field_id('attende_module'); ?>" name="<?php echo $this->get_field_name('attende_module'); ?>" />
135
+ <label for="<?php echo $this->get_field_id('attende_module'); ?>"><?php _e('Attendees Module', 'modern-events-calendar-lite'); ?></label>
136
  </li>
137
  <li>
138
  <input class="checkbox" type="checkbox" <?php checked($next_module, 'on'); ?> id="<?php echo $this->get_field_id('next_module'); ?>" name="<?php echo $this->get_field_name('next_module'); ?>" />
139
+ <label for="<?php echo $this->get_field_id('next_module'); ?>"><?php _e('Next Pervious Module', 'modern-events-calendar-lite'); ?></label>
140
  </li>
141
  <li>
142
  <input class="checkbox" type="checkbox" <?php checked($links_module, 'on'); ?> id="<?php echo $this->get_field_id('links_module'); ?>" name="<?php echo $this->get_field_name('links_module'); ?>" />
143
+ <label for="<?php echo $this->get_field_id('links_module'); ?>"><?php _e('Social Module', 'modern-events-calendar-lite'); ?></label>
144
  </li>
145
  <li>
146
  <input class="checkbox" type="checkbox" <?php checked($weather, 'on'); ?> id="<?php echo $this->get_field_id('weather_module'); ?>" name="<?php echo $this->get_field_name('weather_module'); ?>" />
147
+ <label for="<?php echo $this->get_field_id('weather_module'); ?>"><?php _e('Weather Module', 'modern-events-calendar-lite'); ?></label>
148
  </li>
149
  <li>
150
  <input class="checkbox" type="checkbox" <?php checked($google_map, 'on'); ?> id="<?php echo $this->get_field_id('google_map'); ?>" name="<?php echo $this->get_field_name('google_map'); ?>" />
151
+ <label for="<?php echo $this->get_field_id('google_map'); ?>"><?php _e('Google Map', 'modern-events-calendar-lite'); ?></label>
152
  </li>
153
  <li>
154
  <input class="checkbox" type="checkbox" <?php checked($qrcode, 'on'); ?> id="<?php echo $this->get_field_id('qrcode_module'); ?>" name="<?php echo $this->get_field_name('qrcode_module'); ?>" />
155
+ <label for="<?php echo $this->get_field_id('qrcode_module'); ?>"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></label>
156
  </li>
157
  </ul>
158
  <?php
181
  $instance['event_location'] = strip_tags($new_instance['event_location']);
182
  $instance['event_categories'] = strip_tags($new_instance['event_categories']);
183
  $instance['event_orgnizer'] = strip_tags($new_instance['event_orgnizer']);
184
+ $instance['event_speakers'] = strip_tags($new_instance['event_speakers']);
185
  $instance['register_btn'] = strip_tags($new_instance['register_btn']);
186
  $instance['attende_module'] = strip_tags($new_instance['attende_module']);
187
  $instance['next_module'] = strip_tags($new_instance['next_module']);
assets/css/backend.css CHANGED
@@ -3,8 +3,8 @@
3
  ================================================== */
4
 
5
  #mec_thumbnail_img img,#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img{max-width:250px;}
6
- .taxonomy-mec_organizer .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_label .column-id{width:40px;}
7
- .taxonomy-mec_organizer .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_label .column-primary{width:250px;}
8
  .mec-color{ margin:10px; width:14px;height:14px;display:inline-block; margin-right: 6px; border-radius:20px 20px 20px 20px; vertical-align: middle;}
9
  .mec-event-title-container,.mec-event-color-container{display:inline-block;}
10
  .mec-available-color-row{margin-top:15px;}
@@ -346,9 +346,15 @@
346
  background-repeat: no-repeat;
347
  }
348
 
 
 
 
 
 
349
  /*!
350
  * Bootstrap v3.3.7 (http://getbootstrap.com)
351
  * Copyright 2011-2016 Twitter, Inc.
352
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
353
  */
354
- #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}
 
3
  ================================================== */
4
 
5
  #mec_thumbnail_img img,#mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img{max-width:250px;}
6
+ .taxonomy-mec_organizer .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_label .column-id,.taxonomy-mec_speaker .column-id{width:40px;}
7
+ .taxonomy-mec_organizer .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_label .column-primary,.taxonomy-mec_speaker .column-primary{width:250px;}
8
  .mec-color{ margin:10px; width:14px;height:14px;display:inline-block; margin-right: 6px; border-radius:20px 20px 20px 20px; vertical-align: middle;}
9
  .mec-event-title-container,.mec-event-color-container{display:inline-block;}
10
  .mec-available-color-row{margin-top:15px;}
346
  background-repeat: no-repeat;
347
  }
348
 
349
+
350
+ .mec-toggle-month-divider { display: none; }
351
+ .w-welcome p span { background: #fff; padding: 4px 10px;}
352
+ #mec_masonry_skin_options_container .mec-form-row .description { margin-left: 0; padding-left: 0; border: none; margin-top: -4px; }
353
+
354
  /*!
355
  * Bootstrap v3.3.7 (http://getbootstrap.com)
356
  * Copyright 2011-2016 Twitter, Inc.
357
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
358
  */
359
+ #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}
360
+
assets/css/backend.min.css CHANGED
@@ -1,4 +1,4 @@
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{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .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:Oxygen,'Open Sans',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;padding-top:79px}.wns-be-sidebar: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-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:440px;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)}.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 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:3px}.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:6px 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;margin-top:6px}.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;position:absolute;bottom:0;right:0;left:0;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}.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-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}@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}.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:35px}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:100%}#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{background:#008aff;text-align:center;display:block;padding:7px 0;color:#fff;font-weight:600;margin-top:10px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 6px rgba(0,0,0,.039)}.w-box,.wns-be-group-tab .w-box{box-shadow:none}.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;white-space:pre-line;font-size:13px}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button{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}/*!
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)
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:Oxygen,'Open Sans',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;padding-top:79px}.wns-be-sidebar: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-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:440px;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)}.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 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:3px}.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:6px 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;margin-top:6px}.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;position:absolute;bottom:0;right:0;left:0;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}.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-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}@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}.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:35px}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:100%}#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{background:#008aff;text-align:center;display:block;padding:7px 0;color:#fff;font-weight:600;margin-top:10px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 6px rgba(0,0,0,.039)}.w-box,.wns-be-group-tab .w-box{box-shadow:none}.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;white-space:pre-line;font-size:13px}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button{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-toggle-month-divider{display:none}.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}/*!
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)
assets/css/frontend.css CHANGED
@@ -596,7 +596,9 @@
596
  .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;}
597
  .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;}
598
  .mec-single-event .mec-events-meta-group-booking form { margin:0;}
599
- .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;}
 
 
600
  .mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder { color:#aaa;}
601
  .mec-single-event .mec-events-meta-group-booking input:-moz-placeholder { color:#aaa;}
602
  .mec-single-event .mec-events-meta-group-booking input[type=text], .mec-single-event .mec-events-meta-group-booking input[type=number], .mec-single-event .mec-events-meta-group-booking input[type=email], .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 textarea, .mec-single-event .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: 330px;margin-bottom: 20px;box-shadow: inset 0px 2px 4px rgba(0,0,0,0.051);clear: both;}
@@ -738,6 +740,17 @@
738
  .mec-event-schedule-content dl dt { margin:0 0 10px; line-height:1.16;}
739
  .mec-event-schedule-content dl dt.mec-schedule-title { font-size:13px; color:#5a5a5a; font-weight:700;}
740
  .mec-event-schedule-content dl dt.mec-schedule-description { font-weight:300;}
 
 
 
 
 
 
 
 
 
 
 
741
 
742
  /* Location */
743
  .mec-single-event-location img, .mec-single-event-organizer img {margin-bottom: 10px;width: 100%;}
@@ -873,7 +886,7 @@
873
  /* MEC Events Calendar Classic
874
  ------------------------------------------------ */
875
  .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;}
876
- .mec-calendar.mec-event-calendar-classic .mec-calendar-side { display: block;}
877
  .mec-calendar.mec-event-calendar-classic .mec-calendar-header, .mec-calendar.mec-event-calendar-classic dl { width:100%;}
878
  .mec-calendar.mec-event-calendar-classic dl dt { width:auto; height:136px; line-height:1.2; text-align:left; padding:5px 7px; position:relative;}
879
  .mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt { height:30px !important;}
@@ -901,7 +914,21 @@
901
  .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec { padding:10px;}
902
  .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2 { font-size:13px; margin-top:8px;}
903
  }
904
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
905
 
906
  /* MEC Events - Calendar Daily
907
  -------------------------------- */
@@ -1138,6 +1165,13 @@
1138
  .mec-fes-loading:before{content: url('../img/ajax-loader.gif'); background: transparent; border-style: none; display: block; margin-left: 47%;}
1139
  @media only screen and (max-width: 960px) {.mec-fes-submit-wide{display:none;} }
1140
 
 
 
 
 
 
 
 
1141
  /* MEC Total Calendar
1142
  -------------------------------- */
1143
  .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,0.012);}
@@ -1149,15 +1183,18 @@
1149
  .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover { color: #40d9f1;}
1150
  .mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected { color: #fff; background: #40d9f1; border-color: #40d9f1;}
1151
  .mec-wrap .mec-totalcal-box .mec-totalcal-view { text-align:right; float: right;}
 
1152
 
1153
- .mec-wrap .mec-totalcal-box input[type=search] { width: calc(100% - 36px);}
1154
-
 
1155
  @media only screen and (max-width: 960px) {
1156
  .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;}
1157
  }
1158
  @media only screen and (min-width: 768px) and (max-width: 960px) {
1159
  .mec-wrap .mec-totalcal-box .col-md-4 { position: absolute; right: 10px; top: 20px; width: initial;}
1160
  .mec-wrap .mec-totalcal-box .col-md-5 { padding-bottom: 0;}
 
1161
  }
1162
  @media only screen and (max-width: 767px) {
1163
  .mec-wrap .mec-totalcal-box .mec-totalcal-view { float: none;}
@@ -1567,8 +1604,8 @@
1567
  .mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover, .mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover { color: #111; }
1568
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev, .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next {opacity:1;width: 44px;height: 44px;line-height: 40px;border-radius: 0;text-align: center;background: transparent;border: 1px solid #fff;transition: all 0.25s ease;-webkit-transition: all 0.25s ease;position: absolute;top: 34px;cursor: pointer;}
1569
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover, .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover {box-shadow: 0 4px 16px 0px rgba(0,0,0,0.075); background: #fff;}
1570
- .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next {right: 30px;}
1571
- .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev {right: 82px;}
1572
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i , .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i {font-size: 14px;color: #fff;opacity: 1;transition: all 0.25s ease;}
1573
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i, .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i {color: #000; cursor: pointer;}
1574
 
@@ -1670,7 +1707,7 @@
1670
  .mec-toggle-item-col .mec-event-month {text-transform: uppercase;font-size: 12px;line-height: 14px;padding-top: 4px;font-weight: 700;}
1671
  .mec-toggle-item-col .mec-event-detail {font-size: 10px;}
1672
  .mec-toggle-item-col .mec-event-day { margin-top: 9px; color: #c0c0c0; font-family: 'Roboto',sans-serif; font-size: 35px; font-weight: 100; text-transform: uppercase; letter-spacing: -1px;}
1673
- .mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;}
1674
  .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;}
1675
  .mec-events-toggle .mec-toggle-item-inner i {position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0, -50%);cursor: pointer;}
1676
  .mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615";}
@@ -2108,8 +2145,95 @@
2108
  .mec-border-color, .mec-border-color-hover:hover,
2109
  .mec-wrap .mec-border-color, .mec-wrap .mec-border-color-hover:hover { border-color: #40d9f1;}
2110
 
2111
-
2112
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2113
  /* Bootstrap v3.0.3 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */
2114
  .mec-wrap * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} .mec-wrap *:before, .mec-wrap *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} .mec-wrap .clearfix:before, .mec-wrap .clearfix:after { 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:before, .mec-container:after { 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; /* webnus */ } } @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;} }
2115
  @media only screen and (min-width: 1921px) {.mec-container { max-width:1690px;} }
596
  .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;}
597
  .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;}
598
  .mec-single-event .mec-events-meta-group-booking form { margin:0;}
599
+ .mec-single-event .mec-events-meta-group-booking label,.mec-single-event .mec-events-meta-group-booking h5 span {color: #424242;font-size: 12px;font-weight: 300;letter-spacing: 0;margin: 3px 0;display: block;clear: none;padding: 5px 1em 3px 0;}
600
+ .mec-single-event .mec-events-meta-group-booking h5 span { display: inline-block;}
601
+ .mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name { padding-right: 5px;text-transform: capitalize;}
602
  .mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder { color:#aaa;}
603
  .mec-single-event .mec-events-meta-group-booking input:-moz-placeholder { color:#aaa;}
604
  .mec-single-event .mec-events-meta-group-booking input[type=text], .mec-single-event .mec-events-meta-group-booking input[type=number], .mec-single-event .mec-events-meta-group-booking input[type=email], .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 textarea, .mec-single-event .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: 330px;margin-bottom: 20px;box-shadow: inset 0px 2px 4px rgba(0,0,0,0.051);clear: both;}
740
  .mec-event-schedule-content dl dt { margin:0 0 10px; line-height:1.16;}
741
  .mec-event-schedule-content dl dt.mec-schedule-title { font-size:13px; color:#5a5a5a; font-weight:700;}
742
  .mec-event-schedule-content dl dt.mec-schedule-description { font-weight:300;}
743
+ .mec-event-schedule-content .mec-schedule-speakers { background: #f7f7f7; padding: 10px; }
744
+ .mec-wrap .mec-event-schedule-content h6 { font-size: 13px; color: #5a5a5a; font-weight: 700; display: inline-block; }
745
+ .mec-wrap .mec-event-schedule-content a { font-weight: 400; color: #5a5a5a; transition: all 0.1s ease; }
746
+
747
+ /* Speaker Widget */
748
+ .mec-single-event .mec-speakers-details ul li { list-style: none; background: #f7f7f7; padding: 5px 5px 18px 5px; margin-top: 14px; }
749
+ .mec-single-event .mec-speakers-details ul li a { -webkit-transition: .2s all ease; transition: .2s all ease;}
750
+ .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; }
751
+ .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img { border-color: #40d9f1}
752
+ .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; }
753
+ .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title { display: block; font-size: 12px; margin-top: -1px; padding-left: 75px; }
754
 
755
  /* Location */
756
  .mec-single-event-location img, .mec-single-event-organizer img {margin-bottom: 10px;width: 100%;}
886
  /* MEC Events Calendar Classic
887
  ------------------------------------------------ */
888
  .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;}
889
+ .mec-calendar.mec-event-calendar-classic .mec-calendar-side { display: block;}
890
  .mec-calendar.mec-event-calendar-classic .mec-calendar-header, .mec-calendar.mec-event-calendar-classic dl { width:100%;}
891
  .mec-calendar.mec-event-calendar-classic dl dt { width:auto; height:136px; line-height:1.2; text-align:left; padding:5px 7px; position:relative;}
892
  .mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt { height:30px !important;}
914
  .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec { padding:10px;}
915
  .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2 { font-size:13px; margin-top:8px;}
916
  }
917
+
918
+ /* Monthly Calendar/Novel
919
+ ------------------------------------------------ */
920
+ .mec-calendar .mec-event-article.mec-single-event-novel { padding: 4px 8px; min-height: 25px; margin: 0 -4px; border-radius: 3px; }
921
+ .mec-calendar .mec-event-article.mec-single-event-novel h4 { margin: 0; font-size: 10px; line-height: 18px; }
922
+ .mec-calendar.mec-event-container-novel dl dt { padding: 3px; }
923
+ .mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day { display: inline-block; padding: 4px; margin-left: 1px; }
924
+ .mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day { color: #fff; }
925
+ .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; }
926
+ .mec-single-event-novel.light h4 { color: #000 !important; }
927
+ .mec-single-event-novel.dark h4{ color: #fff !important; }
928
+ @media only screen and (max-width: 768px) {
929
+ .mec-calendar .mec-event-article.mec-single-event-novel { padding: 0; min-height: 5px; }
930
+ .mec-calendar .mec-event-article.mec-single-event-novel h4 { display: none; }
931
+ }
932
 
933
  /* MEC Events - Calendar Daily
934
  -------------------------------- */
1165
  .mec-fes-loading:before{content: url('../img/ajax-loader.gif'); background: transparent; border-style: none; display: block; margin-left: 47%;}
1166
  @media only screen and (max-width: 960px) {.mec-fes-submit-wide{display:none;} }
1167
 
1168
+ .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"] { width: 23%; margin-right: 1.4%; }
1169
+ .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row { border-bottom: 1px solid #e8e8e8; padding-bottom: 15px; }
1170
+ .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type { border: none; }
1171
+ .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"].mec-col-1 { width: 10%; }
1172
+ .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type="text"].mec-col-6 { width: 39%; }
1173
+ .mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button { margin-right: 0; padding: 9px 26px; }
1174
+ @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;} }
1175
  /* MEC Total Calendar
1176
  -------------------------------- */
1177
  .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,0.012);}
1183
  .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover { color: #40d9f1;}
1184
  .mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected { color: #fff; background: #40d9f1; border-color: #40d9f1;}
1185
  .mec-wrap .mec-totalcal-box .mec-totalcal-view { text-align:right; float: right;}
1186
+ .mec-wrap .mec-totalcal-box input[type=search] { width: calc(100% - 36px);}
1187
 
1188
+ @media only screen and (min-width: 961px) and (max-width: 1200px) {
1189
+ .mec-wrap .mec-totalcal-box { padding: 37px 5px; }
1190
+ }
1191
  @media only screen and (max-width: 960px) {
1192
  .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;}
1193
  }
1194
  @media only screen and (min-width: 768px) and (max-width: 960px) {
1195
  .mec-wrap .mec-totalcal-box .col-md-4 { position: absolute; right: 10px; top: 20px; width: initial;}
1196
  .mec-wrap .mec-totalcal-box .col-md-5 { padding-bottom: 0;}
1197
+ .mec-wrap .mec-totalcal-box { padding: 37px 5px; }
1198
  }
1199
  @media only screen and (max-width: 767px) {
1200
  .mec-wrap .mec-totalcal-box .mec-totalcal-view { float: none;}
1604
  .mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover, .mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover { color: #111; }
1605
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev, .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next {opacity:1;width: 44px;height: 44px;line-height: 40px;border-radius: 0;text-align: center;background: transparent;border: 1px solid #fff;transition: all 0.25s ease;-webkit-transition: all 0.25s ease;position: absolute;top: 34px;cursor: pointer;}
1606
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover, .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover {box-shadow: 0 4px 16px 0px rgba(0,0,0,0.075); background: #fff;}
1607
+ .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next {right: 60px;}
1608
+ .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev {right: 112px;}
1609
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i , .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i {font-size: 14px;color: #fff;opacity: 1;transition: all 0.25s ease;}
1610
  .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i, .mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i {color: #000; cursor: pointer;}
1611
 
1707
  .mec-toggle-item-col .mec-event-month {text-transform: uppercase;font-size: 12px;line-height: 14px;padding-top: 4px;font-weight: 700;}
1708
  .mec-toggle-item-col .mec-event-detail {font-size: 10px;}
1709
  .mec-toggle-item-col .mec-event-day { margin-top: 9px; color: #c0c0c0; font-family: 'Roboto',sans-serif; font-size: 35px; font-weight: 100; text-transform: uppercase; letter-spacing: -1px;}
1710
+ .mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display: inline-block;}
1711
  .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;}
1712
  .mec-events-toggle .mec-toggle-item-inner i {position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0, -50%);cursor: pointer;}
1713
  .mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615";}
2145
  .mec-border-color, .mec-border-color-hover:hover,
2146
  .mec-wrap .mec-border-color, .mec-wrap .mec-border-color-hover:hover { border-color: #40d9f1;}
2147
 
2148
+ /* # Toggle Month Divider
2149
+ ================================================== */
2150
+ .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,0.1); border-radius: 2px; }
2151
+ .mec-toggle-month-divider .mec-month-divider {margin: 0;text-align: left;background: #fff;position: relative;cursor: pointer;border-top: 1px solid #e8e8e8;}
2152
+ .mec-toggle-month-divider .mec-month-divider span { padding: 20px; border-bottom: 1px solid #e8e8e8; }
2153
+ .mec-toggle-month-divider .mec-month-divider i { position: absolute; right: 20px; top: 24px; font-size: 20px; cursor: pointer; }
2154
+ .mec-toggle-month-divider .mec-month-divider span:before { display: none; }
2155
+ .mec-toggle-month-divider .mec-month-divider + article { margin-top: 20px; }
2156
+ .mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type { border-top: none; }
2157
+ .mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type) ~ article { display:none; }
2158
+ .mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i { display: none;}
2159
+
2160
+ /* # Featured/Canceled Label
2161
+ ================================================== */
2162
+ .mec-wrap article:not([class^="mec-event-countdown"]):not([class^="mec-event-cover-"]).mec-label-featured:before, .mec-wrap article:not([class^="mec-event-countdown"]):not([class^="mec-event-cover-"]).mec-label-canceled: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); }
2163
+ .mec-wrap article:not([class^="mec-event-countdown"]):not([class^="mec-event-cover-"]).mec-label-featured, .mec-wrap article:not([class^="mec-event-countdown"]):not([class^="mec-event-cover-"]).mec-label-canceled { overflow: hidden; position: relative; }
2164
+ .mec-wrap article:not([class^="mec-event-countdown"]):not([class^="mec-event-cover-"]).mec-label-canceled:before { background: #de0404; }
2165
+
2166
+ /* Full Calendar/Weekly view */
2167
+ ul.mec-weekly-view-dates-events article:before, .mec-daily-view-date-events article:before { padding: 7px 40px !important; top: 27px !important; }
2168
+
2169
+ /* Full Calendar/Yearly View */
2170
+ .mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style, .mec-wrap .mec-event-list-modern article .mec-fc-style, .mec-wrap .mec-event-list-accordion article .mec-fc-style, .mec-timetable-wrap article .mec-fc-style, .mec-event-grid-minimal article .mec-fc-style, .mec-event-grid-classic article .mec-fc-style, .mec-event-grid-simple article .mec-fc-style, .mec-wrap article.mec-event-cover-modern .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 { font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase; background: #04de78; padding: 2px 7px; color: #fff; position: relative; margin-left: 5px; border-radius: 2px; }
2171
+ .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; }
2172
+ .mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before, .mec-wrap .mec-event-list-modern article .mec-fc-style:before, .mec-wrap .mec-event-list-accordion article .mec-fc-style:before, .mec-timetable-wrap article .mec-fc-style:before, .mec-event-grid-minimal article .mec-fc-style:before, .mec-event-grid-simple article .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; }
2173
+ .mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before { color: #de0404; }
2174
+
2175
+ /* List view/Modern & Accordion */
2176
+ .mec-wrap .mec-event-list-modern article.mec-label-featured:before, .mec-wrap .mec-event-list-modern article.mec-label-canceled:before, .mec-wrap .mec-event-list-accordion article.mec-label-featured:before, .mec-wrap .mec-event-list-accordion article.mec-label-canceled:before, .mec-event-grid-minimal article.mec-label-featured:before, .mec-event-grid-minimal article.mec-label-canceled:before, .mec-event-grid-simple article.mec-label-featured:before, .mec-event-grid-simple article.mec-label-canceled:before, .mec-event-grid-classic article.mec-label-featured:before, .mec-event-grid-classic article.mec-label-canceled:before, .mec-timetable-wrap article.mec-label-featured:before, .mec-timetable-wrap article.mec-label-canceled:before { display: none; }
2177
+ .mec-wrap .mec-event-list-modern article .mec-fc-style, .mec-wrap .mec-event-list-accordion 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; }
2178
+ .mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style, .mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style, .mec-timetable-wrap article.mec-label-canceled .mec-fc-style, .mec-event-grid-minimal article.mec-label-canceled .mec-fc-style, .mec-event-grid-classic article.mec-label-canceled .mec-fc-style, .mec-event-grid-simple 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; }
2179
+ .mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before, .mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before, .mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before, .mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before, .mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before, .mec-event-grid-simple 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; }
2180
+
2181
+ /* Slider view */
2182
+ .mec-wrap .mec-slider-t5 article:not([class^="mec-event-countdown"]).mec-label-featured:before, .mec-wrap .mec-slider-t5 article:not([class^="mec-event-countdown"]).mec-label-canceled:before { -ms-transform: none; -webkit-transform: none; transform: none; -webkit-transition: none; transition: none; top: 271px; right: 0; }
2183
+
2184
+ /* Timetable view */
2185
+ .mec-timetable-wrap article .mec-fc-style { top: -2px; font-size: 10px; }
2186
+
2187
+ /* Cover View */
2188
+ .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; }
2189
+
2190
+ /* Grid View/Clean */
2191
+ .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: 0px 10px !important; }
2192
+
2193
+ /* Grid view/Minimal */
2194
+ .mec-event-grid-minimal article .mec-fc-style, .mec-event-grid-simple article .mec-fc-style { top: -4px; font-size: 10px; margin-left: 10px; }
2195
+ .mec-event-grid-classic article .mec-fc-style { padding: 5px 20px; font-size: 12px; margin-top: 8px; display: inline-block; }
2196
+
2197
+
2198
+ /* # Speaker Modal
2199
+ ================================================== */
2200
+ .mec-hourly-schedule-speaker-info { background: #fff; padding: 30px; border: 1px solid #e6e6e6; max-width: 740px; width: 740px; }
2201
+ .mec-hourly-schedule-speaker-thumbnail { float: left; max-width: 30%; width: 30%; }
2202
+ .mec-hourly-schedule-speaker-name { font-weight: 700; font-size: 26px; line-height: 1.2; color: #333; text-transform: uppercase; }
2203
+ .mec-hourly-schedule-speaker-details {float: left; width: 69%; padding-left:25px}
2204
+ .mec-hourly-schedule-speaker-job-title { font-size: 16px; line-height: 1.3; margin-bottom: 4px; }
2205
+ .mec-hourly-schedule-speaker-description { font-size: 14px; font-weight: 400; color: #6d7683; line-height: 1.7; text-align: left; }
2206
+ .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 0.2s ease; font-size: 15px; cursor: pointer; }
2207
+ .mec-hourly-schedule-speaker-contact-information a i:hover { background: #222; color: #fff; }
2208
+ @media only screen and (max-width: 479px) {
2209
+ .mec-hourly-schedule-speaker-thumbnail { float: none; max-width: none; margin-right: 0; margin-bottom: 15px; width:100% }
2210
+ .mec-hourly-schedule-speaker-thumbnail img { width: 100%; }
2211
+ .mec-hourly-schedule-speaker-details { padding-left: 0;}
2212
+ .mec-hourly-schedule-speaker-info { width: 90%; margin: 0 auto;}
2213
+ }
2214
+
2215
+
2216
+ /* # Booking Modal
2217
+ ================================================== */
2218
+ .lity-content .mec-events-meta-group-booking { max-width: 520px; width: 520px; padding: 20px 50px; background: #fff; }
2219
+ .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; }
2220
+ .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%; }
2221
+ .lity-content .mec-events-meta-group-booking label, .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-event-ticket-available, .lity-content .mec-events-meta-group-booking .mec-ticket-variation-name, .lity-content .mec-events-meta-group-booking .mec-ticket-variation-price { color: #424242; font-size: 12px; font-weight: 300; letter-spacing: 0; margin: 3px 0; clear: none; padding: 5px 1em 3px 0; }
2222
+ .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; }
2223
+ .lity-content .mec-events-meta-group-booking input[type=number], .lity-content .mec-events-meta-group-booking input[type=text] { 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; }
2224
+ .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; }
2225
+ .lity-content button[type="submit"]:hover { background: #222; }
2226
+ .lity-content .mec-book-tickets-container li { list-style: none; }
2227
+ .lity-content .mec-events-meta-group-booking li h4, .lity-content .mec-events-meta-group-booking #mec_book_payment_form h4 { font-size: 19px; font-weight: 700; }
2228
+ .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; }
2229
+ .lity-content .mec-events-meta-group-booking ul.mec-book-price-details li { width: 50%; }
2230
+ .lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even) { border: none; }
2231
+ .lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span { display: block; }
2232
+ .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; }
2233
+ .lity-content .mec-events-meta-group-booking button[type=submit].loading:after { display: inline-block; }
2234
+ @media only screen and (max-width: 480px) { .lity-content .mec-events-meta-group-booking { padding: 20px; width: 340px; margin: 0 auto; } }
2235
+
2236
+
2237
  /* Bootstrap v3.0.3 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */
2238
  .mec-wrap * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} .mec-wrap *:before, .mec-wrap *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} .mec-wrap .clearfix:before, .mec-wrap .clearfix:after { 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:before, .mec-container:after { 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; /* webnus */ } } @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;} }
2239
  @media only screen and (min-width: 1921px) {.mec-container { max-width:1690px;} }
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .mec-wrap,.mec-wrap div{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 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 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 .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 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 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=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=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]:focus,.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.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}.mec-single-event .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}.mec-single-event .mec-events-meta-group-booking button[type=submit].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 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:#8d8d8d;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:13px}.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-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-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}.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%}@media only screen and (max-width:960px){.mec-fes-submit-wide{display:none}}.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)}.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 (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:absolute;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}}@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{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{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{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:-50px}.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}.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:30px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.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}.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;cursor:pointer}.mec-events-toggle .mec-toggle-item-inner{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}.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}@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{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:58px}.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:400 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-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%}}
1
+ .mec-wrap,.mec-wrap div{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 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 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 .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=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=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]:focus,.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.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}.mec-single-event .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}.mec-single-event .mec-events-meta-group-booking button[type=submit].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 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:#8d8d8d;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:13px}.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:3px}.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-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:none}}.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}.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%}@media only screen and (max-width:960px){.mec-fes-submit-wide{display:none}}.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)}.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:absolute;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{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{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{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:-50px}.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}.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}.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;cursor:pointer}.mec-events-toggle .mec-toggle-item-inner{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}@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{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:58px}.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:400 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-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}}.lity-content .mec-events-meta-group-booking{max-width:520px;width:520px;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}.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}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content 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%}}
assets/js/backend.js CHANGED
@@ -97,7 +97,8 @@ jQuery(document).ready(function($)
97
 
98
  mec_skin_toggle();
99
 
100
- $('.mec-switcher').on('click', 'label[for*="mec[settings]"]', function(event) {
 
101
  var id = $(this).closest('.mec-switcher').data('id');
102
  var status = $('#mec_sn_'+id+' .mec-status').val();
103
 
97
 
98
  mec_skin_toggle();
99
 
100
+ $('.mec-switcher').on('click', 'label[for*="mec[settings]"]', function(event)
101
+ {
102
  var id = $(this).closest('.mec-switcher').data('id');
103
  var status = $('#mec_sn_'+id+' .mec-status').val();
104
 
assets/js/events.js CHANGED
@@ -256,15 +256,19 @@ jQuery(document).ready(function($)
256
  $('#mec_tickets').append(html);
257
  $('#mec_new_ticket_key').val(parseInt(key)+1);
258
  });
259
-
260
- $('#mec_add_hourly_schedule_button').on('click', function()
261
  {
262
- var key = $('#mec_new_hourly_schedule_key').val();
263
- var html = $('#mec_new_hourly_schedule_raw').html().replace(/:i:/g, key);
264
-
265
- $('#mec_hourly_schedules').append(html);
266
- $('#mec_new_hourly_schedule_key').val(parseInt(key)+1);
 
 
267
  });
 
 
268
 
269
  $('#mec_add_fee_button').on('click', function()
270
  {
@@ -274,6 +278,15 @@ jQuery(document).ready(function($)
274
  $('#mec_fees_list').append(html);
275
  $('#mec_new_fee_key').val(parseInt(key)+1);
276
  });
 
 
 
 
 
 
 
 
 
277
 
278
  $('.mec-form-row.mec-available-color-row span').on('click', function()
279
  {
@@ -361,9 +374,22 @@ function mec_bookings_unlimited_toggle()
361
  jQuery('#mec_bookings_limit').toggleClass('mec-util-hidden');
362
  }
363
 
364
- function mec_hourly_schedule_remove(i)
365
  {
366
- jQuery("#mec_hourly_schedule_row"+i).remove();
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  }
368
 
369
  function mec_ticket_remove(i)
@@ -388,6 +414,11 @@ function mec_remove_fee(key)
388
  jQuery("#mec_fee_row"+key).remove();
389
  }
390
 
 
 
 
 
 
391
  function mec_reg_fields_option_listeners()
392
  {
393
  jQuery('button.mec-reg-field-add-option').on('click', function()
256
  $('#mec_tickets').append(html);
257
  $('#mec_new_ticket_key').val(parseInt(key)+1);
258
  });
259
+
260
+ $('#mec_add_hourly_schedule_day_button').on('click', function()
261
  {
262
+ var key = $('#mec_new_hourly_schedule_day_key').val();
263
+ var html = $('#mec_new_hourly_schedule_day_raw').html().replace(/:d:/g, key).replace(/:dd:/g, parseInt(key)+1);
264
+
265
+ $('#mec_meta_box_hourly_schedule_days').append(html);
266
+ $('#mec_new_hourly_schedule_day_key').val(parseInt(key)+1);
267
+
268
+ mec_hourly_schedule_listeners();
269
  });
270
+
271
+ mec_hourly_schedule_listeners();
272
 
273
  $('#mec_add_fee_button').on('click', function()
274
  {
278
  $('#mec_fees_list').append(html);
279
  $('#mec_new_fee_key').val(parseInt(key)+1);
280
  });
281
+
282
+ $('#mec_add_ticket_variation_button').on('click', function()
283
+ {
284
+ var key = $('#mec_new_ticket_variation_key').val();
285
+ var html = $('#mec_new_ticket_variation_raw').html().replace(/:i:/g, key);
286
+
287
+ $('#mec_ticket_variations_list').append(html);
288
+ $('#mec_new_ticket_variation_key').val(parseInt(key)+1);
289
+ });
290
 
291
  $('.mec-form-row.mec-available-color-row span').on('click', function()
292
  {
374
  jQuery('#mec_bookings_limit').toggleClass('mec-util-hidden');
375
  }
376
 
377
+ function mec_hourly_schedule_listeners()
378
  {
379
+ jQuery('.mec-add-hourly-schedule-button').off('click').on('click', function()
380
+ {
381
+ var day = jQuery(this).data('day');
382
+ var key = jQuery('#mec_new_hourly_schedule_key'+day).val();
383
+ var html = jQuery('#mec_new_hourly_schedule_raw'+day).html().replace(/:i:/g, key).replace(/:d:/g, day);
384
+
385
+ jQuery('#mec_hourly_schedules'+day).append(html);
386
+ jQuery('#mec_new_hourly_schedule_key'+day).val(parseInt(key)+1);
387
+ });
388
+ }
389
+
390
+ function mec_hourly_schedule_remove(day, i)
391
+ {
392
+ jQuery("#mec_hourly_schedule_row"+day+'_'+i).remove();
393
  }
394
 
395
  function mec_ticket_remove(i)
414
  jQuery("#mec_fee_row"+key).remove();
415
  }
416
 
417
+ function mec_remove_ticket_variation(key)
418
+ {
419
+ jQuery("#mec_ticket_variation_row"+key).remove();
420
+ }
421
+
422
  function mec_reg_fields_option_listeners()
423
  {
424
  jQuery('button.mec-reg-field-add-option').on('click', function()
assets/js/frontend.js CHANGED
@@ -450,8 +450,8 @@ var mecSingleEventDisplayer = {
450
  settings.skin = skin;
451
 
452
  // Add Loading Class
453
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
454
- jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
455
 
456
  $.ajax(
457
  {
@@ -475,8 +475,8 @@ var mecSingleEventDisplayer = {
475
  function search()
476
  {
477
  // Add Loading Class
478
- if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
479
- jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
480
 
481
  $.ajax(
482
  {
@@ -982,12 +982,20 @@ var mecSingleEventDisplayer = {
982
  {
983
  sed();
984
  }
 
 
 
 
 
 
 
 
985
  }
986
 
987
  function sed()
988
  {
989
  // Single Event Display
990
- $("#mec_skin_"+settings.id+" .mec-event-title a").off('click').on('click', function(e)
991
  {
992
  e.preventDefault();
993
  var href = $(this).attr('href');
@@ -1171,7 +1179,7 @@ var mecSingleEventDisplayer = {
1171
  toggleMonth(response.current_month.id);
1172
 
1173
  // Set active week
1174
- setThisWeek(response.week_id);
1175
  },
1176
  error: function()
1177
  {
@@ -1385,11 +1393,7 @@ var mecSingleEventDisplayer = {
1385
  function initDaysSlider(month_id, day_id)
1386
  {
1387
  // Check RTL website
1388
- if ($('body').hasClass('rtl')) {
1389
- var owl_rtl = true;
1390
- } else {
1391
- var owl_rtl = false;
1392
- }
1393
 
1394
  // Init Days slider
1395
  var owl = $("#mec-owl-calendar-d-table-"+settings.id+"-"+month_id);
@@ -1465,7 +1469,6 @@ var mecSingleEventDisplayer = {
1465
 
1466
  active_year = response.current_month.year;
1467
  active_month = response.current_month.month;
1468
- active_day = '01';
1469
 
1470
  // Toggle Month
1471
  toggleMonth(response.current_month.id, ''+active_year+active_month+active_day);
@@ -2054,8 +2057,19 @@ var mecSingleEventDisplayer = {
2054
  });
2055
 
2056
  // Accordion Toggle
2057
- if(settings.style === 'accordion') accordion();
2058
-
 
 
 
 
 
 
 
 
 
 
 
2059
  // Single Event Method
2060
  if(settings.sed_method != '0')
2061
  {
@@ -2063,6 +2077,49 @@ var mecSingleEventDisplayer = {
2063
  }
2064
  }
2065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2066
  function accordion()
2067
  {
2068
  // Accordion Toggle
@@ -2142,7 +2199,12 @@ var mecSingleEventDisplayer = {
2142
  }
2143
 
2144
  // Accordion Toggle
2145
- if(settings.style === 'accordion') accordion();
 
 
 
 
 
2146
  }
2147
  },
2148
  error: function()
@@ -2207,7 +2269,12 @@ var mecSingleEventDisplayer = {
2207
  }
2208
 
2209
  // Accordion Toggle
2210
- if(settings.style === 'accordion') accordion();
 
 
 
 
 
2211
  }
2212
  },
2213
  error: function()
450
  settings.skin = skin;
451
 
452
  // Add Loading Class
453
+ if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
454
+ jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
455
 
456
  $.ajax(
457
  {
475
  function search()
476
  {
477
  // Add Loading Class
478
+ if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
479
+ jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
480
 
481
  $.ajax(
482
  {
982
  {
983
  sed();
984
  }
985
+
986
+ if (settings.style == 'novel')
987
+ {
988
+ $('.mec-single-event-novel').colourBrightness();
989
+ $('.mec-single-event-novel').each(function () {
990
+ $(this).colourBrightness()
991
+ });
992
+ }
993
  }
994
 
995
  function sed()
996
  {
997
  // Single Event Display
998
+ $("#mec_skin_" + settings.id + " .mec-event-title a,#mec_skin_" + settings.id +" .event-single-link-novel").off('click').on('click', function(e)
999
  {
1000
  e.preventDefault();
1001
  var href = $(this).attr('href');
1179
  toggleMonth(response.current_month.id);
1180
 
1181
  // Set active week
1182
+ setThisWeek(active_week);
1183
  },
1184
  error: function()
1185
  {
1393
  function initDaysSlider(month_id, day_id)
1394
  {
1395
  // Check RTL website
1396
+ var owl_rtl = $('body').hasClass('rtl') ? true : false;
 
 
 
 
1397
 
1398
  // Init Days slider
1399
  var owl = $("#mec-owl-calendar-d-table-"+settings.id+"-"+month_id);
1469
 
1470
  active_year = response.current_month.year;
1471
  active_month = response.current_month.month;
 
1472
 
1473
  // Toggle Month
1474
  toggleMonth(response.current_month.id, ''+active_year+active_month+active_day);
2057
  });
2058
 
2059
  // Accordion Toggle
2060
+ if(settings.style === 'accordion')
2061
+ {
2062
+ if(settings.toggle_month_divider)
2063
+ {
2064
+ $('#mec_skin_'+settings.id+' .mec-month-divider:first-of-type').addClass('active');
2065
+ $('#mec_skin_' + settings.id + ' .mec-month-divider:first-of-type').find('i').removeClass('mec-sl-arrow-down').addClass('mec-sl-arrow-up');
2066
+
2067
+ toggle();
2068
+ }
2069
+
2070
+ accordion();
2071
+ }
2072
+
2073
  // Single Event Method
2074
  if(settings.sed_method != '0')
2075
  {
2077
  }
2078
  }
2079
 
2080
+ function toggle()
2081
+ {
2082
+ $('#mec_skin_'+settings.id+' .mec-month-divider').off("click").on("click", function(event)
2083
+ {
2084
+ event.preventDefault();
2085
+
2086
+ var status = $(this).hasClass('active');
2087
+
2088
+ // Remove Active Style of Month Divider
2089
+ $('#mec_skin_'+settings.id+' .mec-month-divider').removeClass('active');
2090
+
2091
+ // Hide All Events
2092
+ $('#mec_skin_'+settings.id+' .mec-divider-toggle').slideUp('fast');
2093
+
2094
+ if(status)
2095
+ {
2096
+ $(this).removeClass('active');
2097
+ $('.mec-month-divider').find('i').removeClass('mec-sl-arrow-up').addClass('mec-sl-arrow-down');
2098
+ }
2099
+ else
2100
+ {
2101
+ $(this).addClass('active');
2102
+ $('.mec-month-divider').find('i').removeClass('mec-sl-arrow-up').addClass('mec-sl-arrow-down')
2103
+ $(this).find('i').removeClass('mec-sl-arrow-down').addClass('mec-sl-arrow-up');
2104
+
2105
+ var month = $(this).data('toggle-divider');
2106
+ $('#mec_skin_'+settings.id+' .'+month).slideDown('fast');
2107
+ }
2108
+ });
2109
+ }
2110
+
2111
+ function toggleLoadmore()
2112
+ {
2113
+ $('#mec_skin_'+settings.id+' .mec-month-divider:not(.active)').each(function()
2114
+ {
2115
+ var month = $(this).data('toggle-divider');
2116
+ $('#mec_skin_'+settings.id+' .'+month).slideUp('fast');
2117
+ });
2118
+
2119
+ // Register Listeners
2120
+ toggle();
2121
+ }
2122
+
2123
  function accordion()
2124
  {
2125
  // Accordion Toggle
2199
  }
2200
 
2201
  // Accordion Toggle
2202
+ if(settings.style === 'accordion')
2203
+ {
2204
+ if(settings.toggle_month_divider) toggleLoadmore();
2205
+
2206
+ accordion();
2207
+ }
2208
  }
2209
  },
2210
  error: function()
2269
  }
2270
 
2271
  // Accordion Toggle
2272
+ if(settings.style === 'accordion')
2273
+ {
2274
+ if(settings.toggle_month_divider) toggle();
2275
+
2276
+ accordion();
2277
+ }
2278
  }
2279
  },
2280
  error: function()
assets/js/isotope.pkgd.min.js CHANGED
@@ -1,12 +1,12 @@
1
  /*!
2
- * Isotope PACKAGED v3.0.4
3
  *
4
  * Licensed GPLv3 for open source use
5
  * or Isotope Commercial License for commercial use
6
  *
7
- * http://isotope.metafizzy.co
8
- * Copyright 2017 Metafizzy
9
  */
10
 
11
- !function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,s,a){function u(t,e,o){var n,s="$()."+i+'("'+e+'")';return t.each(function(t,u){var h=a.data(u,i);if(!h)return void r(i+" not initialized. Cannot call methods, i.e. "+s);var d=h[e];if(!d||"_"==e.charAt(0))return void r(s+" is not a valid method");var l=d.apply(h,o);n=void 0===n?l:n}),void 0!==n?n:t}function h(t,e){t.each(function(t,o){var n=a.data(o,i);n?(n.option(e),n._init()):(n=new s(o,e),a.data(o,i,n))})}a=a||e||t.jQuery,a&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=n.call(arguments,1);return u(this,t,e)}return h(this,t),this},o(a))}function o(t){!t||t&&t.bridget||(t.bridget=i)}var n=Array.prototype.slice,s=t.console,r="undefined"==typeof s?function(){}:function(t){s.error(t)};return o(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return o.indexOf(e)==-1&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},o=i[t]=i[t]||{};return o[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return o!=-1&&i.splice(o,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=0,n=i[o];e=e||[];for(var s=this._onceEvents&&this._onceEvents[t];n;){var r=s&&s[n];r&&(this.off(t,n),delete s[n]),n.apply(this,e),o+=r?0:1,n=i[o]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("get-size/get-size",[],function(){return e()}):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=t.indexOf("%")==-1&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<h;e++){var i=u[e];t[i]=0}return t}function o(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),e}function n(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var n=o(e);s.isBoxSizeOuter=r=200==t(n.width),i.removeChild(e)}}function s(e){if(n(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var s=o(e);if("none"==s.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==s.boxSizing,l=0;l<h;l++){var f=u[l],c=s[f],m=parseFloat(c);a[f]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,y=a.paddingTop+a.paddingBottom,g=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,I=a.borderTopWidth+a.borderBottomWidth,z=d&&r,x=t(s.width);x!==!1&&(a.width=x+(z?0:p+_));var S=t(s.height);return S!==!1&&(a.height=S+(z?0:y+I)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(y+I),a.outerWidth=a.width+g,a.outerHeight=a.height+v,a}}var r,a="undefined"==typeof console?e:function(t){console.error(t)},u=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],h=u.length,d=!1;return s}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var o=e[i],n=o+"MatchesSelector";if(t[n])return n}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e},i.makeArray=function(t){var e=[];if(Array.isArray(t))e=t;else if(t&&"object"==typeof t&&"number"==typeof t.length)for(var i=0;i<t.length;i++)e.push(t[i]);else e.push(t);return e},i.removeFrom=function(t,e){var i=t.indexOf(e);i!=-1&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,o){t=i.makeArray(t);var n=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!o)return void n.push(t);e(t,o)&&n.push(t);for(var i=t.querySelectorAll(o),s=0;s<i.length;s++)n.push(i[s])}}),n},i.debounceMethod=function(t,e,i){var o=t.prototype[e],n=e+"Timeout";t.prototype[e]=function(){var t=this[n];t&&clearTimeout(t);var e=arguments,s=this;this[n]=setTimeout(function(){o.apply(s,e),delete s[n]},i||100)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var o=t.console;return i.htmlInit=function(e,n){i.docReady(function(){var s=i.toDashed(n),r="data-"+s,a=document.querySelectorAll("["+r+"]"),u=document.querySelectorAll(".js-"+s),h=i.makeArray(a).concat(i.makeArray(u)),d=r+"-options",l=t.jQuery;h.forEach(function(t){var i,s=t.getAttribute(r)||t.getAttribute(d);try{i=s&&JSON.parse(s)}catch(a){return void(o&&o.error("Error parsing "+r+" on "+t.className+": "+a))}var u=new e(t,i);l&&l.data(t,n,u)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){"use strict";function i(t){for(var e in t)return!1;return e=null,!0}function o(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}function n(t){return t.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()})}var s=document.documentElement.style,r="string"==typeof s.transition?"transition":"WebkitTransition",a="string"==typeof s.transform?"transform":"WebkitTransform",u={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[r],h={transform:a,transition:r,transitionDuration:r+"Duration",transitionProperty:r+"Property",transitionDelay:r+"Delay"},d=o.prototype=Object.create(t.prototype);d.constructor=o,d._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},d.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},d.getSize=function(){this.size=e(this.element)},d.css=function(t){var e=this.element.style;for(var i in t){var o=h[i]||i;e[o]=t[i]}},d.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),o=t[e?"left":"right"],n=t[i?"top":"bottom"],s=this.layout.size,r=o.indexOf("%")!=-1?parseFloat(o)/100*s.width:parseInt(o,10),a=n.indexOf("%")!=-1?parseFloat(n)/100*s.height:parseInt(n,10);r=isNaN(r)?0:r,a=isNaN(a)?0:a,r-=e?s.paddingLeft:s.paddingRight,a-=i?s.paddingTop:s.paddingBottom,this.position.x=r,this.position.y=a},d.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop"),n=i?"paddingLeft":"paddingRight",s=i?"left":"right",r=i?"right":"left",a=this.position.x+t[n];e[s]=this.getXValue(a),e[r]="";var u=o?"paddingTop":"paddingBottom",h=o?"top":"bottom",d=o?"bottom":"top",l=this.position.y+t[u];e[h]=this.getYValue(l),e[d]="",this.css(e),this.emitEvent("layout",[this])},d.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},d.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},d._transitionTo=function(t,e){this.getPosition();var i=this.position.x,o=this.position.y,n=parseInt(t,10),s=parseInt(e,10),r=n===this.position.x&&s===this.position.y;if(this.setPosition(t,e),r&&!this.isTransitioning)return void this.layoutPosition();var a=t-i,u=e-o,h={};h.transform=this.getTranslate(a,u),this.transition({to:h,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},d.getTranslate=function(t,e){var i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop");return t=i?t:-t,e=o?e:-e,"translate3d("+t+"px, "+e+"px, 0)"},d.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},d.moveTo=d._transitionTo,d.setPosition=function(t,e){this.position.x=parseInt(t,10),this.position.y=parseInt(e,10)},d._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},d.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);var o=this.element.offsetHeight;o=null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var l="opacity,"+n(a);d.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:l,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(u,this,!1)}},d.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},d.onotransitionend=function(t){this.ontransitionend(t)};var f={"-webkit-transform":"transform"};d.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,o=f[t.propertyName]||t.propertyName;if(delete e.ingProperties[o],i(e.ingProperties)&&this.disableTransition(),o in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[o]),o in e.onEnd){var n=e.onEnd[o];n.call(this),delete e.onEnd[o]}this.emitEvent("transitionEnd",[this])}},d.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(u,this,!1),this.isTransitioning=!1},d._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var c={transitionProperty:"",transitionDuration:"",transitionDelay:""};return d.removeTransitionStyles=function(){this.css(c)},d.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},d.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},d.remove=function(){return r&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),void this.hide()):void this.removeElem()},d.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("visibleStyle");e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},d.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},d.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},d.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("hiddenStyle");e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},d.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},d.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},o}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,o,n,s){return e(t,i,o,n,s)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,o,n){"use strict";function s(t,e){var i=o.getQueryElement(t);if(!i)return void(u&&u.error("Bad element for "+this.constructor.namespace+": "+(i||t)));this.element=i,h&&(this.$element=h(this.element)),this.options=o.extend({},this.constructor.defaults),this.option(e);var n=++l;this.element.outlayerGUID=n,f[n]=this,this._create();var s=this._getOption("initLayout");s&&this.layout()}function r(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}function a(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],o=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var n=m[o]||1;return i*n}var u=t.console,h=t.jQuery,d=function(){},l=0,f={};s.namespace="outlayer",s.Item=n,s.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var c=s.prototype;o.extend(c,e.prototype),c.option=function(t){o.extend(this.options,t)},c._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},s.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},c._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),o.extend(this.element.style,this.options.containerStyle);var t=this._getOption("resize");t&&this.bindResize()},c.reloadItems=function(){this.items=this._itemize(this.element.children)},c._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,o=[],n=0;n<e.length;n++){var s=e[n],r=new i(s,this);o.push(r)}return o},c._filterFindItemElements=function(t){return o.filterFindElements(t,this.options.itemSelector)},c.getItemElements=function(){return this.items.map(function(t){return t.element})},c.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},c._init=c.layout,c._resetLayout=function(){this.getSize()},c.getSize=function(){this.size=i(this.element)},c._getMeasurement=function(t,e){var o,n=this.options[t];n?("string"==typeof n?o=this.element.querySelector(n):n instanceof HTMLElement&&(o=n),this[t]=o?i(o)[e]:n):this[t]=0},c.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},c._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},c._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var o=this._getItemLayoutPosition(t);o.item=t,o.isInstant=e||t.isLayoutInstant,i.push(o)},this),this._processLayoutQueue(i)}},c._getItemLayoutPosition=function(){return{x:0,y:0}},c._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},c.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=a(t),this.stagger)},c._positionItem=function(t,e,i,o,n){o?t.goTo(e,i):(t.stagger(n*this.stagger),t.moveTo(e,i))},c._postLayout=function(){this.resizeContainer()},c.resizeContainer=function(){var t=this._getOption("resizeContainer");if(t){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},c._getContainerSize=d,c._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},c._emitCompleteOnItems=function(t,e){function i(){n.dispatchEvent(t+"Complete",null,[e])}function o(){r++,r==s&&i()}var n=this,s=e.length;if(!e||!s)return void i();var r=0;e.forEach(function(e){e.once(t,o)})},c.dispatchEvent=function(t,e,i){var o=e?[e].concat(i):i;if(this.emitEvent(t,o),h)if(this.$element=this.$element||h(this.element),e){var n=h.Event(e);n.type=t,this.$element.trigger(n,i)}else this.$element.trigger(t,i)},c.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},c.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},c.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},c.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){o.removeFrom(this.stamps,t),this.unignore(t)},this)},c._find=function(t){if(t)return"string"==typeof t&&(t=this.element.querySelectorAll(t)),t=o.makeArray(t)},c._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},c._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},c._manageStamp=d,c._getElementOffset=function(t){var e=t.getBoundingClientRect(),o=this._boundingRect,n=i(t),s={left:e.left-o.left-n.marginLeft,top:e.top-o.top-n.marginTop,right:o.right-e.right-n.marginRight,bottom:o.bottom-e.bottom-n.marginBottom};return s},c.handleEvent=o.handleEvent,c.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},c.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},c.onresize=function(){this.resize()},o.debounceMethod(s,"onresize",100),c.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},c.needsResizeLayout=function(){var t=i(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},c.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},c.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},c.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},c.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},c.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},c.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},c.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},c.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},c.getItems=function(t){t=o.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},c.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),o.removeFrom(this.items,t)},this)},c.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete f[e],delete this.element.outlayerGUID,h&&h.removeData(this.element,this.constructor.namespace)},s.data=function(t){t=o.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&f[e]},s.create=function(t,e){var i=r(s);return i.defaults=o.extend({},s.defaults),o.extend(i.defaults,e),i.compatOptions=o.extend({},s.compatOptions),i.namespace=t,i.data=s.data,i.Item=r(n),o.htmlInit(i,t),h&&h.bridget&&h.bridget(t,i),i};var m={ms:1,s:1e3};return s.Item=n,s}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/item",["outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){"use strict";function e(){t.Item.apply(this,arguments)}var i=e.prototype=Object.create(t.Item.prototype),o=i._create;i._create=function(){this.id=this.layout.itemGUID++,o.call(this),this.sortData={}},i.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var t=this.layout.options.getSortData,e=this.layout._sorters;for(var i in t){var o=e[i];this.sortData[i]=o(this.element,this)}}};var n=i.destroy;return i.destroy=function(){n.apply(this,arguments),this.css({display:""})},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-mode",["get-size/get-size","outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("get-size"),require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){"use strict";function i(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)}var o=i.prototype,n=["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout","_getOption"];return n.forEach(function(t){o[t]=function(){return e.prototype[t].apply(this.isotope,arguments)}}),o.needsVerticalResizeLayout=function(){var e=t(this.isotope.element),i=this.isotope.size&&e;return i&&e.innerHeight!=this.isotope.size.innerHeight},o._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},o.getColumnWidth=function(){this.getSegmentSize("column","Width")},o.getRowHeight=function(){this.getSegmentSize("row","Height")},o.getSegmentSize=function(t,e){var i=t+e,o="outer"+e;if(this._getMeasurement(i,o),!this[i]){var n=this.getFirstItemSize();this[i]=n&&n[o]||this.isotope.size["inner"+e]}},o.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},o.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},o.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},i.modes={},i.create=function(t,e){function n(){i.apply(this,arguments)}return n.prototype=Object.create(o),n.prototype.constructor=n,e&&(n.options=e),n.prototype.namespace=t,i.modes[t]=n,n},i}),function(t,e){"function"==typeof define&&define.amd?define("masonry/masonry",["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var i=t.create("masonry");i.compatOptions.fitWidth="isFitWidth";var o=i.prototype;return o._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},o.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var o=this.columnWidth+=this.gutter,n=this.containerWidth+this.gutter,s=n/o,r=o-n%o,a=r&&r<1?"round":"floor";s=Math[a](s),this.cols=Math.max(s,1)},o.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,o=e(i);this.containerWidth=o&&o.innerWidth},o._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&e<1?"round":"ceil",o=Math[i](t.size.outerWidth/this.columnWidth);o=Math.min(o,this.cols);for(var n=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",s=this[n](o,t),r={x:this.columnWidth*s.col,y:s.y},a=s.y+t.size.outerHeight,u=o+s.col,h=s.col;h<u;h++)this.colYs[h]=a;return r},o._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},o._getTopColGroup=function(t){if(t<2)return this.colYs;for(var e=[],i=this.cols+1-t,o=0;o<i;o++)e[o]=this._getColGroupY(o,t);return e},o._getColGroupY=function(t,e){if(e<2)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},o._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,o=t>1&&i+t>this.cols;i=o?0:i;var n=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=n?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},o._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this._getOption("originLeft"),s=n?o.left:o.right,r=s+i.outerWidth,a=Math.floor(s/this.columnWidth);a=Math.max(0,a);var u=Math.floor(r/this.columnWidth);u-=r%this.columnWidth?0:1,u=Math.min(this.cols-1,u);for(var h=this._getOption("originTop"),d=(h?o.top:o.bottom)+i.outerHeight,l=a;l<=u;l++)this.colYs[l]=Math.max(d,this.colYs[l])},o._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},o._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-modes/masonry",["../layout-mode","masonry/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype,n={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)n[s]||(o[s]=e.prototype[s]);var r=o.measureColumns;o.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=o._getOption;return o._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope/js/item","isotope/js/layout-mode","isotope/js/layout-modes/masonry","isotope/js/layout-modes/fit-rows","isotope/js/layout-modes/vertical"],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope/js/item"),require("isotope/js/layout-mode"),require("isotope/js/layout-modes/masonry"),require("isotope/js/layout-modes/fit-rows"),require("isotope/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,s,r){function a(t,e){return function(i,o){for(var n=0;n<t.length;n++){var s=t[n],r=i.sortData[s],a=o.sortData[s];if(r>a||r<a){var u=void 0!==e[s]?e[s]:e,h=u?1:-1;return(r>a?1:-1)*h}}return 0}}var u=t.jQuery,h=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},d=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});d.Item=s,d.LayoutMode=r;var l=d.prototype;l._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i<t.length;i++){var o=t[i];o.id=this.itemGUID++}return this._updateItemsSortData(t),t},l._initLayoutMode=function(t){var e=r.modes[t],i=this.options[t]||{};this.options[t]=e.options?n.extend(e.options,i):i,this.modes[t]=new e(this)},l.layout=function(){return!this._isLayoutInited&&this._getOption("initLayout")?void this.arrange():void this._layout()},l._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},l.arrange=function(t){this.option(t),this._getIsInstant();var e=this._filter(this.items);this.filteredItems=e.matches,this._bindArrangeComplete(),this._isInstant?this._noTransition(this._hideReveal,[e]):this._hideReveal(e),this._sort(),this._layout()},l._init=l.arrange,l._hideReveal=function(t){this.reveal(t.needReveal),this.hide(t.needHide)},l._getIsInstant=function(){var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;return this._isInstant=e,e},l._bindArrangeComplete=function(){function t(){e&&i&&o&&n.dispatchEvent("arrangeComplete",null,[n.filteredItems])}var e,i,o,n=this;this.once("layoutComplete",function(){e=!0,t()}),this.once("hideComplete",function(){i=!0,t()}),this.once("revealComplete",function(){o=!0,t()})},l._filter=function(t){var e=this.options.filter;e=e||"*";for(var i=[],o=[],n=[],s=this._getFilterTest(e),r=0;r<t.length;r++){var a=t[r];if(!a.isIgnored){var u=s(a);u&&i.push(a),u&&a.isHidden?o.push(a):u||a.isHidden||n.push(a)}}return{matches:i,needReveal:o,needHide:n}},l._getFilterTest=function(t){return u&&this.options.isJQueryFiltering?function(e){return u(e.element).is(t)}:"function"==typeof t?function(e){return t(e.element)}:function(e){return o(e.element,t)}},l.updateSortData=function(t){
12
- var e;t?(t=n.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},l._getSorters=function(){var t=this.options.getSortData;for(var e in t){var i=t[e];this._sorters[e]=f(i)}},l._updateItemsSortData=function(t){for(var e=t&&t.length,i=0;e&&i<e;i++){var o=t[i];o.updateSortData()}};var f=function(){function t(t){if("string"!=typeof t)return t;var i=h(t).split(" "),o=i[0],n=o.match(/^\[(.+)\]$/),s=n&&n[1],r=e(s,o),a=d.sortDataParsers[i[1]];return t=a?function(t){return t&&a(r(t))}:function(t){return t&&r(t)}}function e(t,e){return t?function(e){return e.getAttribute(t)}:function(t){var i=t.querySelector(e);return i&&i.textContent}}return t}();d.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},l._sort=function(){if(this.options.sortBy){var t=n.makeArray(this.options.sortBy);this._getIsSameSortBy(t)||(this.sortHistory=t.concat(this.sortHistory));var e=a(this.sortHistory,this.options.sortAscending);this.filteredItems.sort(e)}},l._getIsSameSortBy=function(t){for(var e=0;e<t.length;e++)if(t[e]!=this.sortHistory[e])return!1;return!0},l._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error("No layout mode: "+t);return e.options=this.options[t],e},l._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},l._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},l._manageStamp=function(t){this._mode()._manageStamp(t)},l._getContainerSize=function(){return this._mode()._getContainerSize()},l.needsResizeLayout=function(){return this._mode().needsResizeLayout()},l.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},l.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},l._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},l.insert=function(t){var e=this.addItems(t);if(e.length){var i,o,n=e.length;for(i=0;i<n;i++)o=e[i],this.element.appendChild(o.element);var s=this._filter(e).matches;for(i=0;i<n;i++)e[i].isLayoutInstant=!0;for(this.arrange(),i=0;i<n;i++)delete e[i].isLayoutInstant;this.reveal(s)}};var c=l.remove;return l.remove=function(t){t=n.makeArray(t);var e=this.getItems(t);c.call(this,t);for(var i=e&&e.length,o=0;i&&o<i;o++){var s=e[o];n.removeFrom(this.filteredItems,s)}},l.shuffle=function(){for(var t=0;t<this.items.length;t++){var e=this.items[t];e.sortData.random=Math.random()}this.options.sortBy="random",this._sort(),this._layout()},l._noTransition=function(t,e){var i=this.options.transitionDuration;this.options.transitionDuration=0;var o=t.apply(this,e);return this.options.transitionDuration=i,o},l.getFilteredItemElements=function(){return this.filteredItems.map(function(t){return t.element})},d});
1
  /*!
2
+ * Isotope PACKAGED v3.0.6
3
  *
4
  * Licensed GPLv3 for open source use
5
  * or Isotope Commercial License for commercial use
6
  *
7
+ * https://isotope.metafizzy.co
8
+ * Copyright 2010-2018 Metafizzy
9
  */
10
 
11
+ !function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,s,a){function u(t,e,o){var n,s="$()."+i+'("'+e+'")';return t.each(function(t,u){var h=a.data(u,i);if(!h)return void r(i+" not initialized. Cannot call methods, i.e. "+s);var d=h[e];if(!d||"_"==e.charAt(0))return void r(s+" is not a valid method");var l=d.apply(h,o);n=void 0===n?l:n}),void 0!==n?n:t}function h(t,e){t.each(function(t,o){var n=a.data(o,i);n?(n.option(e),n._init()):(n=new s(o,e),a.data(o,i,n))})}a=a||e||t.jQuery,a&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=n.call(arguments,1);return u(this,t,e)}return h(this,t),this},o(a))}function o(t){!t||t&&t.bridget||(t.bridget=i)}var n=Array.prototype.slice,s=t.console,r="undefined"==typeof s?function(){}:function(t){s.error(t)};return o(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return o.indexOf(e)==-1&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},o=i[t]=i[t]||{};return o[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return o!=-1&&i.splice(o,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var o=this._onceEvents&&this._onceEvents[t],n=0;n<i.length;n++){var s=i[n],r=o&&o[s];r&&(this.off(t,s),delete o[s]),s.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t}),function(t,e){"function"==typeof define&&define.amd?define("get-size/get-size",e):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=t.indexOf("%")==-1&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<h;e++){var i=u[e];t[i]=0}return t}function o(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),e}function n(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var n=o(e);r=200==Math.round(t(n.width)),s.isBoxSizeOuter=r,i.removeChild(e)}}function s(e){if(n(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var s=o(e);if("none"==s.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==s.boxSizing,l=0;l<h;l++){var f=u[l],c=s[f],m=parseFloat(c);a[f]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,y=a.paddingTop+a.paddingBottom,g=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,z=a.borderTopWidth+a.borderBottomWidth,I=d&&r,x=t(s.width);x!==!1&&(a.width=x+(I?0:p+_));var S=t(s.height);return S!==!1&&(a.height=S+(I?0:y+z)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(y+z),a.outerWidth=a.width+g,a.outerHeight=a.height+v,a}}var r,a="undefined"==typeof console?e:function(t){console.error(t)},u=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],h=u.length,d=!1;return s}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var o=e[i],n=o+"MatchesSelector";if(t[n])return n}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e};var o=Array.prototype.slice;i.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?o.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);i!=-1&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,o){t=i.makeArray(t);var n=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!o)return void n.push(t);e(t,o)&&n.push(t);for(var i=t.querySelectorAll(o),s=0;s<i.length;s++)n.push(i[s])}}),n},i.debounceMethod=function(t,e,i){i=i||100;var o=t.prototype[e],n=e+"Timeout";t.prototype[e]=function(){var t=this[n];clearTimeout(t);var e=arguments,s=this;this[n]=setTimeout(function(){o.apply(s,e),delete s[n]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var n=t.console;return i.htmlInit=function(e,o){i.docReady(function(){var s=i.toDashed(o),r="data-"+s,a=document.querySelectorAll("["+r+"]"),u=document.querySelectorAll(".js-"+s),h=i.makeArray(a).concat(i.makeArray(u)),d=r+"-options",l=t.jQuery;h.forEach(function(t){var i,s=t.getAttribute(r)||t.getAttribute(d);try{i=s&&JSON.parse(s)}catch(a){return void(n&&n.error("Error parsing "+r+" on "+t.className+": "+a))}var u=new e(t,i);l&&l.data(t,o,u)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){"use strict";function i(t){for(var e in t)return!1;return e=null,!0}function o(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}function n(t){return t.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()})}var s=document.documentElement.style,r="string"==typeof s.transition?"transition":"WebkitTransition",a="string"==typeof s.transform?"transform":"WebkitTransform",u={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[r],h={transform:a,transition:r,transitionDuration:r+"Duration",transitionProperty:r+"Property",transitionDelay:r+"Delay"},d=o.prototype=Object.create(t.prototype);d.constructor=o,d._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},d.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},d.getSize=function(){this.size=e(this.element)},d.css=function(t){var e=this.element.style;for(var i in t){var o=h[i]||i;e[o]=t[i]}},d.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),o=t[e?"left":"right"],n=t[i?"top":"bottom"],s=parseFloat(o),r=parseFloat(n),a=this.layout.size;o.indexOf("%")!=-1&&(s=s/100*a.width),n.indexOf("%")!=-1&&(r=r/100*a.height),s=isNaN(s)?0:s,r=isNaN(r)?0:r,s-=e?a.paddingLeft:a.paddingRight,r-=i?a.paddingTop:a.paddingBottom,this.position.x=s,this.position.y=r},d.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop"),n=i?"paddingLeft":"paddingRight",s=i?"left":"right",r=i?"right":"left",a=this.position.x+t[n];e[s]=this.getXValue(a),e[r]="";var u=o?"paddingTop":"paddingBottom",h=o?"top":"bottom",d=o?"bottom":"top",l=this.position.y+t[u];e[h]=this.getYValue(l),e[d]="",this.css(e),this.emitEvent("layout",[this])},d.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},d.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},d._transitionTo=function(t,e){this.getPosition();var i=this.position.x,o=this.position.y,n=t==this.position.x&&e==this.position.y;if(this.setPosition(t,e),n&&!this.isTransitioning)return void this.layoutPosition();var s=t-i,r=e-o,a={};a.transform=this.getTranslate(s,r),this.transition({to:a,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},d.getTranslate=function(t,e){var i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop");return t=i?t:-t,e=o?e:-e,"translate3d("+t+"px, "+e+"px, 0)"},d.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},d.moveTo=d._transitionTo,d.setPosition=function(t,e){this.position.x=parseFloat(t),this.position.y=parseFloat(e)},d._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},d.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);var o=this.element.offsetHeight;o=null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var l="opacity,"+n(a);d.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:l,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(u,this,!1)}},d.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},d.onotransitionend=function(t){this.ontransitionend(t)};var f={"-webkit-transform":"transform"};d.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,o=f[t.propertyName]||t.propertyName;if(delete e.ingProperties[o],i(e.ingProperties)&&this.disableTransition(),o in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[o]),o in e.onEnd){var n=e.onEnd[o];n.call(this),delete e.onEnd[o]}this.emitEvent("transitionEnd",[this])}},d.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(u,this,!1),this.isTransitioning=!1},d._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var c={transitionProperty:"",transitionDuration:"",transitionDelay:""};return d.removeTransitionStyles=function(){this.css(c)},d.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},d.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},d.remove=function(){return r&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),void this.hide()):void this.removeElem()},d.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("visibleStyle");e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},d.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},d.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},d.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("hiddenStyle");e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},d.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},d.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},o}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,o,n,s){return e(t,i,o,n,s)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,o,n){"use strict";function s(t,e){var i=o.getQueryElement(t);if(!i)return void(u&&u.error("Bad element for "+this.constructor.namespace+": "+(i||t)));this.element=i,h&&(this.$element=h(this.element)),this.options=o.extend({},this.constructor.defaults),this.option(e);var n=++l;this.element.outlayerGUID=n,f[n]=this,this._create();var s=this._getOption("initLayout");s&&this.layout()}function r(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}function a(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],o=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var n=m[o]||1;return i*n}var u=t.console,h=t.jQuery,d=function(){},l=0,f={};s.namespace="outlayer",s.Item=n,s.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var c=s.prototype;o.extend(c,e.prototype),c.option=function(t){o.extend(this.options,t)},c._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},s.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},c._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),o.extend(this.element.style,this.options.containerStyle);var t=this._getOption("resize");t&&this.bindResize()},c.reloadItems=function(){this.items=this._itemize(this.element.children)},c._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,o=[],n=0;n<e.length;n++){var s=e[n],r=new i(s,this);o.push(r)}return o},c._filterFindItemElements=function(t){return o.filterFindElements(t,this.options.itemSelector)},c.getItemElements=function(){return this.items.map(function(t){return t.element})},c.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},c._init=c.layout,c._resetLayout=function(){this.getSize()},c.getSize=function(){this.size=i(this.element)},c._getMeasurement=function(t,e){var o,n=this.options[t];n?("string"==typeof n?o=this.element.querySelector(n):n instanceof HTMLElement&&(o=n),this[t]=o?i(o)[e]:n):this[t]=0},c.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},c._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},c._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var o=this._getItemLayoutPosition(t);o.item=t,o.isInstant=e||t.isLayoutInstant,i.push(o)},this),this._processLayoutQueue(i)}},c._getItemLayoutPosition=function(){return{x:0,y:0}},c._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},c.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=a(t),this.stagger)},c._positionItem=function(t,e,i,o,n){o?t.goTo(e,i):(t.stagger(n*this.stagger),t.moveTo(e,i))},c._postLayout=function(){this.resizeContainer()},c.resizeContainer=function(){var t=this._getOption("resizeContainer");if(t){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},c._getContainerSize=d,c._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},c._emitCompleteOnItems=function(t,e){function i(){n.dispatchEvent(t+"Complete",null,[e])}function o(){r++,r==s&&i()}var n=this,s=e.length;if(!e||!s)return void i();var r=0;e.forEach(function(e){e.once(t,o)})},c.dispatchEvent=function(t,e,i){var o=e?[e].concat(i):i;if(this.emitEvent(t,o),h)if(this.$element=this.$element||h(this.element),e){var n=h.Event(e);n.type=t,this.$element.trigger(n,i)}else this.$element.trigger(t,i)},c.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},c.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},c.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},c.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){o.removeFrom(this.stamps,t),this.unignore(t)},this)},c._find=function(t){if(t)return"string"==typeof t&&(t=this.element.querySelectorAll(t)),t=o.makeArray(t)},c._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},c._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},c._manageStamp=d,c._getElementOffset=function(t){var e=t.getBoundingClientRect(),o=this._boundingRect,n=i(t),s={left:e.left-o.left-n.marginLeft,top:e.top-o.top-n.marginTop,right:o.right-e.right-n.marginRight,bottom:o.bottom-e.bottom-n.marginBottom};return s},c.handleEvent=o.handleEvent,c.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},c.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},c.onresize=function(){this.resize()},o.debounceMethod(s,"onresize",100),c.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},c.needsResizeLayout=function(){var t=i(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},c.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},c.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},c.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},c.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},c.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},c.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},c.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},c.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},c.getItems=function(t){t=o.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},c.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),o.removeFrom(this.items,t)},this)},c.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete f[e],delete this.element.outlayerGUID,h&&h.removeData(this.element,this.constructor.namespace)},s.data=function(t){t=o.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&f[e]},s.create=function(t,e){var i=r(s);return i.defaults=o.extend({},s.defaults),o.extend(i.defaults,e),i.compatOptions=o.extend({},s.compatOptions),i.namespace=t,i.data=s.data,i.Item=r(n),o.htmlInit(i,t),h&&h.bridget&&h.bridget(t,i),i};var m={ms:1,s:1e3};return s.Item=n,s}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/item",["outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){"use strict";function e(){t.Item.apply(this,arguments)}var i=e.prototype=Object.create(t.Item.prototype),o=i._create;i._create=function(){this.id=this.layout.itemGUID++,o.call(this),this.sortData={}},i.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var t=this.layout.options.getSortData,e=this.layout._sorters;for(var i in t){var o=e[i];this.sortData[i]=o(this.element,this)}}};var n=i.destroy;return i.destroy=function(){n.apply(this,arguments),this.css({display:""})},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-mode",["get-size/get-size","outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("get-size"),require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){"use strict";function i(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)}var o=i.prototype,n=["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout","_getOption"];return n.forEach(function(t){o[t]=function(){return e.prototype[t].apply(this.isotope,arguments)}}),o.needsVerticalResizeLayout=function(){var e=t(this.isotope.element),i=this.isotope.size&&e;return i&&e.innerHeight!=this.isotope.size.innerHeight},o._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},o.getColumnWidth=function(){this.getSegmentSize("column","Width")},o.getRowHeight=function(){this.getSegmentSize("row","Height")},o.getSegmentSize=function(t,e){var i=t+e,o="outer"+e;if(this._getMeasurement(i,o),!this[i]){var n=this.getFirstItemSize();this[i]=n&&n[o]||this.isotope.size["inner"+e]}},o.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},o.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},o.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},i.modes={},i.create=function(t,e){function n(){i.apply(this,arguments)}return n.prototype=Object.create(o),n.prototype.constructor=n,e&&(n.options=e),n.prototype.namespace=t,i.modes[t]=n,n},i}),function(t,e){"function"==typeof define&&define.amd?define("masonry-layout/masonry",["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var i=t.create("masonry");i.compatOptions.fitWidth="isFitWidth";var o=i.prototype;return o._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},o.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var o=this.columnWidth+=this.gutter,n=this.containerWidth+this.gutter,s=n/o,r=o-n%o,a=r&&r<1?"round":"floor";s=Math[a](s),this.cols=Math.max(s,1)},o.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,o=e(i);this.containerWidth=o&&o.innerWidth},o._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&e<1?"round":"ceil",o=Math[i](t.size.outerWidth/this.columnWidth);o=Math.min(o,this.cols);for(var n=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",s=this[n](o,t),r={x:this.columnWidth*s.col,y:s.y},a=s.y+t.size.outerHeight,u=o+s.col,h=s.col;h<u;h++)this.colYs[h]=a;return r},o._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},o._getTopColGroup=function(t){if(t<2)return this.colYs;for(var e=[],i=this.cols+1-t,o=0;o<i;o++)e[o]=this._getColGroupY(o,t);return e},o._getColGroupY=function(t,e){if(e<2)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},o._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,o=t>1&&i+t>this.cols;i=o?0:i;var n=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=n?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},o._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this._getOption("originLeft"),s=n?o.left:o.right,r=s+i.outerWidth,a=Math.floor(s/this.columnWidth);a=Math.max(0,a);var u=Math.floor(r/this.columnWidth);u-=r%this.columnWidth?0:1,u=Math.min(this.cols-1,u);for(var h=this._getOption("originTop"),d=(h?o.top:o.bottom)+i.outerHeight,l=a;l<=u;l++)this.colYs[l]=Math.max(d,this.colYs[l])},o._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},o._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/masonry",["../layout-mode","masonry-layout/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype,n={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)n[s]||(o[s]=e.prototype[s]);var r=o.measureColumns;o.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=o._getOption;return o._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope-layout/js/item","isotope-layout/js/layout-mode","isotope-layout/js/layout-modes/masonry","isotope-layout/js/layout-modes/fit-rows","isotope-layout/js/layout-modes/vertical"],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope-layout/js/item"),require("isotope-layout/js/layout-mode"),require("isotope-layout/js/layout-modes/masonry"),require("isotope-layout/js/layout-modes/fit-rows"),require("isotope-layout/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,s,r){function a(t,e){return function(i,o){for(var n=0;n<t.length;n++){var s=t[n],r=i.sortData[s],a=o.sortData[s];if(r>a||r<a){var u=void 0!==e[s]?e[s]:e,h=u?1:-1;return(r>a?1:-1)*h}}return 0}}var u=t.jQuery,h=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},d=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});d.Item=s,d.LayoutMode=r;var l=d.prototype;l._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i<t.length;i++){var o=t[i];o.id=this.itemGUID++}return this._updateItemsSortData(t),t},l._initLayoutMode=function(t){var e=r.modes[t],i=this.options[t]||{};this.options[t]=e.options?n.extend(e.options,i):i,this.modes[t]=new e(this)},l.layout=function(){return!this._isLayoutInited&&this._getOption("initLayout")?void this.arrange():void this._layout()},l._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},l.arrange=function(t){this.option(t),this._getIsInstant();var e=this._filter(this.items);this.filteredItems=e.matches,this._bindArrangeComplete(),this._isInstant?this._noTransition(this._hideReveal,[e]):this._hideReveal(e),this._sort(),this._layout()},l._init=l.arrange,l._hideReveal=function(t){this.reveal(t.needReveal),this.hide(t.needHide)},l._getIsInstant=function(){var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;return this._isInstant=e,e},l._bindArrangeComplete=function(){function t(){e&&i&&o&&n.dispatchEvent("arrangeComplete",null,[n.filteredItems])}var e,i,o,n=this;this.once("layoutComplete",function(){e=!0,t()}),this.once("hideComplete",function(){i=!0,t()}),this.once("revealComplete",function(){o=!0,t()})},l._filter=function(t){var e=this.options.filter;e=e||"*";for(var i=[],o=[],n=[],s=this._getFilterTest(e),r=0;r<t.length;r++){var a=t[r];if(!a.isIgnored){var u=s(a);u&&i.push(a),u&&a.isHidden?o.push(a):u||a.isHidden||n.push(a)}}return{matches:i,needReveal:o,needHide:n}},l._getFilterTest=function(t){return u&&this.options.isJQueryFiltering?function(e){return u(e.element).is(t);
12
+ }:"function"==typeof t?function(e){return t(e.element)}:function(e){return o(e.element,t)}},l.updateSortData=function(t){var e;t?(t=n.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},l._getSorters=function(){var t=this.options.getSortData;for(var e in t){var i=t[e];this._sorters[e]=f(i)}},l._updateItemsSortData=function(t){for(var e=t&&t.length,i=0;e&&i<e;i++){var o=t[i];o.updateSortData()}};var f=function(){function t(t){if("string"!=typeof t)return t;var i=h(t).split(" "),o=i[0],n=o.match(/^\[(.+)\]$/),s=n&&n[1],r=e(s,o),a=d.sortDataParsers[i[1]];return t=a?function(t){return t&&a(r(t))}:function(t){return t&&r(t)}}function e(t,e){return t?function(e){return e.getAttribute(t)}:function(t){var i=t.querySelector(e);return i&&i.textContent}}return t}();d.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},l._sort=function(){if(this.options.sortBy){var t=n.makeArray(this.options.sortBy);this._getIsSameSortBy(t)||(this.sortHistory=t.concat(this.sortHistory));var e=a(this.sortHistory,this.options.sortAscending);this.filteredItems.sort(e)}},l._getIsSameSortBy=function(t){for(var e=0;e<t.length;e++)if(t[e]!=this.sortHistory[e])return!1;return!0},l._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error("No layout mode: "+t);return e.options=this.options[t],e},l._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},l._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},l._manageStamp=function(t){this._mode()._manageStamp(t)},l._getContainerSize=function(){return this._mode()._getContainerSize()},l.needsResizeLayout=function(){return this._mode().needsResizeLayout()},l.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},l.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},l._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},l.insert=function(t){var e=this.addItems(t);if(e.length){var i,o,n=e.length;for(i=0;i<n;i++)o=e[i],this.element.appendChild(o.element);var s=this._filter(e).matches;for(i=0;i<n;i++)e[i].isLayoutInstant=!0;for(this.arrange(),i=0;i<n;i++)delete e[i].isLayoutInstant;this.reveal(s)}};var c=l.remove;return l.remove=function(t){t=n.makeArray(t);var e=this.getItems(t);c.call(this,t);for(var i=e&&e.length,o=0;i&&o<i;o++){var s=e[o];n.removeFrom(this.filteredItems,s)}},l.shuffle=function(){for(var t=0;t<this.items.length;t++){var e=this.items[t];e.sortData.random=Math.random()}this.options.sortBy="random",this._sort(),this._layout()},l._noTransition=function(t,e){var i=this.options.transitionDuration;this.options.transitionDuration=0;var o=t.apply(this,e);return this.options.transitionDuration=i,o},l.getFilteredItemElements=function(){return this.filteredItems.map(function(t){return t.element})},d});
assets/packages/colorbrightness/colorbrightness.min.js ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * colourBrightness.js
3
+ *
4
+ * Copyright 2013-2016, Jamie Brittain - http://jamiebrittain.com
5
+ * Released under the WTFPL license
6
+ * http://sam.zoy.org/wtfpl/
7
+ *
8
+ * Github: http://github.com/jamiebrittain/colourBrightness.js
9
+ * Version: 1.2
10
+ */
11
+ !function(r){r.fn.colourBrightness=function(){function r(r){for(var t="";"html"!=r[0].tagName.toLowerCase()&&(t=r.css("background-color"),"rgba(0, 0, 0, 0)"==t||"transparent"==t);)r=r.parent();return t}var t,a,s,e,n=r(this);return n.match(/^rgb/)?(n=n.match(/rgba?\(([^)]+)\)/)[1],n=n.split(/ *, */).map(Number),t=n[0],a=n[1],s=n[2]):"#"==n[0]&&7==n.length?(t=parseInt(n.slice(1,3),16),a=parseInt(n.slice(3,5),16),s=parseInt(n.slice(5,7),16)):"#"==n[0]&&4==n.length&&(t=parseInt(n[1]+n[1],16),a=parseInt(n[2]+n[2],16),s=parseInt(n[3]+n[3],16)),e=(299*t+587*a+114*s)/1e3,125>e?this.removeClass("light").addClass("dark"):this.removeClass("dark").addClass("light"),this}}(jQuery);
changelog.txt CHANGED
@@ -1,8 +1,29 @@
1
- v 3.2.23 October 2018
2
- - Fixed: some minor issues.
3
-
4
- v 3.2.1 2 October 2018
5
- - Fixed: Single Widget error (Activation error)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
  v 3.2.0 – 1 October 2018
8
  - Improved: Speed optimization on data rendering of events
1
+ v 3.3.019 November 2018
2
+ - Added: Category filter to the full calendar skin
3
+ - Added: Featured and Canceled styles for events with certain labels
4
+ - Added: Speakers taxonomy
5
+ - Added: Option to disable the speakers feature
6
+ - Added: Speakers section to the frontend event submission
7
+ - Added: Speakers module to show in default and modern layouts of single event
8
+ - Added: Multiple days functionality to the Hourly Schedule
9
+ - Added: Speakers option to the hourly schedule
10
+ - Added: Global ticket variation options (Pro)
11
+ - Added: Ability to change ticket variations per event (Pro)
12
+ - Added: Ability to order ticket variations per ticket during booking (Pro)
13
+ - Added: Monthly Novel style
14
+ - Added: Select monthly style option (Novel and Clean) to Full calendar view
15
+ - Added: Select toggle month divider option to List > Accordion view
16
+ - Added: Modal feature option to booking in single event page
17
+ - Changed: Display of hourly schedule in frontend
18
+ - Optimized: The event data rendering
19
+ - Fixed: Showing fees and variations meta box when booking module is not enabled (Pro)
20
+ - Fixed: URL issue
21
+ - Fixed: HTML content of Frontend Event Submission.
22
+ - Fixed: Auto update feature for lite version
23
+ - Fixed: Month divider issue on list and agenda skins
24
+ - Fixed: Ticket availability issue (Pro)
25
+ - Fixed: Showing ticket name in booking details page in backend
26
+ - Fixed: Typo on exports
27
 
28
  v 3.2.0 – 1 October 2018
29
  - Improved: Speed optimization on data rendering of events
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: 2018-10-01 14:22+0330\n"
6
- "PO-Revision-Date: 2018-10-01 14:22+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -27,8 +27,8 @@ msgstr "Moderner Event Kalender "
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:212
31
- #: app/features/mec.php:241 app/features/mec.php:267
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
@@ -55,23 +55,23 @@ msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
  #: app/features/colors.php:50 app/features/fes/form.php:566
58
- #: app/features/mec/settings.php:847
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
62
- #: app/features/contextual.php:55 app/features/mec.php:198
63
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
64
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
65
- #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
66
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
67
- #: app/features/mec/support.php:18 app/libraries/factory.php:206
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
- #: app/features/contextual.php:62 app/features/events.php:986
72
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
73
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
74
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
75
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
76
  #: app/features/mec/support.php:27
77
  msgid "Booking Form"
@@ -94,7 +94,7 @@ msgstr ""
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
95
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
96
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
97
- #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
98
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
99
  msgid "Payment Gateways"
100
  msgstr "Zahlungs-Gateways"
@@ -112,7 +112,7 @@ msgstr ""
112
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
113
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
114
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
115
- #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
116
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
117
  msgid "Notifications"
118
  msgstr "Benachrichtigungen"
@@ -189,323 +189,332 @@ msgstr ""
189
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
190
  "\"0\" allowfullscreen></iframe>"
191
 
192
- #: app/features/contextual.php:117 app/features/mec/settings.php:41
193
- #: app/features/mec/settings.php:252
194
  msgid "General Options"
195
  msgstr "Allgemeine Einstellungen"
196
 
197
- #: app/features/contextual.php:139 app/features/mec/settings.php:53
198
- #: app/features/mec/settings.php:404
199
  msgid "Slugs/Permalinks"
200
  msgstr "Slug/Permalinks"
201
 
202
- #: app/features/contextual.php:152 app/features/mec/settings.php:59
203
- #: app/features/mec/settings.php:424
204
  msgid "Event Details/Single Event Page"
205
  msgstr "Event Details / Einzelveranstaltungsseite"
206
 
207
- #: app/features/contextual.php:166 app/features/mec/settings.php:65
208
- #: app/features/mec/settings.php:456
209
  msgid "Currency Options"
210
  msgstr "Währungseinstellungen"
211
 
212
- #: app/features/contextual.php:182 app/features/mec/settings.php:71
213
- #: app/features/mec/settings.php:508
214
  msgid "Google Maps Options"
215
  msgstr "Google Maps Einstellungen"
216
 
217
- #: app/features/contextual.php:244 app/features/mec/settings.php:77
218
- #: app/features/mec/settings.php:582
219
  msgid "Google Recaptcha Options"
220
  msgstr "Google Recaptcha Einstellungen"
221
 
222
- #: app/features/contextual.php:258 app/features/mec/settings.php:107
223
- #: app/features/mec/settings.php:700
224
  msgid "Countdown Options"
225
  msgstr "Countdown Einstellungsoptionen"
226
 
227
- #: app/features/contextual.php:268 app/features/mec/settings.php:113
228
- #: app/features/mec/settings.php:721
229
  msgid "Social Networks"
230
  msgstr "Soziale Netzwerke"
231
 
232
- #: app/features/contextual.php:278 app/features/mec/settings.php:119
233
- #: app/features/mec/settings.php:746
234
  msgid "Next Event Module"
235
  msgstr "Nächstes Veranstaltung Modul"
236
 
237
- #: app/features/contextual.php:286 app/features/mec/settings.php:125
238
- #: app/features/mec/settings.php:774
239
  msgid "Frontend Event Submission"
240
  msgstr "Erstellung von Veranstaltungen im Frontend"
241
 
242
- #: app/features/contextual.php:298 app/features/events.php:570
243
- #: app/features/mec/settings.php:131
244
  msgid "Exceptional Days"
245
  msgstr "Herausgenommene Tage "
246
 
247
- #: app/features/contextual.php:308 app/features/events.php:253
248
- #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
249
  msgid "Booking"
250
  msgstr "Buchung / Reservierung"
251
 
252
- #: app/features/contextual.php:318 app/features/mec/settings.php:149
253
- #: app/features/mec/settings.php:1019
254
  msgid "Coupons"
255
  msgstr "Gutscheine"
256
 
257
- #: app/features/contextual.php:326 app/features/mec/settings.php:161
258
- #: app/features/mec/settings.php:1101
259
  msgid "BuddyPress Integration"
260
  msgstr "Buddy Press Integration"
261
 
262
- #: app/features/contextual.php:334 app/features/mec/settings.php:167
263
- #: app/features/mec/settings.php:1131
264
  msgid "Mailchimp Integration"
265
  msgstr "Mailchimp Integration"
266
 
267
- #: app/features/contextual.php:346 app/features/mec/settings.php:173
268
- #: app/features/mec/settings.php:1167
269
  msgid "MEC Activation"
270
  msgstr "MEC Aktivierung"
271
 
272
- #: app/features/events.php:122 app/features/ix/export.php:33
273
- #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
275
  msgid "Events"
276
  msgstr "Veranstaltungen"
277
 
278
- #: app/features/events.php:123
279
- #: app/features/mec/meta_boxes/display_options.php:678
280
- #: app/features/mec/meta_boxes/display_options.php:716
281
- #: app/features/mec/meta_boxes/display_options.php:745
282
  #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
283
  #: app/skins/yearly_view/tpl.php:69
284
  msgid "Event"
285
  msgstr "Veranstaltung"
286
 
287
- #: app/features/events.php:124 app/features/mec.php:191
288
  msgid "Add Event"
289
  msgstr "Veranstaltung hinzufügen"
290
 
291
- #: app/features/events.php:125
292
  msgid "Add New Event"
293
  msgstr "Neue Veranstaltung hinzufügen"
294
 
295
- #: app/features/events.php:126 app/features/ix.php:2784
296
  #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
297
  msgid "No events found!"
298
  msgstr "Keine Veranstaltungen gefunden!"
299
 
300
- #: app/features/events.php:127
301
  msgid "All Events"
302
  msgstr "Alle Veranstaltungen"
303
 
304
- #: app/features/events.php:128
305
  msgid "Edit Event"
306
  msgstr ""
307
 
308
- #: app/features/events.php:129
309
  msgid "View Event"
310
  msgstr "Veranstaltung ansehen"
311
 
312
- #: app/features/events.php:130
313
  msgid "No events found in Trash!"
314
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
315
 
316
- #: app/features/events.php:142
317
- #: app/features/mec/meta_boxes/display_options.php:639
318
  #: app/features/mec/meta_boxes/search_form.php:31
319
  #: app/features/mec/meta_boxes/search_form.php:78
320
  #: app/features/mec/meta_boxes/search_form.php:125
321
- #: app/features/mec/meta_boxes/search_form.php:191
322
- #: app/features/mec/meta_boxes/search_form.php:238
323
- #: app/features/mec/meta_boxes/search_form.php:285
324
- #: app/features/mec/meta_boxes/search_form.php:325
325
- #: app/features/mec/meta_boxes/search_form.php:372
326
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:4101
327
- #: app/libraries/skins.php:689 app/skins/single/default.php:167
328
- #: app/skins/single/default.php:369 app/skins/single/m1.php:167
329
- #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
 
330
  msgid "Category"
331
  msgstr "Kategorie"
332
 
333
- #: app/features/events.php:143 app/features/fes/form.php:518
334
- #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:70
335
- #: app/libraries/main.php:4100
336
  msgid "Categories"
337
  msgstr "Kategorien"
338
 
339
- #: app/features/events.php:153 app/features/labels.php:71
340
  #: app/features/locations.php:69 app/features/organizers.php:69
 
341
  #, php-format
342
  msgid "All %s"
343
  msgstr "Alle %s"
344
 
345
- #: app/features/events.php:154 app/features/labels.php:72
346
  #: app/features/locations.php:70 app/features/organizers.php:70
 
347
  #, php-format
348
  msgid "Edit %s"
349
  msgstr "Bearbeiten %s"
350
 
351
- #: app/features/events.php:155 app/features/labels.php:73
352
  #: app/features/locations.php:71 app/features/organizers.php:71
 
353
  #, php-format
354
  msgid "View %s"
355
  msgstr "Ansicht %s"
356
 
357
- #: app/features/events.php:156 app/features/labels.php:74
358
  #: app/features/locations.php:72 app/features/organizers.php:72
 
359
  #, php-format
360
  msgid "Update %s"
361
  msgstr "Update %s"
362
 
363
- #: app/features/events.php:157 app/features/labels.php:75
364
  #: app/features/locations.php:73 app/features/organizers.php:73
 
365
  #, php-format
366
  msgid "Add New %s"
367
  msgstr "Neu hinzufügen%s"
368
 
369
- #: app/features/events.php:158 app/features/labels.php:76
370
  #: app/features/locations.php:74 app/features/organizers.php:74
 
371
  #, php-format
372
  msgid "New %s Name"
373
  msgstr "Neuer %s Name"
374
 
375
- #: app/features/events.php:159 app/features/labels.php:77
376
  #: app/features/locations.php:75 app/features/organizers.php:75
 
377
  #, php-format
378
  msgid "Popular %s"
379
  msgstr "Beliebt %s"
380
 
381
- #: app/features/events.php:160 app/features/labels.php:78
382
  #: app/features/locations.php:76 app/features/organizers.php:76
 
383
  #, php-format
384
  msgid "Search %s"
385
  msgstr "Suche %s"
386
 
387
- #: app/features/events.php:182 app/features/events.php:200
388
  msgid "Category Icon"
389
  msgstr "Kategoriesymbol"
390
 
391
- #: app/features/events.php:184 app/features/events.php:204
392
  msgid "Select icon"
393
  msgstr "Wählen Sie ein Symbol"
394
 
395
- #: app/features/events.php:250
396
  msgid "Event Details"
397
  msgstr "Veranstaltungsdetails"
398
 
399
- #: app/features/events.php:286 app/features/events.php:1709
400
- #: app/features/events.php:1753 app/features/fes/form.php:479
401
  #: app/features/ix.php:2328 app/features/ix.php:2369
402
- #: app/features/mec/settings.php:823 app/libraries/main.php:4131
403
- #: app/widgets/SINGLE.php:102
404
  msgid "Event Cost"
405
  msgstr ""
406
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
407
 
408
- #: app/features/events.php:289 app/features/fes/form.php:482
409
- #: app/libraries/main.php:4132 app/skins/single/default.php:102
410
- #: app/skins/single/default.php:304 app/skins/single/m1.php:49
411
- #: app/skins/single/modern.php:179
412
  msgid "Cost"
413
  msgstr " Preis"
414
 
415
- #: app/features/events.php:362
416
  msgid "Note for reviewer"
417
  msgstr "Zusätzliche Anmerkungen zum Event "
418
 
419
- #: app/features/events.php:369
420
  msgid "Guest Data"
421
  msgstr "Gäste Daten"
422
 
423
- #: app/features/events.php:370 app/features/fes/form.php:441
424
- #: app/features/labels.php:151 app/features/organizers.php:268
425
- #: app/libraries/main.php:1573 app/libraries/notifications.php:554
426
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
427
  msgid "Name"
428
  msgstr "Name"
429
 
430
- #: app/features/events.php:371 app/features/events.php:1021
431
  #: app/features/fes/form.php:437 app/features/mec/regform.php:118
432
  #: app/features/organizers.php:110 app/features/organizers.php:150
433
- #: app/libraries/main.php:1039 app/libraries/main.php:1104
434
- #: app/libraries/main.php:1574 app/libraries/main.php:2017
435
- #: app/libraries/notifications.php:555 app/modules/booking/steps/form.php:28
436
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
437
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
438
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
439
- #: app/skins/single/modern.php:38
440
  msgid "Email"
441
  msgstr "Email"
442
 
443
- #: app/features/events.php:375 app/features/fes/form.php:221
444
  msgid "Date and Time"
445
  msgstr "Datum und Uhrzeit"
446
 
447
- #: app/features/events.php:379 app/features/events.php:383
448
- #: app/features/events.php:1530 app/features/events.php:1709
449
- #: app/features/events.php:1753 app/features/fes/form.php:225
450
  #: app/features/fes/form.php:229 app/features/ix.php:2328
451
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
452
- #: app/features/mec/dashboard.php:266
453
  #: app/features/mec/meta_boxes/display_options.php:42
454
- #: app/features/mec/meta_boxes/display_options.php:129
455
- #: app/features/mec/meta_boxes/display_options.php:225
456
- #: app/features/mec/meta_boxes/display_options.php:274
457
- #: app/features/mec/meta_boxes/display_options.php:373
458
- #: app/features/mec/meta_boxes/display_options.php:419
459
- #: app/features/mec/meta_boxes/display_options.php:456
460
- #: app/features/mec/meta_boxes/display_options.php:489
461
- #: app/features/mec/meta_boxes/display_options.php:524
462
- #: app/features/mec/meta_boxes/display_options.php:570
463
- #: app/features/mec/meta_boxes/display_options.php:613
464
- #: app/features/mec/meta_boxes/display_options.php:767
465
- #: app/features/mec/meta_boxes/display_options.php:829
466
  msgid "Start Date"
467
  msgstr "Start Datum"
468
 
469
- #: app/features/events.php:411 app/features/events.php:451
470
- #: app/features/events.php:766 app/features/events.php:784
471
- #: app/features/events.php:836 app/features/events.php:854
472
  #: app/features/fes/form.php:257 app/features/fes/form.php:297
473
  msgid "AM"
474
  msgstr "AM"
475
 
476
- #: app/features/events.php:412 app/features/events.php:452
477
- #: app/features/events.php:767 app/features/events.php:785
478
- #: app/features/events.php:837 app/features/events.php:855
479
  #: app/features/fes/form.php:258 app/features/fes/form.php:298
480
  msgid "PM"
481
  msgstr "PM"
482
 
483
- #: app/features/events.php:419 app/features/events.php:423
484
- #: app/features/events.php:1531 app/features/events.php:1709
485
- #: app/features/events.php:1753 app/features/fes/form.php:265
486
  #: app/features/fes/form.php:269 app/features/ix.php:2328
487
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
488
- #: app/features/mec/dashboard.php:267
489
  msgid "End Date"
490
  msgstr "Ende Datum"
491
 
492
- #: app/features/events.php:458 app/features/fes/form.php:304
493
  msgid "All Day Event"
494
  msgstr "Ganztägige Veranstaltung"
495
 
496
- #: app/features/events.php:461 app/features/fes/form.php:307
497
  msgid "Hide Event Time"
498
  msgstr "Event / Veranstaltungszeit verbergen"
499
 
500
- #: app/features/events.php:464 app/features/fes/form.php:310
501
  msgid "Hide Event End Time"
502
  msgstr "Ende-Zeit der Veranstaltung verbergen"
503
 
504
- #: app/features/events.php:468 app/features/fes/form.php:314
505
  msgid "Time Comment"
506
  msgstr "z.B. MEZ "
507
 
508
- #: app/features/events.php:469 app/features/fes/form.php:315
509
  msgid ""
510
  "It shows next to event time on calendar. You can insert Timezone etc. in "
511
  "this field."
@@ -513,137 +522,138 @@ msgstr ""
513
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
514
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
515
 
516
- #: app/features/events.php:475 app/features/fes/form.php:321
517
  msgid "Event Repeating"
518
  msgstr "Wiederholende Veranstaltung"
519
 
520
- #: app/features/events.php:479 app/features/fes/form.php:325
521
  msgid "Repeats"
522
  msgstr "Wiederholend"
523
 
524
- #: app/features/events.php:481 app/features/fes/form.php:327
525
- #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
526
  msgid "Daily"
527
  msgstr "Täglich"
528
 
529
- #: app/features/events.php:482 app/features/fes/form.php:328
530
  msgid "Every Weekday"
531
  msgstr "An jedem Wochentag"
532
 
533
- #: app/features/events.php:483 app/features/fes/form.php:329
534
  msgid "Every Weekend"
535
  msgstr "An jedem Wochenende"
536
 
537
- #: app/features/events.php:484 app/features/fes/form.php:330
538
  msgid "Certain Weekdays"
539
  msgstr "Bestimmte Wochentage"
540
 
541
- #: app/features/events.php:485 app/features/fes/form.php:331
542
- #: app/skins/full_calendar/tpl.php:47
543
  msgid "Weekly"
544
  msgstr "Wöchentlich"
545
 
546
- #: app/features/events.php:486 app/features/fes/form.php:332
547
- #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
548
  msgid "Monthly"
549
  msgstr "Monatlich"
550
 
551
- #: app/features/events.php:487 app/features/fes/form.php:333
552
- #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
553
  msgid "Yearly"
554
  msgstr "Jährlich"
555
 
556
- #: app/features/events.php:488 app/features/fes/form.php:334
557
  msgid "Custom Days"
558
  msgstr "Benutzerdefinierte Tage"
559
 
560
- #: app/features/events.php:492 app/features/fes/form.php:338
561
  msgid "Repeat Interval"
562
  msgstr "Wiederholungsintervall"
563
 
564
- #: app/features/events.php:493 app/features/fes/form.php:339
565
  msgid "Repeat interval"
566
  msgstr "Wiederholungsintervall"
567
 
568
- #: app/features/events.php:496 app/features/fes/form.php:342
569
  msgid "Week Days"
570
  msgstr "Wochentage"
571
 
572
- #: app/features/events.php:497 app/features/fes/form.php:343
573
  #: app/libraries/main.php:401
574
  msgid "Monday"
575
  msgstr "Montag"
576
 
577
- #: app/features/events.php:498 app/features/fes/form.php:344
578
  #: app/libraries/main.php:401
579
  msgid "Tuesday"
580
  msgstr "Dienstag"
581
 
582
- #: app/features/events.php:499 app/features/fes/form.php:345
583
  #: app/libraries/main.php:401
584
  msgid "Wednesday"
585
  msgstr "Mittwoch"
586
 
587
- #: app/features/events.php:500 app/features/fes/form.php:346
588
  #: app/libraries/main.php:401
589
  msgid "Thursday"
590
  msgstr "Donnerstag"
591
 
592
- #: app/features/events.php:501 app/features/fes/form.php:347
593
  #: app/libraries/main.php:401
594
  msgid "Friday"
595
  msgstr "Freitag"
596
 
597
- #: app/features/events.php:502 app/features/fes/form.php:348
598
  #: app/libraries/main.php:401
599
  msgid "Saturday"
600
  msgstr "Samstag"
601
 
602
- #: app/features/events.php:503 app/features/fes/form.php:349
603
  #: app/libraries/main.php:401
604
  msgid "Sunday"
605
  msgstr "Sonntag"
606
 
607
- #: app/features/events.php:508 app/features/events.php:580
608
- #: app/features/fes/form.php:354 app/libraries/main.php:1554
609
  #: app/modules/booking/steps/tickets.php:20
610
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:66
611
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
612
- #: app/skins/single/modern.php:146
613
  msgid "Date"
614
  msgstr "Datum"
615
 
616
- #: app/features/events.php:509 app/features/events.php:581
617
- #: app/features/events.php:623 app/features/events.php:743
618
- #: app/features/events.php:915 app/features/fes/form.php:355
 
619
  msgid "Add"
620
  msgstr "Hinzufügen"
621
 
622
- #: app/features/events.php:510 app/features/fes/form.php:356
623
  msgid "Add certain days to event occurrence dates."
624
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
625
 
626
- #: app/features/events.php:532 app/features/fes/form.php:378
627
  msgid "Ends Repeat"
628
  msgstr "Wiederholung endet"
629
 
630
- #: app/features/events.php:536 app/features/fes/form.php:382
631
  msgid "Never"
632
  msgstr "Niemals"
633
 
634
- #: app/features/events.php:541 app/features/fes/form.php:387
635
  msgid "On"
636
  msgstr "Am"
637
 
638
- #: app/features/events.php:548 app/features/fes/form.php:394
639
  msgid "After"
640
  msgstr "Nach"
641
 
642
- #: app/features/events.php:550 app/features/fes/form.php:396
643
  msgid "Occurrences times"
644
  msgstr " mal vorkommen"
645
 
646
- #: app/features/events.php:551 app/features/fes/form.php:397
647
  msgid ""
648
  "The event will finish after certain repeats. For example if you set it to "
649
  "10, the event will finish after 10 repeats."
@@ -651,75 +661,114 @@ msgstr ""
651
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
652
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
653
 
654
- #: app/features/events.php:576
655
  msgid "Exclude certain days"
656
  msgstr "Ausschluss bestimmter Tage"
657
 
658
- #: app/features/events.php:582
659
  msgid "Exclude certain days from event occurrence dates."
660
  msgstr ""
661
  "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
662
  "Eventwiederholungen, oder um das Wochenende auszuschließen"
663
 
664
- #: app/features/events.php:620 app/features/mec/settings.php:871
665
- #: app/skins/single/default.php:27 app/skins/single/m1.php:232
666
- #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
 
 
 
667
  msgid "Hourly Schedule"
668
  msgstr "Stundenplan"
669
 
670
- #: app/features/events.php:624
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgid "Add new hourly schedule row"
672
  msgstr "Neue Stundenplan-Zeile hinzufügen"
673
 
674
- #: app/features/events.php:629 app/features/events.php:641
 
675
  msgid "From e.g. 8:15"
676
  msgstr "Von z.B. 08:15 Uhr"
677
 
678
- #: app/features/events.php:630 app/features/events.php:642
 
679
  msgid "To e.g. 8:45"
680
  msgstr "bis zum Beispiel 08:45 Uhr"
681
 
682
- #: app/features/events.php:631 app/features/events.php:643
683
- #: app/features/events.php:1527 app/features/events.php:1709
684
- #: app/features/events.php:1753 app/features/fes/form.php:214
685
- #: app/features/ix.php:2328 app/features/ix.php:2369
686
- msgid "Title"
687
- msgstr "Titel"
688
-
689
- #: app/features/events.php:632 app/features/events.php:644
690
- #: app/features/events.php:790 app/features/events.php:860
691
  msgid "Description"
692
  msgstr "Beschreibung"
693
 
694
- #: app/features/events.php:633 app/features/events.php:645
695
- #: app/features/events.php:809 app/features/events.php:879
696
- #: app/features/events.php:935 app/features/events.php:960
697
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
698
- #: app/features/mec/settings.php:1092 app/libraries/main.php:1996
699
- #: app/libraries/main.php:2025 app/libraries/main.php:2054
700
- #: app/libraries/main.php:2083 app/libraries/main.php:2105
701
- #: app/libraries/main.php:2136 app/libraries/main.php:2180
702
- #: app/libraries/main.php:2224 app/libraries/main.php:2271
703
- #: app/libraries/main.php:2309
 
 
704
  msgid "Remove"
705
  msgstr "Entfernen"
706
 
707
- #: app/features/events.php:665 app/features/fes/form.php:456
708
- #: app/features/mec/settings.php:817
 
 
 
 
 
 
 
 
 
 
 
 
709
  msgid "Event Links"
710
  msgstr "Veranstaltungslinks"
711
 
712
- #: app/features/events.php:667 app/features/fes/form.php:458
713
- #: app/libraries/main.php:4129
714
  msgid "Event Link"
715
  msgstr "Veranstaltungslink"
716
 
717
- #: app/features/events.php:668 app/features/events.php:673
718
  #: app/features/fes/form.php:459 app/features/fes/form.php:464
719
  msgid "eg. http://yoursite.com/your-event"
720
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
721
 
722
- #: app/features/events.php:669 app/features/fes/form.php:460
723
  msgid ""
724
  "If you fill it, it will be replaced instead of default event page link. "
725
  "Insert full link including http(s)://"
@@ -728,27 +777,27 @@ msgstr ""
728
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
729
  "einschließlich http(s)://"
730
 
731
- #: app/features/events.php:672 app/features/fes/form.php:463
732
- #: app/libraries/main.php:4130 app/skins/single/default.php:116
733
- #: app/skins/single/default.php:318 app/skins/single/m1.php:189
734
- #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
735
- #: app/widgets/SINGLE.php:106
736
  msgid "More Info"
737
  msgstr "Mehr Informationen"
738
 
739
- #: app/features/events.php:674 app/features/fes/form.php:465
740
  msgid "More Information"
741
  msgstr "z.B. Noch mehr Informationen "
742
 
743
- #: app/features/events.php:676 app/features/fes/form.php:467
744
  msgid "Current Window"
745
  msgstr "Aktuelles Fenster"
746
 
747
- #: app/features/events.php:677 app/features/fes/form.php:468
748
  msgid "New Window"
749
  msgstr "Neues Fenster"
750
 
751
- #: app/features/events.php:679 app/features/fes/form.php:470
752
  msgid ""
753
  "If you fill it, it will be shown in event details page as an optional link. "
754
  "Insert full link including http(s)://"
@@ -759,88 +808,91 @@ msgstr ""
759
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
760
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
761
 
762
- #: app/features/events.php:710
763
  msgid "Total booking limits"
764
  msgstr "Gesamt Verfügbare Plätze"
765
 
766
- #: app/features/events.php:715 app/features/events.php:807
767
- #: app/features/events.php:877 app/modules/booking/default.php:82
768
- #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
769
  msgid "Unlimited"
770
  msgstr "Unlimitiert"
771
 
772
- #: app/features/events.php:717
773
  msgid "100"
774
  msgstr "z.B. 100"
775
 
776
- #: app/features/events.php:735 app/libraries/book.php:59
777
- #: app/libraries/main.php:4134 app/modules/booking/steps/tickets.php:38
778
  msgid "Tickets"
779
  msgstr "Tickets"
780
 
781
- #: app/features/events.php:738
782
  msgid ""
783
  "You're translating an event so MEC will use the original event for tickets "
784
  "and booking. You can only translate the ticket name and description. Please "
785
  "define exact tickets that you defined in the original event here."
786
  msgstr ""
787
 
788
- #: app/features/events.php:749 app/features/events.php:819
789
  msgid "Ticket Name"
790
  msgstr "Ticket Name"
791
 
792
- #: app/features/events.php:753 app/features/events.php:823
793
- #: app/features/events.php:1709 app/features/events.php:1753
794
  #: app/features/ix.php:2328 app/features/ix.php:2369
795
  msgid "Start Time"
796
  msgstr "Uhrzeit des Beginns"
797
 
798
- #: app/features/events.php:771 app/features/events.php:841
799
- #: app/features/events.php:1709 app/features/events.php:1753
800
  #: app/features/ix.php:2328 app/features/ix.php:2369
801
  msgid "End Time"
802
  msgstr "Uhrzeit Ende"
803
 
804
- #: app/features/events.php:794 app/features/events.php:864
 
 
805
  msgid "Price"
806
  msgstr "Preis"
807
 
808
- #: app/features/events.php:795 app/features/events.php:865
809
  msgid "Insert 0 for free ticket. Only numbers please."
810
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
811
 
812
- #: app/features/events.php:798 app/features/events.php:868
813
  msgid "Price Label"
814
  msgstr "Preisschild"
815
 
816
- #: app/features/events.php:799 app/features/events.php:869
817
  msgid "For showing on website. e.g. $15"
818
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
819
 
820
- #: app/features/events.php:803 app/features/events.php:873
821
  msgid "Available Tickets"
822
  msgstr "Verfügbare Tickets: %s "
823
 
824
- #: app/features/events.php:905
825
  msgid "Fees"
826
  msgstr "Gebühren"
827
 
828
- #: app/features/events.php:910 app/features/events.php:991
 
829
  msgid "Inherit from global options"
830
  msgstr "Aus den globalen Einstellungen übernehmen"
831
 
832
- #: app/features/events.php:921 app/features/events.php:946
833
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
834
  msgid "Fee Title"
835
  msgstr "Gebühren Name"
836
 
837
- #: app/features/events.php:925 app/features/events.php:950
838
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
839
  msgid "Amount"
840
  msgstr "Betrag"
841
 
842
- #: app/features/events.php:926 app/features/events.php:951
843
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
844
  msgid ""
845
  "Fee amount, considered as fixed amount if you set the type to amount "
846
  "otherwise considered as percentage"
@@ -848,48 +900,72 @@ msgstr ""
848
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
849
  "sonst als Prozentsatz"
850
 
851
- #: app/features/events.php:930 app/features/events.php:955
852
- #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
853
  msgid "Percent"
854
  msgstr "Prozent"
855
 
856
- #: app/features/events.php:931 app/features/events.php:956
857
- #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
858
  msgid "Amount (Per Ticket)"
859
  msgstr "Betrag (pro Ticket)"
860
 
861
- #: app/features/events.php:932 app/features/events.php:957
862
- #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
863
  msgid "Amount (Per Booking)"
864
  msgstr "Betrag (pro Buchung)"
865
 
866
- #: app/features/events.php:1020 app/features/mec/regform.php:117
867
- #: app/libraries/main.php:1988
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
868
  msgid "Text"
869
  msgstr "Text"
870
 
871
- #: app/features/events.php:1022 app/features/mec/regform.php:119
872
  #: app/features/organizers.php:102 app/features/organizers.php:146
873
- #: app/libraries/main.php:2046
 
874
  msgid "Tel"
875
  msgstr "Tel"
876
 
877
- #: app/features/events.php:1023 app/features/mec/regform.php:120
878
- #: app/libraries/main.php:2075
879
  msgid "Textarea"
880
  msgstr "Textbereich"
881
 
882
- #: app/features/events.php:1024 app/features/mec/regform.php:121
883
- #: app/libraries/main.php:2128
884
  msgid "Checkboxes"
885
  msgstr "Checkboxes"
886
 
887
- #: app/features/events.php:1025 app/features/mec/regform.php:122
888
- #: app/libraries/main.php:2172
889
  msgid "Radio Buttons"
890
  msgstr "Radio Buttons"
891
 
892
- #: app/features/events.php:1026 app/features/mec/meta_boxes/search_form.php:34
893
  #: app/features/mec/meta_boxes/search_form.php:41
894
  #: app/features/mec/meta_boxes/search_form.php:48
895
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -905,161 +981,162 @@ msgstr "Radio Buttons"
905
  #: app/features/mec/meta_boxes/search_form.php:149
906
  #: app/features/mec/meta_boxes/search_form.php:156
907
  #: app/features/mec/meta_boxes/search_form.php:175
908
- #: app/features/mec/meta_boxes/search_form.php:194
909
  #: app/features/mec/meta_boxes/search_form.php:201
910
  #: app/features/mec/meta_boxes/search_form.php:208
911
  #: app/features/mec/meta_boxes/search_form.php:215
912
  #: app/features/mec/meta_boxes/search_form.php:222
913
- #: app/features/mec/meta_boxes/search_form.php:241
914
  #: app/features/mec/meta_boxes/search_form.php:248
915
  #: app/features/mec/meta_boxes/search_form.php:255
916
  #: app/features/mec/meta_boxes/search_form.php:262
917
  #: app/features/mec/meta_boxes/search_form.php:269
918
- #: app/features/mec/meta_boxes/search_form.php:288
919
  #: app/features/mec/meta_boxes/search_form.php:295
920
  #: app/features/mec/meta_boxes/search_form.php:302
921
  #: app/features/mec/meta_boxes/search_form.php:309
922
- #: app/features/mec/meta_boxes/search_form.php:328
923
  #: app/features/mec/meta_boxes/search_form.php:335
924
  #: app/features/mec/meta_boxes/search_form.php:342
925
  #: app/features/mec/meta_boxes/search_form.php:349
926
  #: app/features/mec/meta_boxes/search_form.php:356
927
- #: app/features/mec/meta_boxes/search_form.php:375
928
  #: app/features/mec/meta_boxes/search_form.php:382
929
  #: app/features/mec/meta_boxes/search_form.php:389
930
  #: app/features/mec/meta_boxes/search_form.php:396
931
  #: app/features/mec/meta_boxes/search_form.php:403
932
- #: app/features/mec/meta_boxes/search_form.php:422
933
  #: app/features/mec/meta_boxes/search_form.php:429
934
  #: app/features/mec/meta_boxes/search_form.php:436
935
  #: app/features/mec/meta_boxes/search_form.php:443
936
  #: app/features/mec/meta_boxes/search_form.php:450
937
- #: app/features/mec/regform.php:123 app/libraries/main.php:2216
 
938
  msgid "Dropdown"
939
  msgstr "Dropdown"
940
 
941
- #: app/features/events.php:1027 app/features/mec/regform.php:124
942
- #: app/libraries/main.php:2263
943
  msgid "Agreement"
944
  msgstr "Zustimmung"
945
 
946
- #: app/features/events.php:1028 app/features/mec/regform.php:125
947
- #: app/libraries/main.php:2104
948
  msgid "Paragraph"
949
  msgstr "Absatz"
950
 
951
- #: app/features/events.php:1473 app/features/events.php:1488
952
- #: app/features/events.php:1502
953
  #, php-format
954
  msgid "Show all %s"
955
  msgstr "Zeige alle %s"
956
 
957
- #: app/features/events.php:1473
958
  msgid "labels"
959
  msgstr "Labels + Eventstatus"
960
 
961
- #: app/features/events.php:1488
962
  msgid "locations"
963
  msgstr "Orte"
964
 
965
- #: app/features/events.php:1502
966
  msgid "organizers"
967
  msgstr "Veranstalter"
968
 
969
- #: app/features/events.php:1528 app/features/events.php:1709
970
- #: app/features/events.php:1753 app/features/ix.php:2328
971
  #: app/features/ix.php:2369 app/features/locations.php:58
972
  #: app/features/locations.php:229 app/features/locations.php:281
973
- #: app/features/locations.php:283 app/features/mec/dashboard.php:103
974
- #: app/features/mec/meta_boxes/display_options.php:641
975
  #: app/features/mec/meta_boxes/search_form.php:38
976
  #: app/features/mec/meta_boxes/search_form.php:85
977
  #: app/features/mec/meta_boxes/search_form.php:132
978
- #: app/features/mec/meta_boxes/search_form.php:198
979
- #: app/features/mec/meta_boxes/search_form.php:245
980
- #: app/features/mec/meta_boxes/search_form.php:292
981
- #: app/features/mec/meta_boxes/search_form.php:332
982
- #: app/features/mec/meta_boxes/search_form.php:379
983
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1548
984
- #: app/libraries/main.php:4105 app/libraries/skins.php:715
985
- #: app/skins/single/default.php:152 app/skins/single/default.php:354
986
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
987
- #: app/skins/single/modern.php:77
988
  msgid "Location"
989
  msgstr "Ort"
990
 
991
- #: app/features/events.php:1529 app/features/events.php:1709
992
- #: app/features/events.php:1753 app/features/ix.php:2328
993
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
994
- #: app/features/mec/meta_boxes/display_options.php:642
995
  #: app/features/mec/meta_boxes/search_form.php:45
996
  #: app/features/mec/meta_boxes/search_form.php:92
997
  #: app/features/mec/meta_boxes/search_form.php:139
998
- #: app/features/mec/meta_boxes/search_form.php:205
999
- #: app/features/mec/meta_boxes/search_form.php:252
1000
- #: app/features/mec/meta_boxes/search_form.php:299
1001
- #: app/features/mec/meta_boxes/search_form.php:339
1002
- #: app/features/mec/meta_boxes/search_form.php:386
1003
- #: app/features/mec/meta_boxes/search_form.php:433
1004
  #: app/features/organizers.php:58 app/features/organizers.php:199
1005
  #: app/features/organizers.php:255 app/features/organizers.php:257
1006
- #: app/libraries/main.php:4107 app/libraries/skins.php:741
1007
- #: app/skins/single/default.php:193 app/skins/single/default.php:395
1008
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1009
  #: app/skins/single/modern.php:21
1010
  msgid "Organizer"
1011
  msgstr "Veranstalter"
1012
 
1013
- #: app/features/events.php:1533
1014
  msgid "Repeat"
1015
  msgstr "Wiederholen"
1016
 
1017
- #: app/features/events.php:1534
1018
  msgid "Author"
1019
  msgstr "Autor"
1020
 
1021
- #: app/features/events.php:1644 app/features/events.php:1645
1022
  msgid "iCal Export"
1023
  msgstr "ical Export"
1024
 
1025
- #: app/features/events.php:1647 app/features/events.php:1648
1026
  msgid "CSV Export"
1027
  msgstr "CSV Export"
1028
 
1029
- #: app/features/events.php:1650 app/features/events.php:1651
1030
  msgid "MS Excel Export"
1031
  msgstr "MS Excel Export"
1032
 
1033
- #: app/features/events.php:1653 app/features/events.php:1654
1034
  msgid "XML Export"
1035
  msgstr "XML Export"
1036
 
1037
- #: app/features/events.php:1656 app/features/events.php:1657
1038
  msgid "JSON Export"
1039
  msgstr "JSON Export"
1040
 
1041
- #: app/features/events.php:1659 app/features/events.php:1660
1042
  msgid "Duplicate"
1043
  msgstr "Kopie"
1044
 
1045
- #: app/features/events.php:1709 app/features/events.php:1753
1046
  #: app/features/ix.php:2328 app/features/ix.php:2369
1047
- #: app/features/labels.php:150 app/features/locations.php:228
1048
- #: app/features/organizers.php:198
1049
  msgid "ID"
1050
  msgstr "ID"
1051
 
1052
- #: app/features/events.php:1709 app/features/events.php:1753
1053
  #: app/features/ix.php:2328 app/features/ix.php:2369
1054
  msgid "Link"
1055
  msgstr "Link"
1056
 
1057
- #: app/features/events.php:1709 app/features/events.php:1753
1058
  #, php-format
1059
  msgid "%s Tel"
1060
  msgstr "%s Tel"
1061
 
1062
- #: app/features/events.php:1709 app/features/events.php:1753
1063
  #, php-format
1064
  msgid "%s Email"
1065
  msgstr "%s Email"
@@ -1105,17 +1182,17 @@ msgstr "Das Bild ist hochgeladen"
1105
  msgid "Captcha is invalid! Please try again."
1106
  msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
1107
 
1108
- #: app/features/fes.php:263
1109
  msgid "Please fill event title field!"
1110
  msgstr "Bitte füllen Sie das Event Titelfeld"
1111
 
1112
- #: app/features/fes.php:771
1113
  msgid "The event submitted. It will publish as soon as possible."
1114
  msgstr ""
1115
  "Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
1116
  "veröffentlicht werden."
1117
 
1118
- #: app/features/fes.php:772
1119
  msgid "The event published."
1120
  msgstr "Die Veranstaltung wurde veröffentlicht."
1121
 
@@ -1127,7 +1204,7 @@ msgstr "Zurück zur Liste der Veranstaltungen"
1127
  msgid "Note to reviewer"
1128
  msgstr "Zusätzliche Anmerkungen zum Event "
1129
 
1130
- #: app/features/fes/form.php:416 app/features/fes/form.php:596
1131
  msgid "Submit"
1132
  msgstr "Buchung abschließen"
1133
 
@@ -1143,7 +1220,7 @@ msgstr "z.B. IhrName@ihrewebseite.de"
1143
  msgid "eg. John Smith"
1144
  msgstr "z.B. Max Mustermann"
1145
 
1146
- #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1147
  msgid "Featured Image"
1148
  msgstr "Ausgewähltes Bild"
1149
 
@@ -1152,14 +1229,14 @@ msgid "Remove Image"
1152
  msgstr "Bild entfernen"
1153
 
1154
  #: app/features/fes/form.php:543 app/features/labels.php:61
1155
- #: app/features/labels.php:194 app/features/mec.php:194
1156
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4102
1157
- #: app/skins/single/default.php:131 app/skins/single/default.php:333
1158
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1159
  msgid "Labels"
1160
  msgstr "Labels"
1161
 
1162
- #: app/features/fes/form.php:588 app/features/mec.php:192
1163
  #: app/features/mec/meta_boxes/filter.php:138
1164
  msgid "Tags"
1165
  msgstr "Schlagworte"
@@ -1322,7 +1399,7 @@ msgstr ""
1322
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1323
  "exportieren."
1324
 
1325
- #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1326
  msgid "iCal"
1327
  msgstr "iCal"
1328
 
@@ -1429,7 +1506,7 @@ msgstr "Umschalten"
1429
  msgid "Add to Google Calendar"
1430
  msgstr "Zum Google Kalender hinzufügen"
1431
 
1432
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1433
  msgid "Checking ..."
1434
  msgstr "Überprüfung"
1435
 
@@ -1471,25 +1548,26 @@ msgstr ""
1471
  msgid "ICS Feed"
1472
  msgstr ""
1473
 
1474
- #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1475
- #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1476
- #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1477
- #: app/features/mec/settings.php:1039
1478
  #, php-format
1479
  msgid "%s is required to use this feature."
1480
  msgstr ""
1481
 
1482
  #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1483
- #: app/features/mec/meta_boxes/display_options.php:214
1484
- #: app/features/mec/meta_boxes/display_options.php:362
1485
- #: app/features/mec/meta_boxes/display_options.php:451
1486
- #: app/features/mec/meta_boxes/display_options.php:558
1487
- #: app/features/mec/meta_boxes/display_options.php:608
1488
- #: app/features/mec/meta_boxes/display_options.php:734
1489
- #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1490
- #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1491
- #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1492
- #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
 
1493
  msgid "Pro version of Modern Events Calendar"
1494
  msgstr ""
1495
 
@@ -1594,7 +1672,7 @@ msgid "Auto Synchronization"
1594
  msgstr "Auto Synchronisation"
1595
 
1596
  #: app/features/ix/sync.php:21
1597
- #: app/features/mec/meta_boxes/display_options.php:608
1598
  #, php-format
1599
  msgid "%s is required to use synchronization feature."
1600
  msgstr ""
@@ -1705,45 +1783,96 @@ msgstr ""
1705
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
1706
 
1707
  #: app/features/labels.php:60
1708
- #: app/features/mec/meta_boxes/display_options.php:640
1709
  #: app/features/mec/meta_boxes/search_form.php:52
1710
  #: app/features/mec/meta_boxes/search_form.php:99
1711
  #: app/features/mec/meta_boxes/search_form.php:146
1712
- #: app/features/mec/meta_boxes/search_form.php:212
1713
- #: app/features/mec/meta_boxes/search_form.php:259
1714
- #: app/features/mec/meta_boxes/search_form.php:306
1715
- #: app/features/mec/meta_boxes/search_form.php:346
1716
- #: app/features/mec/meta_boxes/search_form.php:393
1717
- #: app/features/mec/meta_boxes/search_form.php:440 app/libraries/skins.php:767
1718
  msgid "Label"
1719
  msgstr "Label"
1720
 
1721
- #: app/features/labels.php:101 app/features/labels.php:119
1722
- #: app/features/labels.php:152
1723
  msgid "Color"
1724
  msgstr "Farbe"
1725
 
1726
- #: app/features/labels.php:105 app/features/labels.php:121
1727
  msgid "Select label color"
1728
  msgstr "Wähle Label Farbe"
1729
 
1730
- #: app/features/labels.php:153 app/features/locations.php:231
1731
- #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1732
  msgid "Count"
1733
  msgstr "Zähler"
1734
 
1735
- #: app/features/labels.php:154 app/features/locations.php:232
1736
  #: app/features/organizers.php:202
1737
  msgid "Slug"
1738
  msgstr "Slug"
1739
 
1740
- #: app/features/labels.php:194 app/features/locations.php:281
1741
  #, php-format
1742
  msgid "Event %s"
1743
  msgstr "Event %s"
1744
 
1745
- #: app/features/locations.php:59 app/features/mec.php:195
1746
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4104
1747
  msgid "Locations"
1748
  msgstr "Orte"
1749
 
@@ -1776,11 +1905,13 @@ msgstr "Geologischer Längengrad (Optional)"
1776
 
1777
  #: app/features/locations.php:137 app/features/locations.php:179
1778
  #: app/features/organizers.php:126 app/features/organizers.php:158
 
1779
  msgid "Thumbnail"
1780
  msgstr "Miniaturansicht"
1781
 
1782
  #: app/features/locations.php:142 app/features/locations.php:182
1783
  #: app/features/organizers.php:131 app/features/organizers.php:161
 
1784
  msgid "Upload/Add image"
1785
  msgstr "Bild hochladen/hinzufügen"
1786
 
@@ -1788,6 +1919,7 @@ msgstr "Bild hochladen/hinzufügen"
1788
  #: app/features/locations.php:322 app/features/locations.php:329
1789
  #: app/features/organizers.php:132 app/features/organizers.php:162
1790
  #: app/features/organizers.php:288 app/features/organizers.php:295
 
1791
  msgid "Remove image"
1792
  msgstr "Bild entfernen"
1793
 
@@ -1814,8 +1946,8 @@ msgstr ""
1814
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
1815
  "Westfalenhalle"
1816
 
1817
- #: app/features/locations.php:298 app/features/mec/settings.php:859
1818
- #: app/widgets/SINGLE.php:114
1819
  msgid "Event Location"
1820
  msgstr "Veranstaltungsort"
1821
 
@@ -1847,65 +1979,65 @@ msgstr "Bild wählen"
1847
  msgid "Don't show map in single event page"
1848
  msgstr "Karte in Einzelansicht nicht anzeigen"
1849
 
1850
- #: app/features/mec.php:196 app/features/mec/meta_boxes/filter.php:104
1851
- #: app/features/organizers.php:59 app/libraries/main.php:4106
1852
  msgid "Organizers"
1853
  msgstr "Veranstalter"
1854
 
1855
- #: app/features/mec.php:197 app/features/mec.php:211
1856
- #: app/features/mec/dashboard.php:96
1857
  msgid "Shortcodes"
1858
  msgstr "Shortcodes"
1859
 
1860
- #: app/features/mec.php:198
1861
  msgid "MEC - Settings"
1862
  msgstr "MEC - Einstellungen"
1863
 
1864
- #: app/features/mec.php:213
1865
  msgid "Add Shortcode"
1866
  msgstr "Shortcode hinzufügen"
1867
 
1868
- #: app/features/mec.php:214
1869
  msgid "Add New Shortcode"
1870
  msgstr "Neuen Shortcode hinzufügen"
1871
 
1872
- #: app/features/mec.php:215
1873
  msgid "No shortcodes found!"
1874
  msgstr "Keine Shortcodes gefunden!"
1875
 
1876
- #: app/features/mec.php:216
1877
  msgid "All Shortcodes"
1878
  msgstr "Alle Shortcodes"
1879
 
1880
- #: app/features/mec.php:217
1881
  msgid "Edit shortcodes"
1882
  msgstr "Shortcode ändern"
1883
 
1884
- #: app/features/mec.php:218
1885
  msgid "No shortcodes found in Trash!"
1886
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
1887
 
1888
- #: app/features/mec.php:265
1889
  msgid "Display Options"
1890
  msgstr "Darstellungsoptionen"
1891
 
1892
- #: app/features/mec.php:266
1893
  msgid "Filter Options"
1894
  msgstr "Filteroptionen"
1895
 
1896
- #: app/features/mec.php:268
1897
  msgid "Search Form"
1898
  msgstr "Suche Formular"
1899
 
1900
- #: app/features/mec.php:556
1901
  msgid "Single Event Display Method"
1902
  msgstr "Single Event Anzeigemethode"
1903
 
1904
- #: app/features/mec.php:561
1905
  msgid "Separate Window"
1906
  msgstr "Separates Fenster"
1907
 
1908
- #: app/features/mec.php:562
1909
  msgid "Modal 1"
1910
  msgstr "Modal 1"
1911
 
@@ -1927,11 +2059,15 @@ msgstr ""
1927
  msgid "Modern Event Calendar (Lite)"
1928
  msgstr ""
1929
 
1930
- #: app/features/mec/dashboard.php:70
 
 
 
 
1931
  msgid "Version"
1932
  msgstr "Version"
1933
 
1934
- #: app/features/mec/dashboard.php:79
1935
  #, php-format
1936
  msgid ""
1937
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -1939,19 +2075,19 @@ msgid ""
1939
  "Spots, etc you should %s to the Pro version."
1940
  msgstr ""
1941
 
1942
- #: app/features/mec/dashboard.php:79
1943
  msgid "lite"
1944
  msgstr ""
1945
 
1946
- #: app/features/mec/dashboard.php:79
1947
  msgid "upgrade"
1948
  msgstr ""
1949
 
1950
- #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1951
  msgid "Documentation"
1952
  msgstr "Dokumentation"
1953
 
1954
- #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1955
  msgid ""
1956
  "Our documentation is simple and functional with full details and cover all "
1957
  "essential aspects from beginning to the most advanced parts."
@@ -1960,22 +2096,22 @@ msgstr ""
1960
  "deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
1961
  "ab."
1962
 
1963
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1964
  msgid "DOCUMENTATION"
1965
  msgstr "Dokumentation"
1966
 
1967
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1968
  msgid "Support Forum"
1969
  msgstr "Support Forum"
1970
 
1971
- #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1972
  msgid ""
1973
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1974
  "If you want to use this service you need to upgrade your plugin to Pro "
1975
  "version. Click on the following button."
1976
  msgstr ""
1977
 
1978
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1979
  msgid ""
1980
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1981
  "If you have any issues please don't hesitate to contact us, we will reply as "
@@ -1985,80 +2121,80 @@ msgstr ""
1985
  "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
1986
  "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
1987
 
1988
- #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1989
  msgid "GO PREMIUM"
1990
  msgstr ""
1991
 
1992
- #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1993
  msgid "OPEN A TICKET"
1994
  msgstr "Ein Ticket eröffnen"
1995
 
1996
- #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1997
  msgid "Upcoming Events"
1998
  msgstr "Kommende Veranstaltungen"
1999
 
2000
- #: app/features/mec/dashboard.php:181
2001
  msgid "Popular Gateways"
2002
  msgstr "Beliebte Zahlungsgateways"
2003
 
2004
- #: app/features/mec/dashboard.php:232
2005
  msgid "Total Bookings"
2006
  msgstr "Gesamte Buchungen"
2007
 
2008
- #: app/features/mec/dashboard.php:259
2009
  msgid "This Month"
2010
  msgstr "Diesen Monat"
2011
 
2012
- #: app/features/mec/dashboard.php:260
2013
  msgid "Last Month"
2014
  msgstr "Letzten Monat"
2015
 
2016
- #: app/features/mec/dashboard.php:261
2017
  msgid "This Year"
2018
  msgstr "Diese Jahr"
2019
 
2020
- #: app/features/mec/dashboard.php:262
2021
  msgid "Last Year"
2022
  msgstr "Letztes Jahr"
2023
 
2024
- #: app/features/mec/dashboard.php:274
2025
  msgid "Bar"
2026
  msgstr "Bar"
2027
 
2028
- #: app/features/mec/dashboard.php:275
2029
  msgid "Line"
2030
  msgstr "Linie"
2031
 
2032
- #: app/features/mec/dashboard.php:277
2033
  msgid "Filter"
2034
  msgstr "Filter"
2035
 
2036
- #: app/features/mec/dashboard.php:293
2037
  #, php-format
2038
  msgid "Total Sells (%s)"
2039
  msgstr "Alle Verkäufe (%s)"
2040
 
2041
- #: app/features/mec/dashboard.php:314
2042
  msgid "Change Log"
2043
  msgstr "Änderungsprotokoll"
2044
 
2045
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2046
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2047
- #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
2048
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2049
  msgid "Styling Options"
2050
  msgstr "Styling-Optionen"
2051
 
2052
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2053
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2054
- #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
2055
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2056
  msgid "Custom CSS"
2057
  msgstr "Custom CSS"
2058
 
2059
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2060
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2061
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
2062
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2063
  #: app/features/mec/support.php:64
2064
  msgid "Messages"
@@ -2066,7 +2202,7 @@ msgstr "Nachrichten"
2066
 
2067
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2068
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2069
- #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
2070
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2071
  #: app/features/mec/support.php:84
2072
  msgid "Support"
@@ -2079,9 +2215,9 @@ msgstr "Support"
2079
  #: app/features/mec/notifications.php:425
2080
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2081
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2082
- #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
2083
- #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
2084
- #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
2085
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2086
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2087
  #: app/features/mec/styling.php:335
@@ -2090,14 +2226,14 @@ msgstr "Änderungen sichern"
2090
 
2091
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2092
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2093
- #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2094
  #: app/features/mec/styling.php:313
2095
  msgid "Saved"
2096
  msgstr "Gesichert"
2097
 
2098
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2099
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2100
- #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2101
  #: app/features/mec/styling.php:314
2102
  msgid "Settings Saved!"
2103
  msgstr ""
@@ -2118,37 +2254,24 @@ msgstr ""
2118
  msgid "Skin"
2119
  msgstr "Skin"
2120
 
2121
- #: app/features/mec/meta_boxes/display_options.php:32
2122
- #: app/features/mec/meta_boxes/display_options.php:117
2123
- #: app/features/mec/meta_boxes/display_options.php:219
2124
- #: app/features/mec/meta_boxes/display_options.php:367
2125
- #: app/features/mec/meta_boxes/display_options.php:411
2126
- #: app/features/mec/meta_boxes/display_options.php:563
2127
- #: app/features/mec/meta_boxes/display_options.php:652
2128
- #: app/features/mec/meta_boxes/display_options.php:691
2129
- #: app/features/mec/meta_boxes/display_options.php:759
2130
- #: app/features/mec/meta_boxes/display_options.php:819
2131
- msgid "Style"
2132
- msgstr "Style"
2133
-
2134
  #: app/features/mec/meta_boxes/display_options.php:34
2135
- #: app/features/mec/meta_boxes/display_options.php:119
2136
- #: app/features/mec/meta_boxes/display_options.php:413
2137
- #: app/features/mec/meta_boxes/display_options.php:654
2138
  msgid "Classic"
2139
  msgstr "Klassisch"
2140
 
2141
  #: app/features/mec/meta_boxes/display_options.php:35
2142
- #: app/features/mec/meta_boxes/display_options.php:121
2143
  msgid "Minimal"
2144
  msgstr "Minimal"
2145
 
2146
  #: app/features/mec/meta_boxes/display_options.php:36
2147
- #: app/features/mec/meta_boxes/display_options.php:122
2148
- #: app/features/mec/meta_boxes/display_options.php:369
2149
- #: app/features/mec/meta_boxes/display_options.php:415
2150
- #: app/features/mec/meta_boxes/display_options.php:565
2151
- #: app/features/mec/meta_boxes/display_options.php:656
2152
  msgid "Modern"
2153
  msgstr "Modern"
2154
 
@@ -2161,86 +2284,86 @@ msgid "Accordion"
2161
  msgstr "Accordion"
2162
 
2163
  #: app/features/mec/meta_boxes/display_options.php:44
2164
- #: app/features/mec/meta_boxes/display_options.php:131
2165
- #: app/features/mec/meta_boxes/display_options.php:227
2166
- #: app/features/mec/meta_boxes/display_options.php:458
2167
- #: app/features/mec/meta_boxes/display_options.php:491
2168
- #: app/features/mec/meta_boxes/display_options.php:615
2169
- #: app/features/mec/meta_boxes/display_options.php:769
2170
- #: app/features/mec/meta_boxes/display_options.php:831
2171
  msgid "Today"
2172
  msgstr "Heute"
2173
 
2174
  #: app/features/mec/meta_boxes/display_options.php:45
2175
- #: app/features/mec/meta_boxes/display_options.php:132
2176
- #: app/features/mec/meta_boxes/display_options.php:228
2177
- #: app/features/mec/meta_boxes/display_options.php:459
2178
- #: app/features/mec/meta_boxes/display_options.php:492
2179
- #: app/features/mec/meta_boxes/display_options.php:616
2180
- #: app/features/mec/meta_boxes/display_options.php:770
2181
- #: app/features/mec/meta_boxes/display_options.php:832
2182
  msgid "Tomorrow"
2183
  msgstr "Morgen"
2184
 
2185
  #: app/features/mec/meta_boxes/display_options.php:46
2186
- #: app/features/mec/meta_boxes/display_options.php:133
2187
- #: app/features/mec/meta_boxes/display_options.php:229
2188
- #: app/features/mec/meta_boxes/display_options.php:276
2189
- #: app/features/mec/meta_boxes/display_options.php:421
2190
- #: app/features/mec/meta_boxes/display_options.php:460
2191
- #: app/features/mec/meta_boxes/display_options.php:493
2192
- #: app/features/mec/meta_boxes/display_options.php:528
2193
- #: app/features/mec/meta_boxes/display_options.php:574
2194
- #: app/features/mec/meta_boxes/display_options.php:617
2195
- #: app/features/mec/meta_boxes/display_options.php:771
2196
- #: app/features/mec/meta_boxes/display_options.php:833
2197
  msgid "Start of Current Month"
2198
  msgstr "Mit Beginn des laufenden Monats"
2199
 
2200
  #: app/features/mec/meta_boxes/display_options.php:47
2201
- #: app/features/mec/meta_boxes/display_options.php:134
2202
- #: app/features/mec/meta_boxes/display_options.php:230
2203
- #: app/features/mec/meta_boxes/display_options.php:277
2204
- #: app/features/mec/meta_boxes/display_options.php:422
2205
- #: app/features/mec/meta_boxes/display_options.php:461
2206
- #: app/features/mec/meta_boxes/display_options.php:494
2207
- #: app/features/mec/meta_boxes/display_options.php:529
2208
- #: app/features/mec/meta_boxes/display_options.php:575
2209
- #: app/features/mec/meta_boxes/display_options.php:618
2210
- #: app/features/mec/meta_boxes/display_options.php:772
2211
- #: app/features/mec/meta_boxes/display_options.php:834
2212
  msgid "Start of Next Month"
2213
  msgstr "Mit Beginn des kommenden Monats"
2214
 
2215
  #: app/features/mec/meta_boxes/display_options.php:48
2216
- #: app/features/mec/meta_boxes/display_options.php:135
2217
- #: app/features/mec/meta_boxes/display_options.php:231
2218
- #: app/features/mec/meta_boxes/display_options.php:278
2219
- #: app/features/mec/meta_boxes/display_options.php:377
2220
- #: app/features/mec/meta_boxes/display_options.php:423
2221
- #: app/features/mec/meta_boxes/display_options.php:462
2222
- #: app/features/mec/meta_boxes/display_options.php:495
2223
- #: app/features/mec/meta_boxes/display_options.php:530
2224
- #: app/features/mec/meta_boxes/display_options.php:576
2225
- #: app/features/mec/meta_boxes/display_options.php:619
2226
- #: app/features/mec/meta_boxes/display_options.php:773
2227
- #: app/features/mec/meta_boxes/display_options.php:835
2228
  msgid "On a certain date"
2229
  msgstr "An einem bestimmten Tag"
2230
 
2231
  #: app/features/mec/meta_boxes/display_options.php:51
2232
- #: app/features/mec/meta_boxes/display_options.php:138
2233
- #: app/features/mec/meta_boxes/display_options.php:234
2234
- #: app/features/mec/meta_boxes/display_options.php:281
2235
- #: app/features/mec/meta_boxes/display_options.php:380
2236
- #: app/features/mec/meta_boxes/display_options.php:426
2237
- #: app/features/mec/meta_boxes/display_options.php:465
2238
- #: app/features/mec/meta_boxes/display_options.php:499
2239
- #: app/features/mec/meta_boxes/display_options.php:533
2240
- #: app/features/mec/meta_boxes/display_options.php:579
2241
- #: app/features/mec/meta_boxes/display_options.php:622
2242
- #: app/features/mec/meta_boxes/display_options.php:776
2243
- #: app/features/mec/meta_boxes/display_options.php:838
2244
  #, php-format
2245
  msgid "eg. %s"
2246
  msgstr "z.B. %s"
@@ -2250,36 +2373,36 @@ msgstr "z.B. %s"
2250
  #: app/features/mec/meta_boxes/display_options.php:67
2251
  #: app/features/mec/meta_boxes/display_options.php:74
2252
  #: app/features/mec/meta_boxes/display_options.php:79
2253
- #: app/features/mec/meta_boxes/display_options.php:142
2254
- #: app/features/mec/meta_boxes/display_options.php:147
2255
- #: app/features/mec/meta_boxes/display_options.php:153
2256
- #: app/features/mec/meta_boxes/display_options.php:159
2257
- #: app/features/mec/meta_boxes/display_options.php:166
2258
- #: app/features/mec/meta_boxes/display_options.php:171
2259
- #: app/features/mec/meta_boxes/display_options.php:178
2260
- #: app/features/mec/meta_boxes/display_options.php:238
2261
- #: app/features/mec/meta_boxes/display_options.php:384
2262
- #: app/features/mec/meta_boxes/display_options.php:626
2263
- #: app/features/mec/meta_boxes/display_options.php:660
2264
- #: app/features/mec/meta_boxes/display_options.php:667
2265
- #: app/features/mec/meta_boxes/display_options.php:673
2266
- #: app/features/mec/meta_boxes/display_options.php:699
2267
- #: app/features/mec/meta_boxes/display_options.php:704
2268
- #: app/features/mec/meta_boxes/display_options.php:709
2269
  #: app/features/mec/meta_boxes/display_options.php:739
2270
- #: app/features/mec/meta_boxes/display_options.php:780
2271
- #: app/features/mec/meta_boxes/display_options.php:787
2272
- #: app/features/mec/meta_boxes/display_options.php:792
2273
- #: app/features/mec/meta_boxes/display_options.php:842
2274
- #: app/features/mec/meta_boxes/display_options.php:849
2275
- #: app/features/mec/meta_boxes/display_options.php:856
2276
- #: app/features/mec/meta_boxes/display_options.php:863
2277
- #: app/features/mec/meta_boxes/display_options.php:870
 
2278
  msgid "Date Formats"
2279
  msgstr "Datumsformate"
2280
 
2281
  #: app/features/mec/meta_boxes/display_options.php:57
2282
- #: app/features/mec/meta_boxes/display_options.php:168
2283
  msgid "Default value is \"M d Y\""
2284
  msgstr "Standard Wert ist \"M T J\""
2285
 
@@ -2288,13 +2411,13 @@ msgid "Default values are d, M and l"
2288
  msgstr "Standard Werte sind T, M und J"
2289
 
2290
  #: app/features/mec/meta_boxes/display_options.php:71
2291
- #: app/features/mec/meta_boxes/display_options.php:163
2292
- #: app/features/mec/meta_boxes/display_options.php:175
2293
- #: app/features/mec/meta_boxes/display_options.php:846
2294
- #: app/features/mec/meta_boxes/display_options.php:853
2295
- #: app/features/mec/meta_boxes/display_options.php:860
2296
- #: app/features/mec/meta_boxes/display_options.php:867
2297
- #: app/features/mec/meta_boxes/display_options.php:874
2298
  msgid "Default values are d, F and l"
2299
  msgstr ""
2300
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
@@ -2304,293 +2427,316 @@ msgid "Default value is \"M d\""
2304
  msgstr "Standard Wert ist \"M T\""
2305
 
2306
  #: app/features/mec/meta_boxes/display_options.php:82
2307
- #: app/features/mec/meta_boxes/display_options.php:150
2308
  msgid "Default values are d and F"
2309
  msgstr "Die Standardwerte sind d and F"
2310
 
2311
  #: app/features/mec/meta_boxes/display_options.php:85
2312
- #: app/features/mec/meta_boxes/display_options.php:194
2313
- #: app/features/mec/meta_boxes/display_options.php:244
2314
- #: app/features/mec/meta_boxes/display_options.php:632
2315
- #: app/features/mec/meta_boxes/display_options.php:806
2316
- #: app/features/mec/meta_boxes/display_options.php:877
2317
  msgid "Limit"
2318
  msgstr "Limit"
2319
 
2320
  #: app/features/mec/meta_boxes/display_options.php:86
2321
- #: app/features/mec/meta_boxes/display_options.php:195
2322
- #: app/features/mec/meta_boxes/display_options.php:245
2323
- #: app/features/mec/meta_boxes/display_options.php:391
2324
- #: app/features/mec/meta_boxes/display_options.php:431
2325
- #: app/features/mec/meta_boxes/display_options.php:504
2326
- #: app/features/mec/meta_boxes/display_options.php:538
2327
- #: app/features/mec/meta_boxes/display_options.php:584
2328
- #: app/features/mec/meta_boxes/display_options.php:807
2329
- #: app/features/mec/meta_boxes/display_options.php:878
2330
  msgid "eg. 6"
2331
  msgstr "z.B. 6"
2332
 
2333
  #: app/features/mec/meta_boxes/display_options.php:90
2334
- #: app/features/mec/meta_boxes/display_options.php:199
2335
- #: app/features/mec/meta_boxes/display_options.php:249
2336
  msgid "Load More Button"
2337
  msgstr "Button \"Weitere Veranstaltungen Laden\""
2338
 
2339
  #: app/features/mec/meta_boxes/display_options.php:100
2340
- #: app/features/mec/meta_boxes/display_options.php:259
2341
  msgid "Show Month Divider"
2342
  msgstr "Zeige Monatsteilung"
2343
 
2344
- #: app/features/mec/meta_boxes/display_options.php:120
2345
- #: app/features/mec/meta_boxes/display_options.php:221
2346
- #: app/features/mec/meta_boxes/display_options.php:414
2347
- #: app/features/mec/meta_boxes/display_options.php:566
2348
- #: app/features/mec/meta_boxes/display_options.php:655
 
 
 
 
 
 
 
2349
  msgid "Clean"
2350
  msgstr "Clean"
2351
 
2352
- #: app/features/mec/meta_boxes/display_options.php:123
2353
  msgid "Simple"
2354
  msgstr "Schlicht"
2355
 
2356
- #: app/features/mec/meta_boxes/display_options.php:124
2357
  msgid "Colorful"
2358
  msgstr "Farbenfroh"
2359
 
2360
- #: app/features/mec/meta_boxes/display_options.php:125
 
 
2361
  msgid "Novel"
2362
  msgstr ""
2363
 
2364
- #: app/features/mec/meta_boxes/display_options.php:144
2365
- #: app/features/mec/meta_boxes/display_options.php:180
2366
  msgid "Default value is \"d F Y\""
2367
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
2368
 
2369
- #: app/features/mec/meta_boxes/display_options.php:156
2370
  msgid "Default values are d and M"
2371
  msgstr "Standardwerte sind T und M"
2372
 
2373
- #: app/features/mec/meta_boxes/display_options.php:183
2374
- #: app/features/mec/meta_boxes/display_options.php:797
2375
  msgid "Count in row"
2376
  msgstr "Zeilen zählen"
2377
 
2378
- #: app/features/mec/meta_boxes/display_options.php:214
2379
- #: app/features/mec/meta_boxes/display_options.php:362
2380
- #: app/features/mec/meta_boxes/display_options.php:451
2381
- #: app/features/mec/meta_boxes/display_options.php:558
2382
- #: app/features/mec/meta_boxes/display_options.php:734
2383
- #: app/libraries/skins.php:247
2384
  #, php-format
2385
  msgid "%s is required to use this skin."
2386
  msgstr ""
2387
 
2388
- #: app/features/mec/meta_boxes/display_options.php:241
2389
- #: app/features/mec/meta_boxes/display_options.php:387
2390
  msgid "Default values are l and F j"
2391
  msgstr "Die Standardwerte sind I und F j"
2392
 
2393
- #: app/features/mec/meta_boxes/display_options.php:285
2394
  msgid "Default View"
2395
  msgstr "Standardansicht"
2396
 
2397
- #: app/features/mec/meta_boxes/display_options.php:287
2398
- #: app/features/mec/meta_boxes/display_options.php:296
2399
- #: app/libraries/main.php:324 app/libraries/main.php:1134
2400
  msgid "List View"
2401
  msgstr "Listenansicht"
2402
 
2403
- #: app/features/mec/meta_boxes/display_options.php:288
2404
- #: app/features/mec/meta_boxes/display_options.php:306
2405
- #: app/libraries/main.php:328 app/libraries/main.php:1128
2406
  msgid "Yearly View"
2407
  msgstr "Jahresansicht"
2408
 
2409
- #: app/features/mec/meta_boxes/display_options.php:289
2410
- #: app/features/mec/meta_boxes/display_options.php:316
2411
  msgid "Monthly/Calendar View"
2412
  msgstr "Monatliche Kalenderansicht"
2413
 
2414
- #: app/features/mec/meta_boxes/display_options.php:290
2415
- #: app/features/mec/meta_boxes/display_options.php:326
2416
- #: app/libraries/main.php:331 app/libraries/main.php:1130
2417
  msgid "Weekly View"
2418
  msgstr "Wochenansicht"
2419
 
2420
- #: app/features/mec/meta_boxes/display_options.php:291
2421
- #: app/features/mec/meta_boxes/display_options.php:336
2422
- #: app/libraries/main.php:330 app/libraries/main.php:1131
2423
  msgid "Daily View"
2424
  msgstr "Tagesansicht"
2425
 
2426
- #: app/features/mec/meta_boxes/display_options.php:344
 
 
 
 
 
 
2427
  msgid "The price shows only in List View."
2428
  msgstr ""
2429
 
2430
- #: app/features/mec/meta_boxes/display_options.php:347
2431
  msgid "Display Event Price"
2432
  msgstr ""
2433
 
2434
- #: app/features/mec/meta_boxes/display_options.php:375
2435
  msgid "Start of Current Year"
2436
  msgstr "Mit Beginn des laufenden Jahres"
2437
 
2438
- #: app/features/mec/meta_boxes/display_options.php:376
2439
  msgid "Start of Next Year"
2440
  msgstr "Start des nächsten Jahres"
2441
 
2442
- #: app/features/mec/meta_boxes/display_options.php:390
2443
- #: app/features/mec/meta_boxes/display_options.php:430
2444
- #: app/features/mec/meta_boxes/display_options.php:503
2445
- #: app/features/mec/meta_boxes/display_options.php:537
2446
- #: app/features/mec/meta_boxes/display_options.php:583
2447
  msgid "Events per day"
2448
  msgstr "Veranstaltungen pro Tag"
2449
 
2450
- #: app/features/mec/meta_boxes/display_options.php:395
2451
- #: app/features/mec/meta_boxes/display_options.php:435
2452
- #: app/features/mec/meta_boxes/display_options.php:508
2453
- #: app/features/mec/meta_boxes/display_options.php:542
2454
- #: app/features/mec/meta_boxes/display_options.php:589
2455
  msgid "Next/Previous Buttons"
2456
  msgstr "Schaltfläche \"Nächste/Letzte\""
2457
 
2458
- #: app/features/mec/meta_boxes/display_options.php:403
2459
  msgid "For showing next/previous year navigation."
2460
  msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
2461
 
2462
- #: app/features/mec/meta_boxes/display_options.php:443
2463
- #: app/features/mec/meta_boxes/display_options.php:516
2464
- #: app/features/mec/meta_boxes/display_options.php:550
2465
- #: app/features/mec/meta_boxes/display_options.php:597
2466
  msgid "For showing next/previous month navigation."
2467
  msgstr "Für die Navigation zum nächsten/letzten Monat"
2468
 
2469
- #: app/features/mec/meta_boxes/display_options.php:469
2470
  msgid "Maximum events"
2471
  msgstr "Veranstaltungsmaximum"
2472
 
2473
- #: app/features/mec/meta_boxes/display_options.php:470
2474
  msgid "eg. 200"
2475
  msgstr "z.B. 200"
2476
 
2477
- #: app/features/mec/meta_boxes/display_options.php:474
2478
  msgid "Geolocation"
2479
  msgstr ""
2480
 
2481
- #: app/features/mec/meta_boxes/display_options.php:482
2482
  msgid "The geolocation feature works only in secure (https) websites."
2483
  msgstr ""
2484
 
2485
- #: app/features/mec/meta_boxes/display_options.php:526
2486
- #: app/features/mec/meta_boxes/display_options.php:572
2487
  msgid "Current Week"
2488
  msgstr "Aktuelle Woche"
2489
 
2490
- #: app/features/mec/meta_boxes/display_options.php:527
2491
- #: app/features/mec/meta_boxes/display_options.php:573
2492
  msgid "Next Week"
2493
  msgstr "Nächste Woche"
2494
 
2495
- #: app/features/mec/meta_boxes/display_options.php:629
2496
- #: app/features/mec/meta_boxes/display_options.php:742
2497
  msgid "Default values are j and F"
2498
  msgstr "Standardwerte sind j und F"
2499
 
2500
- #: app/features/mec/meta_boxes/display_options.php:633
2501
  msgid "eg. 24"
2502
  msgstr "z.B. 24"
2503
 
2504
- #: app/features/mec/meta_boxes/display_options.php:636
2505
  msgid "Filter By"
2506
  msgstr "Filtern nach\n"
2507
 
2508
- #: app/features/mec/meta_boxes/display_options.php:664
 
 
 
 
 
 
 
 
2509
  msgid "Default values are d, M and Y"
2510
  msgstr "Standardwerte sind T, M und J"
2511
 
2512
- #: app/features/mec/meta_boxes/display_options.php:670
2513
  msgid "Default values are \"F d\" and l"
2514
  msgstr ""
2515
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
2516
  "und ausgeschriebener Wochentag"
2517
 
2518
- #: app/features/mec/meta_boxes/display_options.php:675
2519
  msgid "Default value is \"l, F d Y\""
2520
  msgstr ""
2521
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
2522
  "des Monates mit führender 0, Jahr"
2523
 
2524
- #: app/features/mec/meta_boxes/display_options.php:693
2525
  msgid "Style 1"
2526
  msgstr "Stil 1"
2527
 
2528
- #: app/features/mec/meta_boxes/display_options.php:694
2529
  msgid "Style 2"
2530
  msgstr "Stil 2"
2531
 
2532
- #: app/features/mec/meta_boxes/display_options.php:695
2533
  msgid "Style 3"
2534
  msgstr "Stil 3"
2535
 
2536
- #: app/features/mec/meta_boxes/display_options.php:701
2537
- #: app/features/mec/meta_boxes/display_options.php:706
2538
  msgid "Default value is \"j F Y\""
2539
  msgstr "Standardwert ist \"j F Y\""
2540
 
2541
- #: app/features/mec/meta_boxes/display_options.php:713
2542
  msgid "Default values are j, F and Y"
2543
  msgstr ""
2544
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
2545
 
2546
- #: app/features/mec/meta_boxes/display_options.php:718
2547
- #: app/features/mec/meta_boxes/display_options.php:747
2548
  msgid " -- Next Upcoming Event -- "
2549
  msgstr "-- Nächste Veranstaltung--"
2550
 
2551
- #: app/features/mec/meta_boxes/display_options.php:725
2552
  msgid "Background Color"
2553
  msgstr "Hintergrund Farbe"
2554
 
2555
- #: app/features/mec/meta_boxes/display_options.php:761
2556
- #: app/features/mec/meta_boxes/display_options.php:821
2557
  msgid "Type 1"
2558
  msgstr "Typ 1"
2559
 
2560
- #: app/features/mec/meta_boxes/display_options.php:762
2561
- #: app/features/mec/meta_boxes/display_options.php:822
2562
  msgid "Type 2"
2563
  msgstr "Typ 2"
2564
 
2565
- #: app/features/mec/meta_boxes/display_options.php:763
2566
- #: app/features/mec/meta_boxes/display_options.php:823
2567
  msgid "Type 3"
2568
  msgstr "Type 3"
2569
 
2570
- #: app/features/mec/meta_boxes/display_options.php:784
2571
  msgid "Default values are d, F and Y"
2572
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
2573
 
2574
- #: app/features/mec/meta_boxes/display_options.php:789
2575
- #: app/features/mec/meta_boxes/display_options.php:794
2576
  msgid "Default value is \"M d, Y\""
2577
  msgstr "Standardwert ist \"M T, J\""
2578
 
2579
- #: app/features/mec/meta_boxes/display_options.php:810
2580
- #: app/features/mec/meta_boxes/display_options.php:881
2581
  msgid "Auto Play Time"
2582
  msgstr "Auto Play Time"
2583
 
2584
- #: app/features/mec/meta_boxes/display_options.php:811
2585
- #: app/features/mec/meta_boxes/display_options.php:882
2586
  msgid "eg. 3000 default is 3 second"
2587
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
2588
 
2589
- #: app/features/mec/meta_boxes/display_options.php:824
2590
  msgid "Type 4"
2591
  msgstr "Typ 4"
2592
 
2593
- #: app/features/mec/meta_boxes/display_options.php:825
2594
  msgid "Type 5"
2595
  msgstr "Typ 5"
2596
 
@@ -2683,90 +2829,91 @@ msgstr "Such Formular anzeigen"
2683
  #: app/features/mec/meta_boxes/search_form.php:162
2684
  #: app/features/mec/meta_boxes/search_form.php:174
2685
  #: app/features/mec/meta_boxes/search_form.php:181
2686
- #: app/features/mec/meta_boxes/search_form.php:193
2687
  #: app/features/mec/meta_boxes/search_form.php:200
2688
  #: app/features/mec/meta_boxes/search_form.php:207
2689
  #: app/features/mec/meta_boxes/search_form.php:214
2690
  #: app/features/mec/meta_boxes/search_form.php:221
2691
  #: app/features/mec/meta_boxes/search_form.php:228
2692
- #: app/features/mec/meta_boxes/search_form.php:240
2693
  #: app/features/mec/meta_boxes/search_form.php:247
2694
  #: app/features/mec/meta_boxes/search_form.php:254
2695
  #: app/features/mec/meta_boxes/search_form.php:261
2696
  #: app/features/mec/meta_boxes/search_form.php:268
2697
  #: app/features/mec/meta_boxes/search_form.php:275
2698
- #: app/features/mec/meta_boxes/search_form.php:287
2699
  #: app/features/mec/meta_boxes/search_form.php:294
2700
  #: app/features/mec/meta_boxes/search_form.php:301
2701
  #: app/features/mec/meta_boxes/search_form.php:308
2702
  #: app/features/mec/meta_boxes/search_form.php:315
2703
- #: app/features/mec/meta_boxes/search_form.php:327
2704
  #: app/features/mec/meta_boxes/search_form.php:334
2705
  #: app/features/mec/meta_boxes/search_form.php:341
2706
  #: app/features/mec/meta_boxes/search_form.php:348
2707
  #: app/features/mec/meta_boxes/search_form.php:355
2708
  #: app/features/mec/meta_boxes/search_form.php:362
2709
- #: app/features/mec/meta_boxes/search_form.php:374
2710
  #: app/features/mec/meta_boxes/search_form.php:381
2711
  #: app/features/mec/meta_boxes/search_form.php:388
2712
  #: app/features/mec/meta_boxes/search_form.php:395
2713
  #: app/features/mec/meta_boxes/search_form.php:402
2714
  #: app/features/mec/meta_boxes/search_form.php:409
2715
- #: app/features/mec/meta_boxes/search_form.php:421
2716
  #: app/features/mec/meta_boxes/search_form.php:428
2717
  #: app/features/mec/meta_boxes/search_form.php:435
2718
  #: app/features/mec/meta_boxes/search_form.php:442
2719
  #: app/features/mec/meta_boxes/search_form.php:449
2720
  #: app/features/mec/meta_boxes/search_form.php:456
2721
- #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2722
- #: app/features/mec/settings.php:554
 
2723
  msgid "Disabled"
2724
  msgstr "Deaktiviert"
2725
 
2726
  #: app/features/mec/meta_boxes/search_form.php:59
2727
  #: app/features/mec/meta_boxes/search_form.php:106
2728
  #: app/features/mec/meta_boxes/search_form.php:153
2729
- #: app/features/mec/meta_boxes/search_form.php:172
2730
- #: app/features/mec/meta_boxes/search_form.php:219
2731
- #: app/features/mec/meta_boxes/search_form.php:266
2732
- #: app/features/mec/meta_boxes/search_form.php:353
2733
- #: app/features/mec/meta_boxes/search_form.php:400
2734
- #: app/features/mec/meta_boxes/search_form.php:447
2735
- msgid "Month Filter"
2736
- msgstr "Monatsfilter"
2737
-
2738
- #: app/features/mec/meta_boxes/search_form.php:66
2739
- #: app/features/mec/meta_boxes/search_form.php:113
2740
- #: app/features/mec/meta_boxes/search_form.php:160
2741
  #: app/features/mec/meta_boxes/search_form.php:179
2742
  #: app/features/mec/meta_boxes/search_form.php:226
2743
  #: app/features/mec/meta_boxes/search_form.php:273
2744
- #: app/features/mec/meta_boxes/search_form.php:313
2745
  #: app/features/mec/meta_boxes/search_form.php:360
2746
  #: app/features/mec/meta_boxes/search_form.php:407
2747
  #: app/features/mec/meta_boxes/search_form.php:454
 
 
 
 
 
 
 
 
 
 
 
 
 
2748
  msgid "Text Search"
2749
  msgstr "Textsuche"
2750
 
2751
  #: app/features/mec/meta_boxes/search_form.php:69
2752
  #: app/features/mec/meta_boxes/search_form.php:116
2753
  #: app/features/mec/meta_boxes/search_form.php:163
2754
- #: app/features/mec/meta_boxes/search_form.php:182
2755
- #: app/features/mec/meta_boxes/search_form.php:229
2756
- #: app/features/mec/meta_boxes/search_form.php:276
2757
- #: app/features/mec/meta_boxes/search_form.php:316
2758
- #: app/features/mec/meta_boxes/search_form.php:363
2759
- #: app/features/mec/meta_boxes/search_form.php:410
2760
- #: app/features/mec/meta_boxes/search_form.php:457
2761
  msgid "Text Input"
2762
  msgstr "Text eingeben"
2763
 
2764
- #: app/features/mec/meta_boxes/search_form.php:465
2765
- #: app/features/mec/meta_boxes/search_form.php:471
2766
- #: app/features/mec/meta_boxes/search_form.php:477
2767
- #: app/features/mec/meta_boxes/search_form.php:483
2768
- #: app/features/mec/meta_boxes/search_form.php:489
2769
- #: app/features/mec/meta_boxes/search_form.php:495
2770
  msgid "No Search Options"
2771
  msgstr "Keine Suchoptionen"
2772
 
@@ -3014,7 +3161,7 @@ msgstr "Mehrere Empfänger einfügen, durch Komma getrennt."
3014
  msgid "Email/Booking verification link."
3015
  msgstr "Bestätigungslink für Email/Buchung"
3016
 
3017
- #: app/features/mec/notifications.php:189 app/features/mec/settings.php:995
3018
  msgid "Booking Confirmation"
3019
  msgstr "Buchungsbestätigung"
3020
 
@@ -3103,7 +3250,7 @@ msgstr "Titel der Veranstaltung"
3103
  msgid "Status of event"
3104
  msgstr "Status der Veranstaltung"
3105
 
3106
- #: app/features/mec/notifications.php:355 app/features/mec/settings.php:889
3107
  msgid "Event Note"
3108
  msgstr "Veranstaltungsnotiz"
3109
 
@@ -3111,91 +3258,95 @@ msgstr "Veranstaltungsnotiz"
3111
  msgid "Admin events management link."
3112
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3113
 
3114
- #: app/features/mec/settings.php:47
3115
  msgid "Archive Page Options"
3116
  msgstr ""
3117
 
3118
- #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
3119
  msgid "Export Module Options"
3120
  msgstr "Optionen für Export-Module"
3121
 
3122
- #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
3123
  msgid "Local Time Module"
3124
  msgstr "Lokales Zeitmodul"
3125
 
3126
- #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
3127
  msgid "QR Code Module"
3128
  msgstr "QR Code Module"
3129
 
3130
- #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
3131
- #: app/widgets/SINGLE.php:142
3132
  msgid "Weather Module"
3133
  msgstr "Wettermodul"
3134
 
3135
- #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
3136
  msgid "Additional Organizers"
3137
  msgstr "Zusätzliche Organisatoren"
3138
 
3139
- #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3140
  msgid "Taxes / Fees"
3141
  msgstr "Steuern/Gebühren"
3142
 
3143
- #: app/features/mec/settings.php:255
 
 
 
 
3144
  msgid "Time Format"
3145
  msgstr "Zeitformat"
3146
 
3147
- #: app/features/mec/settings.php:258
3148
  msgid "12 hours format with AM/PM"
3149
  msgstr "12-Stunden-Format mit AM/FM"
3150
 
3151
- #: app/features/mec/settings.php:259
3152
  msgid "24 hours format"
3153
  msgstr "24-Stunden-Format"
3154
 
3155
- #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3156
  msgid ""
3157
  "This option is for showing start/end time of events on frontend of website."
3158
  msgstr ""
3159
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3160
  "anzuzeigen"
3161
 
3162
- #: app/features/mec/settings.php:266
3163
  msgid "Hide Events"
3164
  msgstr "Events verbergen"
3165
 
3166
- #: app/features/mec/settings.php:269
3167
  msgid "On Event Start"
3168
  msgstr "Am Event Start"
3169
 
3170
- #: app/features/mec/settings.php:270
3171
  msgid "+1 Hour after start"
3172
  msgstr "+1 Stunde nach dem Start"
3173
 
3174
- #: app/features/mec/settings.php:271
3175
  msgid "+2 Hours after start"
3176
  msgstr "+2 Stunden nach dem Start"
3177
 
3178
- #: app/features/mec/settings.php:272
3179
  msgid "On Event End"
3180
  msgstr "Am Event Ende"
3181
 
3182
- #: app/features/mec/settings.php:280
3183
  msgid "Multiple Day Events"
3184
  msgstr "Mehrtagesveranstaltung"
3185
 
3186
- #: app/features/mec/settings.php:283
3187
  msgid "Show only first day on List/Grid/Slider skins"
3188
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3189
 
3190
- #: app/features/mec/settings.php:284
3191
  msgid "Show only first day on all skins"
3192
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3193
 
3194
- #: app/features/mec/settings.php:285
3195
  msgid "Show all days"
3196
  msgstr "Alle Tage anzeigen"
3197
 
3198
- #: app/features/mec/settings.php:287
3199
  msgid ""
3200
  "For showing all days of multiple day events on frontend or only show the "
3201
  "first day."
@@ -3203,27 +3354,27 @@ msgstr ""
3203
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3204
  "den ersten Tag anzeigen"
3205
 
3206
- #: app/features/mec/settings.php:293
3207
  msgid "Remove MEC Data on Plugin Uninstall"
3208
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3209
 
3210
- #: app/features/mec/settings.php:297
3211
  msgid "Enabled"
3212
  msgstr "Aktiviert"
3213
 
3214
- #: app/features/mec/settings.php:303
3215
  msgid "Exclude Date Suffix"
3216
  msgstr "Ausschlussdatum Suffix"
3217
 
3218
- #: app/features/mec/settings.php:306
3219
  msgid "Remove suffix from calendars"
3220
  msgstr "Suffix aus den Kalendern entfernen"
3221
 
3222
- #: app/features/mec/settings.php:313 app/libraries/main.php:4111
3223
  msgid "Weekdays"
3224
  msgstr "Wochentage"
3225
 
3226
- #: app/features/mec/settings.php:321
3227
  msgid ""
3228
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3229
  "and Friday."
@@ -3231,63 +3382,63 @@ msgstr ""
3231
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3232
  "Donnerstag und Freitag gesetzt."
3233
 
3234
- #: app/features/mec/settings.php:328
3235
  msgid "Weekends"
3236
  msgstr "Wochenenden"
3237
 
3238
- #: app/features/mec/settings.php:336
3239
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3240
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3241
 
3242
- #: app/features/mec/settings.php:344
3243
  msgid "Archive Pages"
3244
  msgstr ""
3245
 
3246
- #: app/features/mec/settings.php:347
3247
  msgid "Archive Page Title"
3248
  msgstr "Titel der Archivseite"
3249
 
3250
- #: app/features/mec/settings.php:350
3251
  msgid "Default value is Events"
3252
  msgstr "Der Standardwert ist Ereignisse (Events)"
3253
 
3254
- #: app/features/mec/settings.php:355
3255
  msgid "Archive Page Skin"
3256
  msgstr "Skin Seite Archiv"
3257
 
3258
- #: app/features/mec/settings.php:362
3259
  msgid "Default value is Calendar/Monthly View"
3260
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3261
 
3262
- #: app/features/mec/settings.php:367
3263
  msgid "Category Page Skin"
3264
  msgstr "Kategorie Seiten Skin"
3265
 
3266
- #: app/features/mec/settings.php:374
3267
  msgid "Default value is List View"
3268
  msgstr "Standardwert ist Listenansicht"
3269
 
3270
- #: app/features/mec/settings.php:379
3271
  msgid "Category Events Method"
3272
  msgstr ""
3273
 
3274
- #: app/features/mec/settings.php:383
3275
  msgid "Expired Events"
3276
  msgstr ""
3277
 
3278
- #: app/features/mec/settings.php:385
3279
  msgid "Default value is Upcoming Events"
3280
  msgstr ""
3281
 
3282
- #: app/features/mec/settings.php:390
3283
  msgid "Events Archive Status"
3284
  msgstr "Events Archiv Status"
3285
 
3286
- #: app/features/mec/settings.php:393
3287
  msgid "Enabled (Recommended)"
3288
  msgstr "Ist aktiviert (empfohlen)"
3289
 
3290
- #: app/features/mec/settings.php:396
3291
  msgid ""
3292
  "If you disable it, then you should create a page as archive page of MEC. "
3293
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3297,11 +3448,11 @@ msgstr ""
3297
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3298
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3299
 
3300
- #: app/features/mec/settings.php:406
3301
  msgid "Main Slug"
3302
  msgstr "Main Slug"
3303
 
3304
- #: app/features/mec/settings.php:409
3305
  msgid ""
3306
  "Default value is events. Valid characters are lowercase a-z, - character and "
3307
  "numbers."
@@ -3309,11 +3460,11 @@ msgstr ""
3309
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3310
  "und Zahlen."
3311
 
3312
- #: app/features/mec/settings.php:413
3313
  msgid "Category Slug"
3314
  msgstr "Category Slug"
3315
 
3316
- #: app/features/mec/settings.php:416
3317
  msgid ""
3318
  "It's slug of MEC categories, you can change it to events-cat or something "
3319
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3325,104 +3476,138 @@ msgstr ""
3325
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3326
  "category"
3327
 
3328
- #: app/features/mec/settings.php:426
3329
  msgid "Single Event Date Format"
3330
  msgstr "Einzelveranstaltung Datumformat"
3331
 
3332
- #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3333
  msgid "Default is M d Y"
3334
  msgstr "Standardwert ist M-T-J"
3335
 
3336
- #: app/features/mec/settings.php:433
3337
  msgid "Date Method"
3338
  msgstr "Datum Methode"
3339
 
3340
- #: app/features/mec/settings.php:436
3341
  msgid "Next occurrence date"
3342
  msgstr "Nächstes vorkommende Datum"
3343
 
3344
- #: app/features/mec/settings.php:437
3345
  msgid "Referred date"
3346
  msgstr "Gewünschtes Datum"
3347
 
3348
- #: app/features/mec/settings.php:439
3349
  msgid ""
3350
  "\"Referred date\" shows the event date based on referred date in event list."
3351
  msgstr ""
3352
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3353
  "Datum in der Eventliste an."
3354
 
3355
- #: app/features/mec/settings.php:443
3356
  msgid "Single Event Style"
3357
  msgstr "Single Event Stil"
3358
 
3359
- #: app/features/mec/settings.php:446
3360
  msgid "Default Style"
3361
  msgstr "Standardstil voreingestellt"
3362
 
3363
- #: app/features/mec/settings.php:447
3364
  msgid "Modern Style"
3365
  msgstr "Moderner Stil"
3366
 
3367
- #: app/features/mec/settings.php:449
3368
  msgid "Choose your single event style."
3369
  msgstr "Wählen Sie Ihren Single Event Stil"
3370
 
3371
- #: app/features/mec/settings.php:458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3372
  msgid "Currency"
3373
  msgstr "Währung"
3374
 
3375
- #: app/features/mec/settings.php:468
3376
  msgid "Currency Sign"
3377
  msgstr "Währungssymbol"
3378
 
3379
- #: app/features/mec/settings.php:471
3380
  msgid "Default value will be \"currency\" if you leave it empty."
3381
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3382
 
3383
- #: app/features/mec/settings.php:475
3384
  msgid "Currency Position"
3385
  msgstr "Position des Währungssymbols"
3386
 
3387
- #: app/features/mec/settings.php:478
3388
  msgid "Before $10"
3389
  msgstr "Vor $10"
3390
 
3391
- #: app/features/mec/settings.php:479
3392
  msgid "After 10$"
3393
  msgstr "Nach 10$"
3394
 
3395
- #: app/features/mec/settings.php:484
3396
  msgid "Thousand Separator"
3397
  msgstr "Tausendertrennzeichen"
3398
 
3399
- #: app/features/mec/settings.php:490
3400
  msgid "Decimal Separator"
3401
  msgstr "Dezimaltrennzeichen"
3402
 
3403
- #: app/features/mec/settings.php:500
3404
  msgid "No decimal"
3405
  msgstr "Keine Dezimale"
3406
 
3407
- #: app/features/mec/settings.php:516
 
 
 
 
 
 
 
 
 
 
 
 
3408
  msgid "Show Google Maps on event page"
3409
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3410
 
3411
- #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3412
- #: app/features/mec/settings.php:1140
3413
  msgid "API Key"
3414
  msgstr "API Schlüssel"
3415
 
3416
- #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3417
- #: app/features/mec/settings.php:1150
3418
  msgid "Required!"
3419
  msgstr "Erforderlich (Pflichtfeld)"
3420
 
3421
- #: app/features/mec/settings.php:528
3422
  msgid "Zoom level"
3423
  msgstr "Zoom"
3424
 
3425
- #: app/features/mec/settings.php:535
3426
  msgid ""
3427
  "For Google Maps module in single event page. In Google Maps skin, it will "
3428
  "caculate the zoom level automatically based on event boundaries."
@@ -3431,192 +3616,190 @@ msgstr ""
3431
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3432
  "Angrenzungen"
3433
 
3434
- #: app/features/mec/settings.php:539
3435
  msgid "Google Maps Style"
3436
  msgstr "Google Maps Stil"
3437
 
3438
- #: app/features/mec/settings.php:543
3439
- msgid "Default"
3440
- msgstr "Standardeinstellung"
3441
-
3442
- #: app/features/mec/settings.php:551
3443
  msgid "Direction on single event"
3444
  msgstr "Richtung auf einzelne Veranstaltung"
3445
 
3446
- #: app/features/mec/settings.php:555
3447
  msgid "Simple Method"
3448
  msgstr "Einfache Methode"
3449
 
3450
- #: app/features/mec/settings.php:556
3451
  msgid "Advanced Method"
3452
  msgstr "Fortgeschrittene Methode"
3453
 
3454
- #: app/features/mec/settings.php:561
3455
  msgid "Lightbox Date Format"
3456
  msgstr "Leuchtkasten Datumsformat"
3457
 
3458
- #: app/features/mec/settings.php:564
3459
  msgid "Default value is M d Y"
3460
  msgstr "Standardwert ist M T J"
3461
 
3462
- #: app/features/mec/settings.php:568
3463
  msgid "Google Maps API"
3464
  msgstr "Google Maps API"
3465
 
3466
- #: app/features/mec/settings.php:572
3467
  msgid "Don't load Google Maps API library"
3468
  msgstr "Google Maps API Bibliothek nicht laden"
3469
 
3470
- #: app/features/mec/settings.php:574
3471
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3472
  msgstr ""
3473
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3474
 
3475
- #: app/features/mec/settings.php:586
3476
  msgid "Enable Google Recaptcha"
3477
  msgstr "Google Recaptcha aktivieren"
3478
 
3479
- #: app/features/mec/settings.php:593
3480
  msgid "Enable on booking form"
3481
  msgstr "Auf dem Buchungsformular aktivieren"
3482
 
3483
- #: app/features/mec/settings.php:599
3484
  msgid "Enable on \"Frontend Event Submittion\" form"
3485
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3486
 
3487
- #: app/features/mec/settings.php:603
3488
  msgid "Site Key"
3489
  msgstr "Site Key (Seitenschlüssel)"
3490
 
3491
- #: app/features/mec/settings.php:609
3492
  msgid "Secret Key"
3493
  msgstr "Geheimschlüssel"
3494
 
3495
- #: app/features/mec/settings.php:623
3496
  msgid ""
3497
  "Show export module (iCal export and add to Google calendars) on event page"
3498
  msgstr ""
3499
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3500
  "Google calendars)"
3501
 
3502
- #: app/features/mec/settings.php:630
3503
  msgid "Google Calendar"
3504
  msgstr "Google Calendar"
3505
 
3506
- #: app/features/mec/settings.php:650
3507
  msgid "Show event time based on local time of visitor on event page"
3508
  msgstr ""
3509
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3510
  "Eventseite"
3511
 
3512
- #: app/features/mec/settings.php:666
3513
  msgid "Show QR code of event in details page and booking invoice"
3514
  msgstr ""
3515
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3516
  "an"
3517
 
3518
- #: app/features/mec/settings.php:684
3519
  msgid "Show weather module on event page"
3520
  msgstr "Wettermodul auf der Eventseite anzeigen"
3521
 
3522
- #: app/features/mec/settings.php:692
3523
  #, php-format
3524
  msgid "You can get a free API Key from %s"
3525
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3526
 
3527
- #: app/features/mec/settings.php:704
3528
  msgid "Show countdown module on event page"
3529
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
3530
 
3531
- #: app/features/mec/settings.php:709
3532
  msgid "Countdown Style"
3533
  msgstr "Countdown Stil"
3534
 
3535
- #: app/features/mec/settings.php:712
3536
  msgid "Plain Style"
3537
  msgstr "Einfacher schlichter Stil"
3538
 
3539
- #: app/features/mec/settings.php:713
3540
  msgid "Flip Style"
3541
  msgstr "Flip Stil"
3542
 
3543
- #: app/features/mec/settings.php:725
3544
  msgid "Show social network module"
3545
  msgstr "Modul für Soziale Netzwerke anzeigen"
3546
 
3547
- #: app/features/mec/settings.php:750
3548
  msgid "Show next event module on event page"
3549
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
3550
 
3551
- #: app/features/mec/settings.php:755
3552
  msgid "Method"
3553
  msgstr "Methode"
3554
 
3555
- #: app/features/mec/settings.php:758
3556
  msgid "Next Occurrence of Current Event"
3557
  msgstr "Nächstes Auftreten des aktuellen Events"
3558
 
3559
- #: app/features/mec/settings.php:759
3560
  msgid "Next Occurrence of Other Events"
3561
  msgstr "Nächstes Auftreten von anderen Events."
3562
 
3563
- #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3564
  msgid "Date Format"
3565
  msgstr "Datumsformat"
3566
 
3567
- #: app/features/mec/settings.php:776
3568
  msgid "Events List Page"
3569
  msgstr "Seite Liste der Veranstaltungen"
3570
 
3571
- #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3572
  #, php-format
3573
  msgid "Put %s shortcode into the page."
3574
  msgstr "%s shortcode in die Seite einfügen"
3575
 
3576
- #: app/features/mec/settings.php:788
3577
  msgid "Add/Edit Events Page"
3578
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
3579
 
3580
- #: app/features/mec/settings.php:802
3581
  msgid "Enable event submission by guest (Not logged-in) users"
3582
  msgstr ""
3583
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
3584
  "erlauben"
3585
 
3586
- #: app/features/mec/settings.php:809
3587
  msgid "Enable mandatory email and name for guest user"
3588
  msgstr ""
3589
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
3590
 
3591
- #: app/features/mec/settings.php:813
3592
  msgid "Frontend Event Submission Sections"
3593
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
3594
 
3595
- #: app/features/mec/settings.php:835 app/widgets/SINGLE.php:118
3596
  msgid "Event Categories"
3597
  msgstr "Veranstaltungskategorien"
3598
 
3599
- #: app/features/mec/settings.php:841
3600
  msgid "Event Labels"
3601
  msgstr "Event Labels"
3602
 
3603
- #: app/features/mec/settings.php:853
3604
  msgid "Event Tags"
3605
  msgstr "Event Schlagworte"
3606
 
3607
- #: app/features/mec/settings.php:865 app/widgets/SINGLE.php:122
3608
  msgid "Event Organizer"
3609
  msgstr "Veranstaltungsmanager"
3610
 
3611
- #: app/features/mec/settings.php:877
3612
  msgid "Booking Options"
3613
  msgstr "Buchungsoptionen"
3614
 
3615
- #: app/features/mec/settings.php:883
3616
- msgid "Fees/Taxes Options"
 
 
3617
  msgstr "Gebühren/Steuer Optionen"
3618
 
3619
- #: app/features/mec/settings.php:891
3620
  #, php-format
3621
  msgid ""
3622
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3628,35 +3811,35 @@ msgstr ""
3628
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
3629
  "erhalten."
3630
 
3631
- #: app/features/mec/settings.php:895
3632
  msgid "Visibility of Note"
3633
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
3634
 
3635
- #: app/features/mec/settings.php:898
3636
  msgid "Always"
3637
  msgstr "Immer"
3638
 
3639
- #: app/features/mec/settings.php:899
3640
  msgid "While event is not published"
3641
  msgstr "Das Ereignis wird nicht veröffentlicht"
3642
 
3643
- #: app/features/mec/settings.php:902
3644
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3645
  msgstr ""
3646
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
3647
  "Ereignis im Backend bearbeitet."
3648
 
3649
- #: app/features/mec/settings.php:908
3650
  msgid "Exceptional days"
3651
  msgstr "Ausgesuchte ausnehmende Tage"
3652
 
3653
- #: app/features/mec/settings.php:912
3654
  msgid "Show exceptional days option on Add/Edit events page"
3655
  msgstr ""
3656
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
3657
  "(Show exceptional days option on Add/Edit events page)"
3658
 
3659
- #: app/features/mec/settings.php:913
3660
  msgid ""
3661
  "Using this option you can include/exclude certain days to/from event "
3662
  "occurrence dates."
@@ -3664,7 +3847,7 @@ msgstr ""
3664
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
3665
  "ausschließen."
3666
 
3667
- #: app/features/mec/settings.php:923
3668
  msgid ""
3669
  "Show additional organizers option on Add/Edit events page and single event "
3670
  "page."
@@ -3672,27 +3855,27 @@ msgstr ""
3672
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
3673
  "bearbeiten und auf der Seite für einzelne Events an."
3674
 
3675
- #: app/features/mec/settings.php:937
3676
  msgid "Enable booking module"
3677
  msgstr "Buchungsmodul aktivieren"
3678
 
3679
- #: app/features/mec/settings.php:945
3680
  msgid "Default is Y-m-d"
3681
  msgstr "Voreinstellung ist J-M-T"
3682
 
3683
- #: app/features/mec/settings.php:949
3684
  msgid "Maximum Dates"
3685
  msgstr "Maximale Anzahl von Daten"
3686
 
3687
- #: app/features/mec/settings.php:951
3688
  msgid "Default is 6"
3689
  msgstr "Die Voreinstellung ist 6"
3690
 
3691
- #: app/features/mec/settings.php:955
3692
  msgid "Thank You Page"
3693
  msgstr "Danke Seite"
3694
 
3695
- #: app/features/mec/settings.php:963
3696
  msgid ""
3697
  "User redirects to this page after booking. Leave it empty if you want to "
3698
  "disable it."
@@ -3700,11 +3883,11 @@ msgstr ""
3700
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3701
  "es leer, wenn Sie es deaktivieren möchten."
3702
 
3703
- #: app/features/mec/settings.php:971
3704
  msgid "Enable Express Attendees Form"
3705
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3706
 
3707
- #: app/features/mec/settings.php:973
3708
  msgid ""
3709
  "Users are able to apply first attendee information for other attendees in "
3710
  "the booking form."
@@ -3712,77 +3895,87 @@ msgstr ""
3712
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
3713
  "Buchungsformular anwenden."
3714
 
3715
- #: app/features/mec/settings.php:976
3716
  msgid "Email verification"
3717
  msgstr "Email-Verifizierung"
3718
 
3719
- #: app/features/mec/settings.php:982
3720
  msgid "Auto verification for free bookings"
3721
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3722
 
3723
- #: app/features/mec/settings.php:991
3724
  msgid "Auto verification for paid bookings"
3725
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3726
 
3727
- #: app/features/mec/settings.php:1001
3728
  msgid "Auto confirmation for free bookings"
3729
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3730
 
3731
- #: app/features/mec/settings.php:1010
3732
  msgid "Auto confirmation for paid bookings"
3733
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3734
 
3735
- #: app/features/mec/settings.php:1027
3736
  msgid "Enable coupons module"
3737
  msgstr "Gutscheinmodul aktivieren"
3738
 
3739
- #: app/features/mec/settings.php:1044
3740
  msgid "Enable taxes / fees module"
3741
  msgstr "Modul für Gebühren/Steuern aktivieren"
3742
 
3743
- #: app/features/mec/settings.php:1049
3744
  msgid "Add Fee"
3745
  msgstr "Gebühr hinzufügen"
3746
 
3747
- #: app/features/mec/settings.php:1105
 
 
 
 
 
 
 
 
 
 
3748
  msgid "Enable BuddyPress Integration"
3749
  msgstr "Buddy Press Integration deaktivieren"
3750
 
3751
- #: app/features/mec/settings.php:1112
3752
  msgid "Show \"Attendees Module\" in event details page"
3753
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
3754
 
3755
- #: app/features/mec/settings.php:1116
3756
  msgid "Attendees Limit"
3757
  msgstr "Teilnehmer Limit, maximale Anzahl"
3758
 
3759
- #: app/features/mec/settings.php:1124
3760
  msgid "Add booking activity to user profile"
3761
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
3762
 
3763
- #: app/features/mec/settings.php:1135
3764
  msgid "Enable Mailchimp Integration"
3765
  msgstr "Mailchimp Integration deaktivieren"
3766
 
3767
- #: app/features/mec/settings.php:1147
3768
  msgid "List ID"
3769
  msgstr "List ID"
3770
 
3771
- #: app/features/mec/settings.php:1154
3772
  msgid "Subscription Status"
3773
  msgstr "Buchungsstatus"
3774
 
3775
- #: app/features/mec/settings.php:1157
3776
  msgid "Subscribe automatically"
3777
  msgstr "automatisch Anmelden/Abonnieren"
3778
 
3779
- #: app/features/mec/settings.php:1158
3780
  msgid "Subscribe by verification"
3781
  msgstr ""
3782
  "Anmelden/Abonnieren durch Bestätigung\n"
3783
  " "
3784
 
3785
- #: app/features/mec/settings.php:1160
3786
  msgid ""
3787
  "If you choose \"Subscribe by verification\" then an email will send to user "
3788
  "by mailchimp for subscription verification."
@@ -3790,25 +3983,25 @@ msgstr ""
3790
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
3791
  "Benutzer per Mailchimp zur Bestätigung gesendet."
3792
 
3793
- #: app/features/mec/settings.php:1170
3794
  #, php-format
3795
  msgid "%s is required to use this section."
3796
  msgstr ""
3797
 
3798
- #: app/features/mec/settings.php:1173
3799
  msgid "Purchase Code"
3800
  msgstr "Kaufcode"
3801
 
3802
- #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3803
- #: app/features/mec/settings.php:1262
3804
  msgid "Verified"
3805
  msgstr "Verifiziert"
3806
 
3807
- #: app/features/mec/settings.php:1180
3808
  msgid "UnVerified"
3809
  msgstr "Unbestätigt"
3810
 
3811
- #: app/features/mec/settings.php:1182
3812
  msgid ""
3813
  "Please insert your purchase code validation. read documentation for more "
3814
  "information."
@@ -3816,31 +4009,31 @@ msgstr ""
3816
  "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
3817
  "Dokumentation für mehr Informationen."
3818
 
3819
- #: app/features/mec/settings.php:1185
3820
  msgid "Product Name"
3821
  msgstr ""
3822
 
3823
- #: app/features/mec/settings.php:1188
3824
  msgid "1 License for MEC Plugin"
3825
  msgstr ""
3826
 
3827
- #: app/features/mec/settings.php:1189
3828
  msgid "5 License for MEC Plugin"
3829
  msgstr ""
3830
 
3831
- #: app/features/mec/settings.php:1190
3832
  msgid "10 License for MEC Plugin"
3833
  msgstr ""
3834
 
3835
- #: app/features/mec/settings.php:1197
3836
  msgid "MEC Deactivation"
3837
  msgstr "MEC Deaktivierung"
3838
 
3839
- #: app/features/mec/settings.php:1199
3840
  msgid "Deactivate"
3841
  msgstr "Deaktivieren"
3842
 
3843
- #: app/features/mec/settings.php:1201
3844
  msgid ""
3845
  "For deactivation first delete your purchase from above field then press save "
3846
  "after that click on deactivate for deactivate this purchase code from this "
@@ -3851,7 +4044,7 @@ msgstr ""
3851
  "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
3852
  "Domain aktivieren."
3853
 
3854
- #: app/features/mec/settings.php:1264
3855
  msgid "Please Refresh Page"
3856
  msgstr "Bitte Seiten Refresh vornehmen"
3857
 
@@ -3950,10 +4143,12 @@ msgid "View all Articles"
3950
  msgstr "Alle Artikel anzeigen"
3951
 
3952
  #: app/features/organizers.php:105 app/features/organizers.php:147
 
3953
  msgid "Insert organizer phone number."
3954
  msgstr "Veranstalter Telefonnummer einfügen"
3955
 
3956
  #: app/features/organizers.php:113 app/features/organizers.php:151
 
3957
  msgid "Insert organizer email address."
3958
  msgstr "Veranstalter Email-Adresse einfügen"
3959
 
@@ -4011,7 +4206,7 @@ msgstr "z.B.. max@mustermann.com"
4011
  msgid "eg. https://webnus.net"
4012
  msgstr "z.B.. http://ihreseite.com/maxmustermann"
4013
 
4014
- #: app/features/organizers.php:300 app/libraries/main.php:4135
4015
  #: app/skins/single.php:194
4016
  msgid "Other Organizers"
4017
  msgstr "Andere Veranstalter"
@@ -4023,16 +4218,77 @@ msgstr ""
4023
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
4024
  "auswählen, wenn Sie möchten."
4025
 
4026
- #: app/libraries/book.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4027
  #, php-format
4028
  msgid "%s Price"
4029
  msgstr "%s Preis"
4030
 
4031
- #: app/libraries/book.php:516
4032
  msgid "Discount"
4033
  msgstr "Rabatt"
4034
 
4035
- #: app/libraries/book.php:604 app/modules/booking/default.php:274
4036
  #: app/modules/booking/default.php:369
4037
  msgid "Download Invoice"
4038
  msgstr "Download Rechnung\n"
@@ -4045,55 +4301,55 @@ msgstr "M.E. Calender"
4045
  msgid "Upgrade to Pro Version"
4046
  msgstr ""
4047
 
4048
- #: app/libraries/factory.php:211
4049
  msgid "Upgrade"
4050
  msgstr ""
4051
 
4052
- #: app/libraries/factory.php:279
4053
  msgid "day"
4054
  msgstr "Tag"
4055
 
4056
- #: app/libraries/factory.php:280 app/modules/countdown/details.php:122
4057
- #: app/skins/available_spot/tpl.php:91 app/skins/countdown/tpl.php:77
4058
- #: app/skins/countdown/tpl.php:121 app/skins/countdown/tpl.php:170
4059
  msgid "days"
4060
  msgstr "Tage"
4061
 
4062
- #: app/libraries/factory.php:281
4063
  msgid "hour"
4064
  msgstr "Stunde"
4065
 
4066
- #: app/libraries/factory.php:282 app/modules/countdown/details.php:129
4067
- #: app/skins/available_spot/tpl.php:95 app/skins/countdown/tpl.php:83
4068
- #: app/skins/countdown/tpl.php:127 app/skins/countdown/tpl.php:176
4069
  msgid "hours"
4070
  msgstr "Stunden"
4071
 
4072
- #: app/libraries/factory.php:283
4073
  msgid "minute"
4074
  msgstr "Minute"
4075
 
4076
- #: app/libraries/factory.php:284 app/modules/countdown/details.php:136
4077
- #: app/skins/available_spot/tpl.php:99 app/skins/countdown/tpl.php:89
4078
- #: app/skins/countdown/tpl.php:133 app/skins/countdown/tpl.php:182
4079
  msgid "minutes"
4080
  msgstr "Minuten"
4081
 
4082
- #: app/libraries/factory.php:285
4083
  msgid "second"
4084
  msgstr "Sekunde"
4085
 
4086
- #: app/libraries/factory.php:286 app/modules/countdown/details.php:143
4087
- #: app/skins/available_spot/tpl.php:103 app/skins/countdown/tpl.php:95
4088
- #: app/skins/countdown/tpl.php:139 app/skins/countdown/tpl.php:188
4089
  msgid "seconds"
4090
  msgstr "Sekunden"
4091
 
4092
- #: app/libraries/factory.php:326
4093
  msgid "MEC Single Sidebar"
4094
  msgstr "MEC Single Sidebar"
4095
 
4096
- #: app/libraries/factory.php:327
4097
  msgid "Custom sidebar for single and modal page of MEC."
4098
  msgstr "Custom sidebar for single and modal page of MEC."
4099
 
@@ -4103,31 +4359,31 @@ msgstr ""
4103
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4104
  "Beitrag handelt."
4105
 
4106
- #: app/libraries/main.php:325 app/libraries/main.php:1135
4107
  msgid "Grid View"
4108
  msgstr "Rasterdarstellung"
4109
 
4110
- #: app/libraries/main.php:326 app/libraries/main.php:1136
4111
  msgid "Agenda View"
4112
  msgstr "Agendaansicht"
4113
 
4114
- #: app/libraries/main.php:327 app/libraries/main.php:1127
4115
  msgid "Full Calendar"
4116
  msgstr "Ganzer Kalender"
4117
 
4118
- #: app/libraries/main.php:329 app/libraries/main.php:1129
4119
  msgid "Calendar/Monthly View"
4120
  msgstr "Kalender-/Monatsansicht"
4121
 
4122
- #: app/libraries/main.php:332 app/libraries/main.php:1132
4123
  msgid "Timetable View"
4124
  msgstr "Stundenplan"
4125
 
4126
- #: app/libraries/main.php:333 app/libraries/main.php:1133
4127
  msgid "Masonry View"
4128
  msgstr "Kachel Ansicht"
4129
 
4130
- #: app/libraries/main.php:334 app/libraries/main.php:1137
4131
  msgid "Map View"
4132
  msgstr "Kartenansicht"
4133
 
@@ -4151,296 +4407,304 @@ msgstr "Karussellansicht"
4151
  msgid "Slider View"
4152
  msgstr "Slideransicht"
4153
 
4154
- #: app/libraries/main.php:376 app/libraries/main.php:4113
4155
  msgid "SU"
4156
  msgstr "SO"
4157
 
4158
- #: app/libraries/main.php:377 app/libraries/main.php:4114
4159
  msgid "MO"
4160
  msgstr "MO"
4161
 
4162
- #: app/libraries/main.php:378 app/libraries/main.php:4115
4163
  msgid "TU"
4164
  msgstr "DI"
4165
 
4166
- #: app/libraries/main.php:379 app/libraries/main.php:4116
4167
  msgid "WE"
4168
  msgstr "MI"
4169
 
4170
- #: app/libraries/main.php:380 app/libraries/main.php:4117
4171
  msgid "TH"
4172
  msgstr "DO"
4173
 
4174
- #: app/libraries/main.php:381 app/libraries/main.php:4118
4175
  msgid "FR"
4176
  msgstr "FR"
4177
 
4178
- #: app/libraries/main.php:382 app/libraries/main.php:4119
4179
  msgid "SA"
4180
  msgstr "SA"
4181
 
4182
- #: app/libraries/main.php:993
4183
  msgid "Events at this location"
4184
  msgstr "Veranstaltungen an diesem Ort "
4185
 
4186
- #: app/libraries/main.php:993
4187
  msgid "Event at this location"
4188
  msgstr "Veranstaltung an diesem Ort "
4189
 
4190
- #: app/libraries/main.php:1034
4191
  msgid "Facebook"
4192
  msgstr "Facebook"
4193
 
4194
- #: app/libraries/main.php:1035
4195
- msgid "Google+"
4196
- msgstr "Google+"
4197
-
4198
- #: app/libraries/main.php:1036
4199
  msgid "Twitter"
4200
  msgstr "Twitter"
4201
 
4202
- #: app/libraries/main.php:1037 app/libraries/main.php:1090
4203
  msgid "Linkedin"
4204
  msgstr "Linkedin"
4205
 
4206
- #: app/libraries/main.php:1038 app/libraries/main.php:1116
4207
  msgid "VK"
4208
  msgstr ""
4209
 
4210
- #: app/libraries/main.php:1054
4211
  msgid "Share on Facebook"
4212
  msgstr "Teilen auf Facebook"
4213
 
4214
- #: app/libraries/main.php:1066
4215
  msgid "Google Plus"
4216
  msgstr "Google Plus"
4217
 
4218
- #: app/libraries/main.php:1078
4219
  msgid "Tweet"
4220
  msgstr "Tweet"
4221
 
4222
- #: app/libraries/main.php:1472
4223
  msgid "Your booking successfully verified."
4224
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4225
 
4226
- #: app/libraries/main.php:1473
4227
  msgid "Your booking cannot verify!"
4228
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4229
 
4230
- #: app/libraries/main.php:1485
4231
  msgid "Your booking successfully canceled."
4232
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4233
 
4234
- #: app/libraries/main.php:1486
4235
  msgid "Your booking cannot be canceled."
4236
  msgstr "Ihre Buchung kann nicht storniert werden."
4237
 
4238
- #: app/libraries/main.php:1490
4239
  msgid "You canceled the payment successfully."
4240
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4241
 
4242
- #: app/libraries/main.php:1494
4243
  msgid "You returned from payment gateway successfully."
4244
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4245
 
4246
- #: app/libraries/main.php:1518
4247
  msgid "Cannot find the booking!"
4248
  msgstr "Kann die Buchung nicht finden!"
4249
 
4250
- #: app/libraries/main.php:1518
4251
  msgid "Booking is invalid."
4252
  msgstr "Buchung ist ungültig."
4253
 
4254
- #: app/libraries/main.php:1539
4255
  #, php-format
4256
  msgid "%s Invoice"
4257
  msgstr "% s Rechnung"
4258
 
4259
- #: app/libraries/main.php:1560
4260
  msgid "Transaction ID"
4261
  msgstr "Transaktions-ID"
4262
 
4263
- #: app/libraries/main.php:1569
4264
  msgid "Attendees"
4265
  msgstr "Teilnehmer"
4266
 
4267
- #: app/libraries/main.php:1575 app/libraries/main.php:4133
4268
  msgid "Ticket"
4269
  msgstr "Ticket"
4270
 
4271
- #: app/libraries/main.php:1591
4272
  msgid "Billing"
4273
  msgstr "Abrechnung"
4274
 
4275
- #: app/libraries/main.php:1602
4276
  msgid "Total"
4277
  msgstr "Gesamt"
4278
 
4279
- #: app/libraries/main.php:1635
4280
  msgid "Security nonce is not valid."
4281
  msgstr "Sicherheits-Nonce ist ungültig."
4282
 
4283
- #: app/libraries/main.php:1635 app/libraries/main.php:1667
4284
  msgid "iCal export stopped!"
4285
  msgstr "iCal Export wurde unterbrochen!"
4286
 
4287
- #: app/libraries/main.php:1667
4288
  #, fuzzy
4289
  #| msgid "Request is invalid!"
4290
  msgid "Request is not valid."
4291
  msgstr "Die Anfrage ist ungültig!"
4292
 
4293
- #: app/libraries/main.php:1987 app/libraries/main.php:2016
4294
- #: app/libraries/main.php:2045 app/libraries/main.php:2074
4295
- #: app/libraries/main.php:2103 app/libraries/main.php:2127
4296
- #: app/libraries/main.php:2171 app/libraries/main.php:2215
4297
- #: app/libraries/main.php:2262 app/libraries/main.php:2308
4298
  msgid "Sort"
4299
  msgstr "Sortieren"
4300
 
4301
- #: app/libraries/main.php:1993 app/libraries/main.php:2022
4302
- #: app/libraries/main.php:2051 app/libraries/main.php:2080
4303
- #: app/libraries/main.php:2133 app/libraries/main.php:2177
4304
- #: app/libraries/main.php:2221 app/libraries/main.php:2268
4305
  msgid "Required Field"
4306
  msgstr "Pflichtfeld"
4307
 
4308
- #: app/libraries/main.php:1999 app/libraries/main.php:2028
4309
- #: app/libraries/main.php:2057 app/libraries/main.php:2086
4310
- #: app/libraries/main.php:2139 app/libraries/main.php:2183
4311
- #: app/libraries/main.php:2227 app/libraries/main.php:2274
4312
  msgid "Insert a label for this field"
4313
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4314
 
4315
- #: app/libraries/main.php:2109
4316
  msgid "HTML and shortcode are allowed."
4317
  msgstr "HTML und shortcodes sind erlaubt."
4318
 
4319
- #: app/libraries/main.php:2152 app/libraries/main.php:2196
4320
- #: app/libraries/main.php:2240
4321
  msgid "Option"
4322
  msgstr "Option"
4323
 
4324
- #: app/libraries/main.php:2274
4325
  #, php-format
4326
  msgid "Instead of %s, the page title with a link will be show."
4327
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4328
 
4329
- #: app/libraries/main.php:2276
4330
  msgid "Agreement Page"
4331
  msgstr "Zustimmungsseite"
4332
 
4333
- #: app/libraries/main.php:2285
4334
  msgid "Status"
4335
  msgstr ""
4336
 
4337
- #: app/libraries/main.php:2287
4338
  msgid "Checked by default"
4339
  msgstr ""
4340
 
4341
- #: app/libraries/main.php:2288
4342
  msgid "Unchecked by default"
4343
  msgstr ""
4344
 
4345
- #: app/libraries/main.php:2310
4346
  msgid "Insert a label for this option"
4347
  msgstr "Ein neues Label für diese Option einfügen"
4348
 
4349
- #: app/libraries/main.php:2325
4350
  msgid "Free"
4351
  msgstr "kostenfrei"
4352
 
4353
- #: app/libraries/main.php:2977
4354
  #, php-format
4355
  msgid "Copy of %s"
4356
  msgstr "Kopie von %s"
4357
 
4358
- #: app/libraries/main.php:3615
4359
  msgid "Booked an event."
4360
  msgstr "Eine Veranstaltung wurde gebucht."
4361
 
4362
- #: app/libraries/main.php:3656
4363
  #, php-format
4364
  msgid "%s booked %s event."
4365
  msgstr "%s gebuchtes %s Event"
4366
 
4367
- #: app/libraries/main.php:4098
4368
  msgid "Taxonomies"
4369
  msgstr "Klassifizierung "
4370
 
4371
- #: app/libraries/main.php:4100
4372
  msgid "Category Plural Label"
4373
  msgstr "Kategorien"
4374
 
4375
- #: app/libraries/main.php:4101
4376
  msgid "Category Singular Label"
4377
  msgstr "Kategorie"
4378
 
4379
- #: app/libraries/main.php:4102
4380
  msgid "Label Plural Label"
4381
  msgstr "Labels"
4382
 
4383
- #: app/libraries/main.php:4103
4384
  msgid "Label Singular Label"
4385
  msgstr "Label"
4386
 
4387
- #: app/libraries/main.php:4103
4388
  msgid "label"
4389
  msgstr "label"
4390
 
4391
- #: app/libraries/main.php:4104
4392
  msgid "Location Plural Label"
4393
  msgstr "Veranstaltungsorte"
4394
 
4395
- #: app/libraries/main.php:4105
4396
  msgid "Location Singular Label"
4397
  msgstr "Veranstaltungsort"
4398
 
4399
- #: app/libraries/main.php:4106
4400
  msgid "Organizer Plural Label"
4401
  msgstr "Veranstalter"
4402
 
4403
- #: app/libraries/main.php:4107
4404
  msgid "Organizer Singular Label"
4405
  msgstr "Veranstalter"
4406
 
4407
- #: app/libraries/main.php:4113
 
 
 
 
 
 
 
 
 
 
 
 
4408
  msgid "Sunday abbreviation"
4409
  msgstr "Sonntag Abkürzung"
4410
 
4411
- #: app/libraries/main.php:4114
4412
  msgid "Monday abbreviation"
4413
  msgstr "Montag Abkürzung"
4414
 
4415
- #: app/libraries/main.php:4115
4416
  msgid "Tuesday abbreviation"
4417
  msgstr "Dienstag Abkürzung"
4418
 
4419
- #: app/libraries/main.php:4116
4420
  msgid "Wednesday abbreviation"
4421
  msgstr "Mittwoch Abkürzung"
4422
 
4423
- #: app/libraries/main.php:4117
4424
  msgid "Thursday abbreviation"
4425
  msgstr "Donnerstag Abkürzung"
4426
 
4427
- #: app/libraries/main.php:4118
4428
  msgid "Friday abbreviation"
4429
  msgstr "Freitag Abkürzung"
4430
 
4431
- #: app/libraries/main.php:4119
4432
  msgid "Saturday abbreviation"
4433
  msgstr "Samstag Abkürzung "
4434
 
4435
- #: app/libraries/main.php:4123
4436
  msgid "Others"
4437
  msgstr "Andere"
4438
 
4439
- #: app/libraries/main.php:4125
4440
  msgid "Booking Success Message"
4441
  msgstr "Buchung erfolgreich Mitteilung"
4442
 
4443
- #: app/libraries/main.php:4125
4444
  msgid ""
4445
  "Thanks for your booking. Your tickets booked, booking verification might be "
4446
  "needed, please check your email."
@@ -4448,72 +4712,72 @@ msgstr ""
4448
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
4449
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
4450
 
4451
- #: app/libraries/main.php:4126 app/widgets/SINGLE.php:126
4452
  msgid "Register Button"
4453
  msgstr "Register Button"
4454
 
4455
- #: app/libraries/main.php:4126 app/skins/available_spot/tpl.php:149
4456
- #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4457
- #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4458
- #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4459
- #: app/skins/list/render.php:43 app/skins/list/render.php:124
4460
- #: app/skins/masonry/render.php:77 app/skins/single/default.php:229
4461
- #: app/skins/single/default.php:431 app/skins/single/m1.php:126
4462
- #: app/skins/single/m2.php:58 app/skins/single/modern.php:57
4463
- #: app/skins/slider/render.php:59 app/skins/slider/render.php:80
4464
- #: app/skins/slider/render.php:100 app/skins/slider/render.php:120
4465
- #: app/skins/slider/render.php:151
4466
  msgid "REGISTER"
4467
  msgstr "ANMELDEN"
4468
 
4469
- #: app/libraries/main.php:4127
4470
  msgid "View Detail Button"
4471
  msgstr "Ansicht Detail Button"
4472
 
4473
- #: app/libraries/main.php:4127 app/skins/carousel/render.php:64
4474
- #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4475
- #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4476
- #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4477
- #: app/skins/list/render.php:124 app/skins/masonry/render.php:77
4478
- #: app/skins/slider/render.php:59 app/skins/slider/render.php:80
4479
- #: app/skins/slider/render.php:100 app/skins/slider/render.php:120
4480
- #: app/skins/slider/render.php:151
4481
  msgid "View Detail"
4482
  msgstr "Details "
4483
 
4484
- #: app/libraries/main.php:4128
4485
  msgid "Event Detail Button"
4486
  msgstr "Event Detail Button"
4487
 
4488
- #: app/libraries/main.php:4128 app/skins/countdown/tpl.php:163
4489
  msgid "Event Detail"
4490
  msgstr "Veranstaltungsdetails"
4491
 
4492
- #: app/libraries/main.php:4130
4493
  msgid "More Info Link"
4494
  msgstr "Link Mehr Informationen"
4495
 
4496
- #: app/libraries/main.php:4133
4497
  msgid "Ticket (Singular)"
4498
  msgstr "Ticket"
4499
 
4500
- #: app/libraries/main.php:4134
4501
  msgid "Tickets (Plural)"
4502
  msgstr "Tickets"
4503
 
4504
- #: app/libraries/main.php:4200
4505
  msgid "EventON"
4506
  msgstr "EventON"
4507
 
4508
- #: app/libraries/main.php:4201
4509
  msgid "The Events Calendar"
4510
  msgstr "The Events Calendar"
4511
 
4512
- #: app/libraries/main.php:4202
4513
  msgid "Events Schedule WP Plugin"
4514
  msgstr "Event Zeitplan WP-Plugin"
4515
 
4516
- #: app/libraries/main.php:4203
4517
  msgid "Calendarize It"
4518
  msgstr ""
4519
 
@@ -4557,18 +4821,18 @@ msgstr "Ja"
4557
  msgid "No"
4558
  msgstr "Nein"
4559
 
4560
- #: app/libraries/render.php:337
4561
  msgid "Skin controller does not exist."
4562
  msgstr "Skin contoller existiert nicht."
4563
 
4564
- #: app/libraries/render.php:407 app/modules/local-time/details.php:44
4565
- #: app/modules/next-event/details.php:97 app/skins/single/default.php:84
4566
- #: app/skins/single/default.php:286 app/skins/single/m1.php:34
4567
- #: app/skins/single/modern.php:164
4568
  msgid "All of the day"
4569
  msgstr "Den ganzen Tag"
4570
 
4571
- #: app/libraries/skins.php:788
4572
  msgid "Ignore month and years"
4573
  msgstr "Monat und Jahre ignorieren"
4574
 
@@ -4605,14 +4869,14 @@ msgstr "Kostenlose Buchung"
4605
  msgid "Attendees Form"
4606
  msgstr "Teilnahmeformular"
4607
 
4608
- #: app/modules/booking/steps/form.php:96
4609
  msgid "Fill other attendees's information like the first form."
4610
  msgstr ""
4611
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
4612
 
4613
- #: app/modules/booking/steps/form.php:122
4614
- #: app/modules/booking/steps/tickets.php:53 app/skins/countdown/tpl.php:64
4615
- #: app/skins/countdown/tpl.php:108 app/skins/countdown/tpl.php:153
4616
  msgid "Next"
4617
  msgstr "Weiter"
4618
 
@@ -4656,7 +4920,7 @@ msgstr "Wegbeschreibung"
4656
  msgid "Share this event"
4657
  msgstr "Diese Veranstaltung teilen"
4658
 
4659
- #: app/modules/local-time/details.php:40 app/widgets/SINGLE.php:98
4660
  msgid "Local Time"
4661
  msgstr "Lokale Zeit"
4662
 
@@ -4687,13 +4951,13 @@ msgstr "Nächstes Event"
4687
  msgid "Go to occurrence page"
4688
  msgstr "Zum Event"
4689
 
4690
- #: app/modules/next-event/details.php:91 app/skins/single/default.php:78
4691
- #: app/skins/single/default.php:280 app/skins/single/m1.php:28
4692
- #: app/skins/single/modern.php:158
4693
  msgid "Time"
4694
  msgstr "Uhrzeit"
4695
 
4696
- #: app/modules/qrcode/details.php:38 app/widgets/SINGLE.php:150
4697
  msgid "QR Code"
4698
  msgstr "QR Code"
4699
 
@@ -4731,87 +4995,91 @@ msgstr " KM"
4731
 
4732
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
4733
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
4734
- #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:56
4735
- #: app/skins/list/tpl.php:60 app/skins/masonry/tpl.php:48
4736
  #: app/skins/masonry/tpl.php:52 app/skins/slider/tpl.php:41
4737
  msgid "No event found!"
4738
  msgstr "Keine Veranstaltung gefunden"
4739
 
4740
  #: app/skins/agenda/tpl.php:71 app/skins/grid/tpl.php:61
4741
- #: app/skins/list/tpl.php:65 app/skins/yearly_view/render.php:65
4742
  msgid "Load More"
4743
  msgstr "Weitere anzeigen"
4744
 
4745
- #: app/skins/available_spot/tpl.php:84
4746
  msgid "Available Spot(s):"
4747
  msgstr "Verfügbare Spot (s):"
4748
 
4749
- #: app/skins/countdown/tpl.php:64 app/skins/countdown/tpl.php:108
4750
- #: app/skins/countdown/tpl.php:153
4751
  #, php-format
4752
  msgid "%s Upcoming Event"
4753
  msgstr "%s Kommendes Event"
4754
 
4755
- #: app/skins/countdown/tpl.php:102 app/skins/countdown/tpl.php:146
4756
- #: app/skins/cover/tpl.php:45 app/skins/list/render.php:60
4757
  msgid "EVENT DETAIL"
4758
  msgstr "VERANSTALTUNGSDETAILS"
4759
 
4760
- #: app/skins/cover/tpl.php:27
4761
  msgid "featured event"
4762
  msgstr "Ausgewählte Veranstaltung"
4763
 
4764
- #: app/skins/daily_view/render.php:23
4765
  msgid "No event"
4766
  msgstr "Keine Veranstaltung"
4767
 
4768
- #: app/skins/full_calendar/tpl.php:49
4769
  msgid "List"
4770
  msgstr "Liste / Listenansicht"
4771
 
4772
- #: app/skins/masonry.php:191
4773
  msgid "All"
4774
  msgstr "Alle\n"
4775
 
4776
- #: app/skins/monthly_view/calendar.php:67
4777
- #: app/skins/monthly_view/calendar.php:90
4778
  #: app/skins/monthly_view/calendar_clean.php:67
4779
- #: app/skins/monthly_view/calendar_clean.php:90
4780
  #, php-format
4781
  msgid "Events for %s"
4782
  msgstr "Veranstaltungen für %s"
4783
 
4784
- #: app/skins/monthly_view/calendar.php:92
4785
- #: app/skins/monthly_view/calendar_clean.php:92
4786
- #: app/skins/timetable/render.php:53 app/skins/weekly_view/render.php:35
4787
  msgid "No Events"
4788
  msgstr "Keine Veranstaltungen"
4789
 
4790
- #: app/skins/single.php:209 app/skins/single/default.php:203
4791
- #: app/skins/single/default.php:405 app/skins/single/m1.php:100
4792
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
4793
  msgid "Phone"
4794
  msgstr "Phone"
4795
 
4796
- #: app/skins/single.php:223 app/skins/single/default.php:217
4797
- #: app/skins/single/default.php:419 app/skins/single/m1.php:114
4798
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
4799
  msgid "Website"
4800
  msgstr "Website"
4801
 
4802
- #: app/skins/single/default.php:42 app/skins/single/m1.php:247
4803
- #: app/skins/single/m2.php:172 app/skins/single/modern.php:246
 
 
 
 
4804
  msgid "Sold out!"
4805
  msgstr "Ausverkauft!"
4806
 
4807
- #: app/skins/single/default.php:51 app/skins/single/m1.php:256
4808
- #: app/skins/single/m2.php:181 app/skins/single/modern.php:255
4809
  msgid "Tags: "
4810
  msgstr "Tags:"
4811
 
4812
- #: app/skins/single/default.php:117 app/skins/single/default.php:319
4813
- #: app/skins/single/m1.php:190 app/skins/single/m2.php:122
4814
- #: app/skins/single/modern.php:116
4815
  msgid "Read More"
4816
  msgstr "Mehr lesen"
4817
 
@@ -4836,45 +5104,51 @@ msgstr "Shortcode:"
4836
  msgid "Create some calendars first."
4837
  msgstr "Erstellen Sie zuerst einige Kalender."
4838
 
4839
- #: app/widgets/SINGLE.php:22
4840
  msgid "MEC Single Sidebar Items"
4841
  msgstr "MEC Single Sidebar Items"
4842
 
4843
- #: app/widgets/SINGLE.php:22
4844
  msgid "To manage event details page elements."
4845
  msgstr ""
4846
 
4847
- #: app/widgets/SINGLE.php:94
4848
  #, fuzzy
4849
  #| msgid "Date Time Module : "
4850
  msgid "Date Time Module"
4851
  msgstr "Datum Zeit Module:"
4852
 
4853
- #: app/widgets/SINGLE.php:110
4854
  #, fuzzy
4855
  #| msgid "Event Labels"
4856
  msgid "Event Label"
4857
  msgstr "Event Labels"
4858
 
4859
- #: app/widgets/SINGLE.php:130
 
 
 
 
 
 
4860
  #, fuzzy
4861
  #| msgid "Attende Module : "
4862
  msgid "Attendees Module"
4863
  msgstr "Teilnehmermodul"
4864
 
4865
- #: app/widgets/SINGLE.php:134
4866
  #, fuzzy
4867
  #| msgid "Next Pervious Module : "
4868
  msgid "Next Pervious Module"
4869
  msgstr "Nächstes vorheriges Modul"
4870
 
4871
- #: app/widgets/SINGLE.php:138
4872
  #, fuzzy
4873
  #| msgid "Social Module : "
4874
  msgid "Social Module"
4875
  msgstr "Social Modul:"
4876
 
4877
- #: app/widgets/SINGLE.php:146
4878
  #, fuzzy
4879
  #| msgid "Google Map : "
4880
  msgid "Google Map"
@@ -4991,9 +5265,6 @@ msgstr "Google Karte:"
4991
  #~ msgid "Waiting"
4992
  #~ msgstr "in Bearbeitung"
4993
 
4994
- #~ msgid "Canceled"
4995
- #~ msgstr "Abgesagt"
4996
-
4997
  #~ msgid "Here, you can %s invoice of %s transaction."
4998
  #~ msgstr "Hier können Sie% s Rechnung von% s Transaktion."
4999
 
@@ -5099,9 +5370,6 @@ msgstr "Google Karte:"
5099
  #~ msgid "Usage Limit"
5100
  #~ msgstr "Nutzungslimit"
5101
 
5102
- #~ msgid "Insert -1 for unlimited usage"
5103
- #~ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
5104
-
5105
  #~ msgid "Expiration Date"
5106
  #~ msgstr "Ablaufdatum"
5107
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-11-19 13:45+0330\n"
6
+ "PO-Revision-Date: 2018-11-19 13:45+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:224
31
+ #: app/features/mec.php:253 app/features/mec.php:279
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
55
  msgstr "Alles Auswählen"
56
 
57
  #: app/features/colors.php:50 app/features/fes/form.php:566
58
+ #: app/features/mec/settings.php:884
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
62
+ #: app/features/contextual.php:55 app/features/mec.php:210
63
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
64
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
65
+ #: app/features/mec/settings.php:35 app/features/mec/settings.php:263
66
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
67
+ #: app/features/mec/support.php:18 app/libraries/factory.php:208
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
+ #: app/features/contextual.php:62 app/features/events.php:1155
72
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
73
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
74
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:198
75
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
76
  #: app/features/mec/support.php:27
77
  msgid "Booking Form"
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
95
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
96
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
97
+ #: app/features/mec/settings.php:205 app/features/mec/styles.php:36
98
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
99
  msgid "Payment Gateways"
100
  msgstr "Zahlungs-Gateways"
112
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
113
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
114
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
115
+ #: app/features/mec/settings.php:215 app/features/mec/styles.php:45
116
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
117
  msgid "Notifications"
118
  msgstr "Benachrichtigungen"
189
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
190
  "\"0\" allowfullscreen></iframe>"
191
 
192
+ #: app/features/contextual.php:117 app/features/mec/settings.php:42
193
+ #: app/features/mec/settings.php:265
194
  msgid "General Options"
195
  msgstr "Allgemeine Einstellungen"
196
 
197
+ #: app/features/contextual.php:139 app/features/mec/settings.php:54
198
+ #: app/features/mec/settings.php:417
199
  msgid "Slugs/Permalinks"
200
  msgstr "Slug/Permalinks"
201
 
202
+ #: app/features/contextual.php:152 app/features/mec/settings.php:60
203
+ #: app/features/mec/settings.php:437
204
  msgid "Event Details/Single Event Page"
205
  msgstr "Event Details / Einzelveranstaltungsseite"
206
 
207
+ #: app/features/contextual.php:166 app/features/mec/settings.php:66
208
+ #: app/features/mec/settings.php:478
209
  msgid "Currency Options"
210
  msgstr "Währungseinstellungen"
211
 
212
+ #: app/features/contextual.php:182 app/features/mec/settings.php:78
213
+ #: app/features/mec/settings.php:545
214
  msgid "Google Maps Options"
215
  msgstr "Google Maps Einstellungen"
216
 
217
+ #: app/features/contextual.php:244 app/features/mec/settings.php:84
218
+ #: app/features/mec/settings.php:619
219
  msgid "Google Recaptcha Options"
220
  msgstr "Google Recaptcha Einstellungen"
221
 
222
+ #: app/features/contextual.php:258 app/features/mec/settings.php:114
223
+ #: app/features/mec/settings.php:737
224
  msgid "Countdown Options"
225
  msgstr "Countdown Einstellungsoptionen"
226
 
227
+ #: app/features/contextual.php:268 app/features/mec/settings.php:120
228
+ #: app/features/mec/settings.php:758
229
  msgid "Social Networks"
230
  msgstr "Soziale Netzwerke"
231
 
232
+ #: app/features/contextual.php:278 app/features/mec/settings.php:126
233
+ #: app/features/mec/settings.php:783
234
  msgid "Next Event Module"
235
  msgstr "Nächstes Veranstaltung Modul"
236
 
237
+ #: app/features/contextual.php:286 app/features/mec/settings.php:132
238
+ #: app/features/mec/settings.php:811
239
  msgid "Frontend Event Submission"
240
  msgstr "Erstellung von Veranstaltungen im Frontend"
241
 
242
+ #: app/features/contextual.php:298 app/features/events.php:580
243
+ #: app/features/mec/settings.php:138
244
  msgid "Exceptional Days"
245
  msgstr "Herausgenommene Tage "
246
 
247
+ #: app/features/contextual.php:308 app/features/events.php:263
248
+ #: app/features/mec/settings.php:150 app/features/mec/settings.php:978
249
  msgid "Booking"
250
  msgstr "Buchung / Reservierung"
251
 
252
+ #: app/features/contextual.php:318 app/features/mec/settings.php:156
253
+ #: app/features/mec/settings.php:1068
254
  msgid "Coupons"
255
  msgstr "Gutscheine"
256
 
257
+ #: app/features/contextual.php:326 app/features/mec/settings.php:174
258
+ #: app/features/mec/settings.php:1209
259
  msgid "BuddyPress Integration"
260
  msgstr "Buddy Press Integration"
261
 
262
+ #: app/features/contextual.php:334 app/features/mec/settings.php:180
263
+ #: app/features/mec/settings.php:1239
264
  msgid "Mailchimp Integration"
265
  msgstr "Mailchimp Integration"
266
 
267
+ #: app/features/contextual.php:346 app/features/mec/settings.php:186
268
+ #: app/features/mec/settings.php:1275
269
  msgid "MEC Activation"
270
  msgstr "MEC Aktivierung"
271
 
272
+ #: app/features/events.php:132 app/features/ix/export.php:33
273
+ #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
275
  msgid "Events"
276
  msgstr "Veranstaltungen"
277
 
278
+ #: app/features/events.php:133
279
+ #: app/features/mec/meta_boxes/display_options.php:708
280
+ #: app/features/mec/meta_boxes/display_options.php:746
281
+ #: app/features/mec/meta_boxes/display_options.php:775
282
  #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
283
  #: app/skins/yearly_view/tpl.php:69
284
  msgid "Event"
285
  msgstr "Veranstaltung"
286
 
287
+ #: app/features/events.php:134 app/features/mec.php:196
288
  msgid "Add Event"
289
  msgstr "Veranstaltung hinzufügen"
290
 
291
+ #: app/features/events.php:135
292
  msgid "Add New Event"
293
  msgstr "Neue Veranstaltung hinzufügen"
294
 
295
+ #: app/features/events.php:136 app/features/ix.php:2784
296
  #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
297
  msgid "No events found!"
298
  msgstr "Keine Veranstaltungen gefunden!"
299
 
300
+ #: app/features/events.php:137
301
  msgid "All Events"
302
  msgstr "Alle Veranstaltungen"
303
 
304
+ #: app/features/events.php:138
305
  msgid "Edit Event"
306
  msgstr ""
307
 
308
+ #: app/features/events.php:139
309
  msgid "View Event"
310
  msgstr "Veranstaltung ansehen"
311
 
312
+ #: app/features/events.php:140
313
  msgid "No events found in Trash!"
314
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
315
 
316
+ #: app/features/events.php:152
317
+ #: app/features/mec/meta_boxes/display_options.php:657
318
  #: app/features/mec/meta_boxes/search_form.php:31
319
  #: app/features/mec/meta_boxes/search_form.php:78
320
  #: app/features/mec/meta_boxes/search_form.php:125
321
+ #: app/features/mec/meta_boxes/search_form.php:172
322
+ #: app/features/mec/meta_boxes/search_form.php:198
323
+ #: app/features/mec/meta_boxes/search_form.php:245
324
+ #: app/features/mec/meta_boxes/search_form.php:292
325
+ #: app/features/mec/meta_boxes/search_form.php:332
326
+ #: app/features/mec/meta_boxes/search_form.php:379
327
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4151
328
+ #: app/libraries/skins.php:712 app/skins/single/default.php:155
329
+ #: app/skins/single/default.php:360 app/skins/single/m1.php:167
330
+ #: app/skins/single/m2.php:99 app/skins/single/modern.php:96
331
  msgid "Category"
332
  msgstr "Kategorie"
333
 
334
+ #: app/features/events.php:153 app/features/fes/form.php:518
335
+ #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
336
+ #: app/libraries/main.php:4150
337
  msgid "Categories"
338
  msgstr "Kategorien"
339
 
340
+ #: app/features/events.php:163 app/features/labels.php:71
341
  #: app/features/locations.php:69 app/features/organizers.php:69
342
+ #: app/features/speakers.php:67
343
  #, php-format
344
  msgid "All %s"
345
  msgstr "Alle %s"
346
 
347
+ #: app/features/events.php:164 app/features/labels.php:72
348
  #: app/features/locations.php:70 app/features/organizers.php:70
349
+ #: app/features/speakers.php:68
350
  #, php-format
351
  msgid "Edit %s"
352
  msgstr "Bearbeiten %s"
353
 
354
+ #: app/features/events.php:165 app/features/labels.php:73
355
  #: app/features/locations.php:71 app/features/organizers.php:71
356
+ #: app/features/speakers.php:69
357
  #, php-format
358
  msgid "View %s"
359
  msgstr "Ansicht %s"
360
 
361
+ #: app/features/events.php:166 app/features/labels.php:74
362
  #: app/features/locations.php:72 app/features/organizers.php:72
363
+ #: app/features/speakers.php:70
364
  #, php-format
365
  msgid "Update %s"
366
  msgstr "Update %s"
367
 
368
+ #: app/features/events.php:167 app/features/labels.php:75
369
  #: app/features/locations.php:73 app/features/organizers.php:73
370
+ #: app/features/speakers.php:71
371
  #, php-format
372
  msgid "Add New %s"
373
  msgstr "Neu hinzufügen%s"
374
 
375
+ #: app/features/events.php:168 app/features/labels.php:76
376
  #: app/features/locations.php:74 app/features/organizers.php:74
377
+ #: app/features/speakers.php:72
378
  #, php-format
379
  msgid "New %s Name"
380
  msgstr "Neuer %s Name"
381
 
382
+ #: app/features/events.php:169 app/features/labels.php:77
383
  #: app/features/locations.php:75 app/features/organizers.php:75
384
+ #: app/features/speakers.php:73
385
  #, php-format
386
  msgid "Popular %s"
387
  msgstr "Beliebt %s"
388
 
389
+ #: app/features/events.php:170 app/features/labels.php:78
390
  #: app/features/locations.php:76 app/features/organizers.php:76
391
+ #: app/features/speakers.php:74
392
  #, php-format
393
  msgid "Search %s"
394
  msgstr "Suche %s"
395
 
396
+ #: app/features/events.php:192 app/features/events.php:210
397
  msgid "Category Icon"
398
  msgstr "Kategoriesymbol"
399
 
400
+ #: app/features/events.php:194 app/features/events.php:214
401
  msgid "Select icon"
402
  msgstr "Wählen Sie ein Symbol"
403
 
404
+ #: app/features/events.php:260
405
  msgid "Event Details"
406
  msgstr "Veranstaltungsdetails"
407
 
408
+ #: app/features/events.php:296 app/features/events.php:1894
409
+ #: app/features/events.php:1938 app/features/fes/form.php:479
410
  #: app/features/ix.php:2328 app/features/ix.php:2369
411
+ #: app/features/mec/settings.php:860 app/libraries/main.php:4183
412
+ #: app/widgets/single.php:103
413
  msgid "Event Cost"
414
  msgstr ""
415
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
416
 
417
+ #: app/features/events.php:299 app/features/fes/form.php:482
418
+ #: app/libraries/main.php:4184 app/skins/single/default.php:90
419
+ #: app/skins/single/default.php:295 app/skins/single/m1.php:49
420
+ #: app/skins/single/modern.php:182
421
  msgid "Cost"
422
  msgstr " Preis"
423
 
424
+ #: app/features/events.php:372
425
  msgid "Note for reviewer"
426
  msgstr "Zusätzliche Anmerkungen zum Event "
427
 
428
+ #: app/features/events.php:379
429
  msgid "Guest Data"
430
  msgstr "Gäste Daten"
431
 
432
+ #: app/features/events.php:380 app/features/fes/form.php:441
433
+ #: app/features/labels.php:177 app/features/organizers.php:268
434
+ #: app/libraries/notifications.php:554 app/modules/booking/steps/form.php:24
435
+ #: app/modules/booking/steps/form.php:25
436
  msgid "Name"
437
  msgstr "Name"
438
 
439
+ #: app/features/events.php:381 app/features/events.php:1190
440
  #: app/features/fes/form.php:437 app/features/mec/regform.php:118
441
  #: app/features/organizers.php:110 app/features/organizers.php:150
442
+ #: app/features/speakers.php:119 app/features/speakers.php:179
443
+ #: app/libraries/main.php:1067 app/libraries/main.php:1132
444
+ #: app/libraries/main.php:2067 app/libraries/notifications.php:555
445
+ #: app/modules/booking/steps/form.php:28 app/modules/booking/steps/form.php:29
446
+ #: app/skins/single.php:216 app/skins/single/default.php:197
447
+ #: app/skins/single/default.php:402 app/skins/single/m1.php:107
448
+ #: app/skins/single/m2.php:39 app/skins/single/modern.php:38
449
  msgid "Email"
450
  msgstr "Email"
451
 
452
+ #: app/features/events.php:385 app/features/fes/form.php:221
453
  msgid "Date and Time"
454
  msgstr "Datum und Uhrzeit"
455
 
456
+ #: app/features/events.php:389 app/features/events.php:393
457
+ #: app/features/events.php:1715 app/features/events.php:1894
458
+ #: app/features/events.php:1938 app/features/fes/form.php:225
459
  #: app/features/fes/form.php:229 app/features/ix.php:2328
460
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
461
+ #: app/features/mec/dashboard.php:269
462
  #: app/features/mec/meta_boxes/display_options.php:42
463
+ #: app/features/mec/meta_boxes/display_options.php:139
464
+ #: app/features/mec/meta_boxes/display_options.php:235
465
+ #: app/features/mec/meta_boxes/display_options.php:284
466
+ #: app/features/mec/meta_boxes/display_options.php:390
467
+ #: app/features/mec/meta_boxes/display_options.php:437
468
+ #: app/features/mec/meta_boxes/display_options.php:474
469
+ #: app/features/mec/meta_boxes/display_options.php:507
470
+ #: app/features/mec/meta_boxes/display_options.php:542
471
+ #: app/features/mec/meta_boxes/display_options.php:588
472
+ #: app/features/mec/meta_boxes/display_options.php:631
473
+ #: app/features/mec/meta_boxes/display_options.php:797
474
+ #: app/features/mec/meta_boxes/display_options.php:859
475
  msgid "Start Date"
476
  msgstr "Start Datum"
477
 
478
+ #: app/features/events.php:421 app/features/events.php:461
479
+ #: app/features/events.php:860 app/features/events.php:878
480
+ #: app/features/events.php:930 app/features/events.php:948
481
  #: app/features/fes/form.php:257 app/features/fes/form.php:297
482
  msgid "AM"
483
  msgstr "AM"
484
 
485
+ #: app/features/events.php:422 app/features/events.php:462
486
+ #: app/features/events.php:861 app/features/events.php:879
487
+ #: app/features/events.php:931 app/features/events.php:949
488
  #: app/features/fes/form.php:258 app/features/fes/form.php:298
489
  msgid "PM"
490
  msgstr "PM"
491
 
492
+ #: app/features/events.php:429 app/features/events.php:433
493
+ #: app/features/events.php:1716 app/features/events.php:1894
494
+ #: app/features/events.php:1938 app/features/fes/form.php:265
495
  #: app/features/fes/form.php:269 app/features/ix.php:2328
496
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
497
+ #: app/features/mec/dashboard.php:270
498
  msgid "End Date"
499
  msgstr "Ende Datum"
500
 
501
+ #: app/features/events.php:468 app/features/fes/form.php:304
502
  msgid "All Day Event"
503
  msgstr "Ganztägige Veranstaltung"
504
 
505
+ #: app/features/events.php:471 app/features/fes/form.php:307
506
  msgid "Hide Event Time"
507
  msgstr "Event / Veranstaltungszeit verbergen"
508
 
509
+ #: app/features/events.php:474 app/features/fes/form.php:310
510
  msgid "Hide Event End Time"
511
  msgstr "Ende-Zeit der Veranstaltung verbergen"
512
 
513
+ #: app/features/events.php:478 app/features/fes/form.php:314
514
  msgid "Time Comment"
515
  msgstr "z.B. MEZ "
516
 
517
+ #: app/features/events.php:479 app/features/fes/form.php:315
518
  msgid ""
519
  "It shows next to event time on calendar. You can insert Timezone etc. in "
520
  "this field."
522
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
523
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
524
 
525
+ #: app/features/events.php:485 app/features/fes/form.php:321
526
  msgid "Event Repeating"
527
  msgstr "Wiederholende Veranstaltung"
528
 
529
+ #: app/features/events.php:489 app/features/fes/form.php:325
530
  msgid "Repeats"
531
  msgstr "Wiederholend"
532
 
533
+ #: app/features/events.php:491 app/features/fes/form.php:327
534
+ #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
535
  msgid "Daily"
536
  msgstr "Täglich"
537
 
538
+ #: app/features/events.php:492 app/features/fes/form.php:328
539
  msgid "Every Weekday"
540
  msgstr "An jedem Wochentag"
541
 
542
+ #: app/features/events.php:493 app/features/fes/form.php:329
543
  msgid "Every Weekend"
544
  msgstr "An jedem Wochenende"
545
 
546
+ #: app/features/events.php:494 app/features/fes/form.php:330
547
  msgid "Certain Weekdays"
548
  msgstr "Bestimmte Wochentage"
549
 
550
+ #: app/features/events.php:495 app/features/fes/form.php:331
551
+ #: app/skins/full_calendar/tpl.php:67
552
  msgid "Weekly"
553
  msgstr "Wöchentlich"
554
 
555
+ #: app/features/events.php:496 app/features/fes/form.php:332
556
+ #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
557
  msgid "Monthly"
558
  msgstr "Monatlich"
559
 
560
+ #: app/features/events.php:497 app/features/fes/form.php:333
561
+ #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
562
  msgid "Yearly"
563
  msgstr "Jährlich"
564
 
565
+ #: app/features/events.php:498 app/features/fes/form.php:334
566
  msgid "Custom Days"
567
  msgstr "Benutzerdefinierte Tage"
568
 
569
+ #: app/features/events.php:502 app/features/fes/form.php:338
570
  msgid "Repeat Interval"
571
  msgstr "Wiederholungsintervall"
572
 
573
+ #: app/features/events.php:503 app/features/fes/form.php:339
574
  msgid "Repeat interval"
575
  msgstr "Wiederholungsintervall"
576
 
577
+ #: app/features/events.php:506 app/features/fes/form.php:342
578
  msgid "Week Days"
579
  msgstr "Wochentage"
580
 
581
+ #: app/features/events.php:507 app/features/fes/form.php:343
582
  #: app/libraries/main.php:401
583
  msgid "Monday"
584
  msgstr "Montag"
585
 
586
+ #: app/features/events.php:508 app/features/fes/form.php:344
587
  #: app/libraries/main.php:401
588
  msgid "Tuesday"
589
  msgstr "Dienstag"
590
 
591
+ #: app/features/events.php:509 app/features/fes/form.php:345
592
  #: app/libraries/main.php:401
593
  msgid "Wednesday"
594
  msgstr "Mittwoch"
595
 
596
+ #: app/features/events.php:510 app/features/fes/form.php:346
597
  #: app/libraries/main.php:401
598
  msgid "Thursday"
599
  msgstr "Donnerstag"
600
 
601
+ #: app/features/events.php:511 app/features/fes/form.php:347
602
  #: app/libraries/main.php:401
603
  msgid "Friday"
604
  msgstr "Freitag"
605
 
606
+ #: app/features/events.php:512 app/features/fes/form.php:348
607
  #: app/libraries/main.php:401
608
  msgid "Saturday"
609
  msgstr "Samstag"
610
 
611
+ #: app/features/events.php:513 app/features/fes/form.php:349
612
  #: app/libraries/main.php:401
613
  msgid "Sunday"
614
  msgstr "Sonntag"
615
 
616
+ #: app/features/events.php:518 app/features/events.php:590
617
+ #: app/features/fes/form.php:354 app/libraries/main.php:1582
618
  #: app/modules/booking/steps/tickets.php:20
619
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:54
620
+ #: app/skins/single/default.php:259 app/skins/single/m1.php:16
621
+ #: app/skins/single/modern.php:149
622
  msgid "Date"
623
  msgstr "Datum"
624
 
625
+ #: app/features/events.php:519 app/features/events.php:591
626
+ #: app/features/events.php:665 app/features/events.php:717
627
+ #: app/features/events.php:837 app/features/events.php:1009
628
+ #: app/features/events.php:1090 app/features/fes/form.php:355
629
  msgid "Add"
630
  msgstr "Hinzufügen"
631
 
632
+ #: app/features/events.php:520 app/features/fes/form.php:356
633
  msgid "Add certain days to event occurrence dates."
634
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
635
 
636
+ #: app/features/events.php:542 app/features/fes/form.php:378
637
  msgid "Ends Repeat"
638
  msgstr "Wiederholung endet"
639
 
640
+ #: app/features/events.php:546 app/features/fes/form.php:382
641
  msgid "Never"
642
  msgstr "Niemals"
643
 
644
+ #: app/features/events.php:551 app/features/fes/form.php:387
645
  msgid "On"
646
  msgstr "Am"
647
 
648
+ #: app/features/events.php:558 app/features/fes/form.php:394
649
  msgid "After"
650
  msgstr "Nach"
651
 
652
+ #: app/features/events.php:560 app/features/fes/form.php:396
653
  msgid "Occurrences times"
654
  msgstr " mal vorkommen"
655
 
656
+ #: app/features/events.php:561 app/features/fes/form.php:397
657
  msgid ""
658
  "The event will finish after certain repeats. For example if you set it to "
659
  "10, the event will finish after 10 repeats."
661
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
662
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
663
 
664
+ #: app/features/events.php:586
665
  msgid "Exclude certain days"
666
  msgstr "Ausschluss bestimmter Tage"
667
 
668
+ #: app/features/events.php:592
669
  msgid "Exclude certain days from event occurrence dates."
670
  msgstr ""
671
  "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
672
  "Eventwiederholungen, oder um das Wochenende auszuschließen"
673
 
674
+ #: app/features/events.php:636 app/libraries/render.php:422
675
+ msgid "Day 1"
676
+ msgstr ""
677
+
678
+ #: app/features/events.php:649 app/features/mec/settings.php:914
679
+ #: app/skins/single.php:246
680
  msgid "Hourly Schedule"
681
  msgstr "Stundenplan"
682
 
683
+ #: app/features/events.php:652
684
+ msgid "Add Day"
685
+ msgstr ""
686
+
687
+ #: app/features/events.php:653
688
+ msgid ""
689
+ "Add new days for schedule. For example if your event is multiple days, you "
690
+ "can add a different schedule for each day!"
691
+ msgstr ""
692
+
693
+ #: app/features/events.php:658
694
+ #, php-format
695
+ msgid "Day %s"
696
+ msgstr ""
697
+
698
+ #: app/features/events.php:661 app/features/events.php:673
699
+ #: app/features/events.php:693 app/features/events.php:713
700
+ #: app/features/events.php:728 app/features/events.php:1096
701
+ #: app/features/events.php:1118 app/features/events.php:1712
702
+ #: app/features/events.php:1894 app/features/events.php:1938
703
+ #: app/features/fes/form.php:214 app/features/ix.php:2328
704
+ #: app/features/ix.php:2369 app/features/mec/settings.php:1169
705
+ #: app/features/mec/settings.php:1189
706
+ msgid "Title"
707
+ msgstr "Titel"
708
+
709
+ #: app/features/events.php:666 app/features/events.php:718
710
  msgid "Add new hourly schedule row"
711
  msgstr "Neue Stundenplan-Zeile hinzufügen"
712
 
713
+ #: app/features/events.php:671 app/features/events.php:691
714
+ #: app/features/events.php:726
715
  msgid "From e.g. 8:15"
716
  msgstr "Von z.B. 08:15 Uhr"
717
 
718
+ #: app/features/events.php:672 app/features/events.php:692
719
+ #: app/features/events.php:727
720
  msgid "To e.g. 8:45"
721
  msgstr "bis zum Beispiel 08:45 Uhr"
722
 
723
+ #: app/features/events.php:674 app/features/events.php:694
724
+ #: app/features/events.php:729 app/features/events.php:884
725
+ #: app/features/events.php:954
 
 
 
 
 
 
726
  msgid "Description"
727
  msgstr "Beschreibung"
728
 
729
+ #: app/features/events.php:675 app/features/events.php:695
730
+ #: app/features/events.php:730 app/features/events.php:903
731
+ #: app/features/events.php:973 app/features/events.php:1029
732
+ #: app/features/events.php:1054 app/features/events.php:1107
733
+ #: app/features/events.php:1129 app/features/fes/list.php:72
734
+ #: app/features/mec/settings.php:1118 app/features/mec/settings.php:1141
735
+ #: app/features/mec/settings.php:1180 app/features/mec/settings.php:1200
736
+ #: app/libraries/main.php:2046 app/libraries/main.php:2075
737
+ #: app/libraries/main.php:2104 app/libraries/main.php:2133
738
+ #: app/libraries/main.php:2155 app/libraries/main.php:2186
739
+ #: app/libraries/main.php:2230 app/libraries/main.php:2274
740
+ #: app/libraries/main.php:2321 app/libraries/main.php:2359
741
  msgid "Remove"
742
  msgstr "Entfernen"
743
 
744
+ #: app/features/events.php:678 app/features/events.php:698
745
+ #: app/features/events.php:733 app/features/fes/form.php:611
746
+ #: app/features/mec.php:206 app/features/mec/settings.php:72
747
+ #: app/features/mec/settings.php:908 app/features/speakers.php:57
748
+ #: app/libraries/main.php:4158 app/modules/speakers/details.php:18
749
+ msgid "Speakers"
750
+ msgstr ""
751
+
752
+ #: app/features/events.php:710 app/features/events.php:714
753
+ msgid "Day :dd:"
754
+ msgstr ""
755
+
756
+ #: app/features/events.php:759 app/features/fes/form.php:456
757
+ #: app/features/mec/settings.php:854
758
  msgid "Event Links"
759
  msgstr "Veranstaltungslinks"
760
 
761
+ #: app/features/events.php:761 app/features/fes/form.php:458
762
+ #: app/libraries/main.php:4181
763
  msgid "Event Link"
764
  msgstr "Veranstaltungslink"
765
 
766
+ #: app/features/events.php:762 app/features/events.php:767
767
  #: app/features/fes/form.php:459 app/features/fes/form.php:464
768
  msgid "eg. http://yoursite.com/your-event"
769
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
770
 
771
+ #: app/features/events.php:763 app/features/fes/form.php:460
772
  msgid ""
773
  "If you fill it, it will be replaced instead of default event page link. "
774
  "Insert full link including http(s)://"
777
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
778
  "einschließlich http(s)://"
779
 
780
+ #: app/features/events.php:766 app/features/fes/form.php:463
781
+ #: app/libraries/main.php:4182 app/skins/single/default.php:104
782
+ #: app/skins/single/default.php:309 app/skins/single/m1.php:188
783
+ #: app/skins/single/m2.php:120 app/skins/single/modern.php:118
784
+ #: app/widgets/single.php:107
785
  msgid "More Info"
786
  msgstr "Mehr Informationen"
787
 
788
+ #: app/features/events.php:768 app/features/fes/form.php:465
789
  msgid "More Information"
790
  msgstr "z.B. Noch mehr Informationen "
791
 
792
+ #: app/features/events.php:770 app/features/fes/form.php:467
793
  msgid "Current Window"
794
  msgstr "Aktuelles Fenster"
795
 
796
+ #: app/features/events.php:771 app/features/fes/form.php:468
797
  msgid "New Window"
798
  msgstr "Neues Fenster"
799
 
800
+ #: app/features/events.php:773 app/features/fes/form.php:470
801
  msgid ""
802
  "If you fill it, it will be shown in event details page as an optional link. "
803
  "Insert full link including http(s)://"
808
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
809
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
810
 
811
+ #: app/features/events.php:804
812
  msgid "Total booking limits"
813
  msgstr "Gesamt Verfügbare Plätze"
814
 
815
+ #: app/features/events.php:809 app/features/events.php:901
816
+ #: app/features/events.php:971 app/modules/booking/default.php:82
817
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:99
818
  msgid "Unlimited"
819
  msgstr "Unlimitiert"
820
 
821
+ #: app/features/events.php:811
822
  msgid "100"
823
  msgstr "z.B. 100"
824
 
825
+ #: app/features/events.php:829 app/libraries/book.php:60
826
+ #: app/libraries/main.php:4186 app/modules/booking/steps/tickets.php:38
827
  msgid "Tickets"
828
  msgstr "Tickets"
829
 
830
+ #: app/features/events.php:832
831
  msgid ""
832
  "You're translating an event so MEC will use the original event for tickets "
833
  "and booking. You can only translate the ticket name and description. Please "
834
  "define exact tickets that you defined in the original event here."
835
  msgstr ""
836
 
837
+ #: app/features/events.php:843 app/features/events.php:913
838
  msgid "Ticket Name"
839
  msgstr "Ticket Name"
840
 
841
+ #: app/features/events.php:847 app/features/events.php:917
842
+ #: app/features/events.php:1894 app/features/events.php:1938
843
  #: app/features/ix.php:2328 app/features/ix.php:2369
844
  msgid "Start Time"
845
  msgstr "Uhrzeit des Beginns"
846
 
847
+ #: app/features/events.php:865 app/features/events.php:935
848
+ #: app/features/events.php:1894 app/features/events.php:1938
849
  #: app/features/ix.php:2328 app/features/ix.php:2369
850
  msgid "End Time"
851
  msgstr "Uhrzeit Ende"
852
 
853
+ #: app/features/events.php:888 app/features/events.php:958
854
+ #: app/features/events.php:1100 app/features/events.php:1122
855
+ #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1193
856
  msgid "Price"
857
  msgstr "Preis"
858
 
859
+ #: app/features/events.php:889 app/features/events.php:959
860
  msgid "Insert 0 for free ticket. Only numbers please."
861
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
862
 
863
+ #: app/features/events.php:892 app/features/events.php:962
864
  msgid "Price Label"
865
  msgstr "Preisschild"
866
 
867
+ #: app/features/events.php:893 app/features/events.php:963
868
  msgid "For showing on website. e.g. $15"
869
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
870
 
871
+ #: app/features/events.php:897 app/features/events.php:967
872
  msgid "Available Tickets"
873
  msgstr "Verfügbare Tickets: %s "
874
 
875
+ #: app/features/events.php:999
876
  msgid "Fees"
877
  msgstr "Gebühren"
878
 
879
+ #: app/features/events.php:1004 app/features/events.php:1085
880
+ #: app/features/events.php:1160
881
  msgid "Inherit from global options"
882
  msgstr "Aus den globalen Einstellungen übernehmen"
883
 
884
+ #: app/features/events.php:1015 app/features/events.php:1040
885
+ #: app/features/mec/settings.php:1104 app/features/mec/settings.php:1127
886
  msgid "Fee Title"
887
  msgstr "Gebühren Name"
888
 
889
+ #: app/features/events.php:1019 app/features/events.php:1044
890
+ #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1131
891
  msgid "Amount"
892
  msgstr "Betrag"
893
 
894
+ #: app/features/events.php:1020 app/features/events.php:1045
895
+ #: app/features/mec/settings.php:1109 app/features/mec/settings.php:1132
896
  msgid ""
897
  "Fee amount, considered as fixed amount if you set the type to amount "
898
  "otherwise considered as percentage"
900
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
901
  "sonst als Prozentsatz"
902
 
903
+ #: app/features/events.php:1024 app/features/events.php:1049
904
+ #: app/features/mec/settings.php:1113 app/features/mec/settings.php:1136
905
  msgid "Percent"
906
  msgstr "Prozent"
907
 
908
+ #: app/features/events.php:1025 app/features/events.php:1050
909
+ #: app/features/mec/settings.php:1114 app/features/mec/settings.php:1137
910
  msgid "Amount (Per Ticket)"
911
  msgstr "Betrag (pro Ticket)"
912
 
913
+ #: app/features/events.php:1026 app/features/events.php:1051
914
+ #: app/features/mec/settings.php:1115 app/features/mec/settings.php:1138
915
  msgid "Amount (Per Booking)"
916
  msgstr "Betrag (pro Buchung)"
917
 
918
+ #: app/features/events.php:1080 app/features/mec/settings.php:932
919
+ msgid "Ticket Variations / Options"
920
+ msgstr ""
921
+
922
+ #: app/features/events.php:1101 app/features/events.php:1123
923
+ #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1194
924
+ #, fuzzy
925
+ #| msgid "Option"
926
+ msgid "Option Price"
927
+ msgstr "Option"
928
+
929
+ #: app/features/events.php:1104 app/features/events.php:1126
930
+ #: app/features/mec/settings.php:1177 app/features/mec/settings.php:1197
931
+ #, fuzzy
932
+ #| msgid "Amount (Per Ticket)"
933
+ msgid "Maximum Per Ticket"
934
+ msgstr "Betrag (pro Ticket)"
935
+
936
+ #: app/features/events.php:1105 app/features/events.php:1127
937
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1198
938
+ msgid "Maximum Per Ticket. Leave it blank for unlimited."
939
+ msgstr ""
940
+
941
+ #: app/features/events.php:1189 app/features/mec/regform.php:117
942
+ #: app/libraries/main.php:2038
943
  msgid "Text"
944
  msgstr "Text"
945
 
946
+ #: app/features/events.php:1191 app/features/mec/regform.php:119
947
  #: app/features/organizers.php:102 app/features/organizers.php:146
948
+ #: app/features/speakers.php:111 app/features/speakers.php:175
949
+ #: app/features/speakers.php:244 app/libraries/main.php:2096
950
  msgid "Tel"
951
  msgstr "Tel"
952
 
953
+ #: app/features/events.php:1192 app/features/mec/regform.php:120
954
+ #: app/libraries/main.php:2125
955
  msgid "Textarea"
956
  msgstr "Textbereich"
957
 
958
+ #: app/features/events.php:1193 app/features/mec/regform.php:121
959
+ #: app/libraries/main.php:2178
960
  msgid "Checkboxes"
961
  msgstr "Checkboxes"
962
 
963
+ #: app/features/events.php:1194 app/features/mec/regform.php:122
964
+ #: app/libraries/main.php:2222
965
  msgid "Radio Buttons"
966
  msgstr "Radio Buttons"
967
 
968
+ #: app/features/events.php:1195 app/features/mec/meta_boxes/search_form.php:34
969
  #: app/features/mec/meta_boxes/search_form.php:41
970
  #: app/features/mec/meta_boxes/search_form.php:48
971
  #: app/features/mec/meta_boxes/search_form.php:55
981
  #: app/features/mec/meta_boxes/search_form.php:149
982
  #: app/features/mec/meta_boxes/search_form.php:156
983
  #: app/features/mec/meta_boxes/search_form.php:175
984
+ #: app/features/mec/meta_boxes/search_form.php:182
985
  #: app/features/mec/meta_boxes/search_form.php:201
986
  #: app/features/mec/meta_boxes/search_form.php:208
987
  #: app/features/mec/meta_boxes/search_form.php:215
988
  #: app/features/mec/meta_boxes/search_form.php:222
989
+ #: app/features/mec/meta_boxes/search_form.php:229
990
  #: app/features/mec/meta_boxes/search_form.php:248
991
  #: app/features/mec/meta_boxes/search_form.php:255
992
  #: app/features/mec/meta_boxes/search_form.php:262
993
  #: app/features/mec/meta_boxes/search_form.php:269
994
+ #: app/features/mec/meta_boxes/search_form.php:276
995
  #: app/features/mec/meta_boxes/search_form.php:295
996
  #: app/features/mec/meta_boxes/search_form.php:302
997
  #: app/features/mec/meta_boxes/search_form.php:309
998
+ #: app/features/mec/meta_boxes/search_form.php:316
999
  #: app/features/mec/meta_boxes/search_form.php:335
1000
  #: app/features/mec/meta_boxes/search_form.php:342
1001
  #: app/features/mec/meta_boxes/search_form.php:349
1002
  #: app/features/mec/meta_boxes/search_form.php:356
1003
+ #: app/features/mec/meta_boxes/search_form.php:363
1004
  #: app/features/mec/meta_boxes/search_form.php:382
1005
  #: app/features/mec/meta_boxes/search_form.php:389
1006
  #: app/features/mec/meta_boxes/search_form.php:396
1007
  #: app/features/mec/meta_boxes/search_form.php:403
1008
+ #: app/features/mec/meta_boxes/search_form.php:410
1009
  #: app/features/mec/meta_boxes/search_form.php:429
1010
  #: app/features/mec/meta_boxes/search_form.php:436
1011
  #: app/features/mec/meta_boxes/search_form.php:443
1012
  #: app/features/mec/meta_boxes/search_form.php:450
1013
+ #: app/features/mec/meta_boxes/search_form.php:457
1014
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2266
1015
  msgid "Dropdown"
1016
  msgstr "Dropdown"
1017
 
1018
+ #: app/features/events.php:1196 app/features/mec/regform.php:124
1019
+ #: app/libraries/main.php:2313
1020
  msgid "Agreement"
1021
  msgstr "Zustimmung"
1022
 
1023
+ #: app/features/events.php:1197 app/features/mec/regform.php:125
1024
+ #: app/libraries/main.php:2154
1025
  msgid "Paragraph"
1026
  msgstr "Absatz"
1027
 
1028
+ #: app/features/events.php:1658 app/features/events.php:1673
1029
+ #: app/features/events.php:1687
1030
  #, php-format
1031
  msgid "Show all %s"
1032
  msgstr "Zeige alle %s"
1033
 
1034
+ #: app/features/events.php:1658
1035
  msgid "labels"
1036
  msgstr "Labels + Eventstatus"
1037
 
1038
+ #: app/features/events.php:1673
1039
  msgid "locations"
1040
  msgstr "Orte"
1041
 
1042
+ #: app/features/events.php:1687
1043
  msgid "organizers"
1044
  msgstr "Veranstalter"
1045
 
1046
+ #: app/features/events.php:1713 app/features/events.php:1894
1047
+ #: app/features/events.php:1938 app/features/ix.php:2328
1048
  #: app/features/ix.php:2369 app/features/locations.php:58
1049
  #: app/features/locations.php:229 app/features/locations.php:281
1050
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1051
+ #: app/features/mec/meta_boxes/display_options.php:659
1052
  #: app/features/mec/meta_boxes/search_form.php:38
1053
  #: app/features/mec/meta_boxes/search_form.php:85
1054
  #: app/features/mec/meta_boxes/search_form.php:132
1055
+ #: app/features/mec/meta_boxes/search_form.php:205
1056
+ #: app/features/mec/meta_boxes/search_form.php:252
1057
+ #: app/features/mec/meta_boxes/search_form.php:299
1058
+ #: app/features/mec/meta_boxes/search_form.php:339
1059
+ #: app/features/mec/meta_boxes/search_form.php:386
1060
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1576
1061
+ #: app/libraries/main.php:4155 app/libraries/skins.php:738
1062
+ #: app/skins/single/default.php:140 app/skins/single/default.php:345
1063
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1064
+ #: app/skins/single/modern.php:81
1065
  msgid "Location"
1066
  msgstr "Ort"
1067
 
1068
+ #: app/features/events.php:1714 app/features/events.php:1894
1069
+ #: app/features/events.php:1938 app/features/ix.php:2328
1070
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:113
1071
+ #: app/features/mec/meta_boxes/display_options.php:660
1072
  #: app/features/mec/meta_boxes/search_form.php:45
1073
  #: app/features/mec/meta_boxes/search_form.php:92
1074
  #: app/features/mec/meta_boxes/search_form.php:139
1075
+ #: app/features/mec/meta_boxes/search_form.php:212
1076
+ #: app/features/mec/meta_boxes/search_form.php:259
1077
+ #: app/features/mec/meta_boxes/search_form.php:306
1078
+ #: app/features/mec/meta_boxes/search_form.php:346
1079
+ #: app/features/mec/meta_boxes/search_form.php:393
1080
+ #: app/features/mec/meta_boxes/search_form.php:440
1081
  #: app/features/organizers.php:58 app/features/organizers.php:199
1082
  #: app/features/organizers.php:255 app/features/organizers.php:257
1083
+ #: app/libraries/main.php:4157 app/libraries/skins.php:764
1084
+ #: app/skins/single/default.php:180 app/skins/single/default.php:385
1085
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1086
  #: app/skins/single/modern.php:21
1087
  msgid "Organizer"
1088
  msgstr "Veranstalter"
1089
 
1090
+ #: app/features/events.php:1718
1091
  msgid "Repeat"
1092
  msgstr "Wiederholen"
1093
 
1094
+ #: app/features/events.php:1719
1095
  msgid "Author"
1096
  msgstr "Autor"
1097
 
1098
+ #: app/features/events.php:1829 app/features/events.php:1830
1099
  msgid "iCal Export"
1100
  msgstr "ical Export"
1101
 
1102
+ #: app/features/events.php:1832 app/features/events.php:1833
1103
  msgid "CSV Export"
1104
  msgstr "CSV Export"
1105
 
1106
+ #: app/features/events.php:1835 app/features/events.php:1836
1107
  msgid "MS Excel Export"
1108
  msgstr "MS Excel Export"
1109
 
1110
+ #: app/features/events.php:1838 app/features/events.php:1839
1111
  msgid "XML Export"
1112
  msgstr "XML Export"
1113
 
1114
+ #: app/features/events.php:1841 app/features/events.php:1842
1115
  msgid "JSON Export"
1116
  msgstr "JSON Export"
1117
 
1118
+ #: app/features/events.php:1844 app/features/events.php:1845
1119
  msgid "Duplicate"
1120
  msgstr "Kopie"
1121
 
1122
+ #: app/features/events.php:1894 app/features/events.php:1938
1123
  #: app/features/ix.php:2328 app/features/ix.php:2369
1124
+ #: app/features/labels.php:176 app/features/locations.php:228
1125
+ #: app/features/organizers.php:198 app/features/speakers.php:241
1126
  msgid "ID"
1127
  msgstr "ID"
1128
 
1129
+ #: app/features/events.php:1894 app/features/events.php:1938
1130
  #: app/features/ix.php:2328 app/features/ix.php:2369
1131
  msgid "Link"
1132
  msgstr "Link"
1133
 
1134
+ #: app/features/events.php:1894 app/features/events.php:1938
1135
  #, php-format
1136
  msgid "%s Tel"
1137
  msgstr "%s Tel"
1138
 
1139
+ #: app/features/events.php:1894 app/features/events.php:1938
1140
  #, php-format
1141
  msgid "%s Email"
1142
  msgstr "%s Email"
1182
  msgid "Captcha is invalid! Please try again."
1183
  msgstr "Das eingegebene Captcha ist ungültig! Bitte versuchen Sie es erneut."
1184
 
1185
+ #: app/features/fes.php:264
1186
  msgid "Please fill event title field!"
1187
  msgstr "Bitte füllen Sie das Event Titelfeld"
1188
 
1189
+ #: app/features/fes.php:795
1190
  msgid "The event submitted. It will publish as soon as possible."
1191
  msgstr ""
1192
  "Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
1193
  "veröffentlicht werden."
1194
 
1195
+ #: app/features/fes.php:796
1196
  msgid "The event published."
1197
  msgstr "Die Veranstaltung wurde veröffentlicht."
1198
 
1204
  msgid "Note to reviewer"
1205
  msgstr "Zusätzliche Anmerkungen zum Event "
1206
 
1207
+ #: app/features/fes/form.php:416 app/features/fes/form.php:626
1208
  msgid "Submit"
1209
  msgstr "Buchung abschließen"
1210
 
1220
  msgid "eg. John Smith"
1221
  msgstr "z.B. Max Mustermann"
1222
 
1223
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:866
1224
  msgid "Featured Image"
1225
  msgstr "Ausgewähltes Bild"
1226
 
1229
  msgstr "Bild entfernen"
1230
 
1231
  #: app/features/fes/form.php:543 app/features/labels.php:61
1232
+ #: app/features/labels.php:220 app/features/mec.php:199
1233
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4152
1234
+ #: app/skins/single/default.php:119 app/skins/single/default.php:324
1235
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:197
1236
  msgid "Labels"
1237
  msgstr "Labels"
1238
 
1239
+ #: app/features/fes/form.php:588 app/features/mec.php:197
1240
  #: app/features/mec/meta_boxes/filter.php:138
1241
  msgid "Tags"
1242
  msgstr "Schlagworte"
1399
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1400
  "exportieren."
1401
 
1402
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:667
1403
  msgid "iCal"
1404
  msgstr "iCal"
1405
 
1506
  msgid "Add to Google Calendar"
1507
  msgstr "Zum Google Kalender hinzufügen"
1508
 
1509
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1354
1510
  msgid "Checking ..."
1511
  msgstr "Überprüfung"
1512
 
1548
  msgid "ICS Feed"
1549
  msgstr ""
1550
 
1551
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:548
1552
+ #: app/features/mec/settings.php:698 app/features/mec/settings.php:716
1553
+ #: app/features/mec/settings.php:981 app/features/mec/settings.php:1071
1554
+ #: app/features/mec/settings.php:1088 app/features/mec/settings.php:1153
1555
  #, php-format
1556
  msgid "%s is required to use this feature."
1557
  msgstr ""
1558
 
1559
  #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1560
+ #: app/features/mec/meta_boxes/display_options.php:224
1561
+ #: app/features/mec/meta_boxes/display_options.php:379
1562
+ #: app/features/mec/meta_boxes/display_options.php:469
1563
+ #: app/features/mec/meta_boxes/display_options.php:576
1564
+ #: app/features/mec/meta_boxes/display_options.php:626
1565
+ #: app/features/mec/meta_boxes/display_options.php:764
1566
+ #: app/features/mec/settings.php:548 app/features/mec/settings.php:698
1567
+ #: app/features/mec/settings.php:716 app/features/mec/settings.php:981
1568
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1088
1569
+ #: app/features/mec/settings.php:1153 app/features/mec/settings.php:1278
1570
+ #: app/libraries/skins.php:248
1571
  msgid "Pro version of Modern Events Calendar"
1572
  msgstr ""
1573
 
1672
  msgstr "Auto Synchronisation"
1673
 
1674
  #: app/features/ix/sync.php:21
1675
+ #: app/features/mec/meta_boxes/display_options.php:626
1676
  #, php-format
1677
  msgid "%s is required to use synchronization feature."
1678
  msgstr ""
1783
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
1784
 
1785
  #: app/features/labels.php:60
1786
+ #: app/features/mec/meta_boxes/display_options.php:658
1787
  #: app/features/mec/meta_boxes/search_form.php:52
1788
  #: app/features/mec/meta_boxes/search_form.php:99
1789
  #: app/features/mec/meta_boxes/search_form.php:146
1790
+ #: app/features/mec/meta_boxes/search_form.php:219
1791
+ #: app/features/mec/meta_boxes/search_form.php:266
1792
+ #: app/features/mec/meta_boxes/search_form.php:313
1793
+ #: app/features/mec/meta_boxes/search_form.php:353
1794
+ #: app/features/mec/meta_boxes/search_form.php:400
1795
+ #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:790
1796
  msgid "Label"
1797
  msgstr "Label"
1798
 
1799
+ #: app/features/labels.php:102 app/features/labels.php:133
1800
+ #: app/features/labels.php:178
1801
  msgid "Color"
1802
  msgstr "Farbe"
1803
 
1804
+ #: app/features/labels.php:106 app/features/labels.php:135
1805
  msgid "Select label color"
1806
  msgstr "Wähle Label Farbe"
1807
 
1808
+ #: app/features/labels.php:111 app/features/labels.php:138
1809
+ #: app/features/mec/meta_boxes/display_options.php:32
1810
+ #: app/features/mec/meta_boxes/display_options.php:127
1811
+ #: app/features/mec/meta_boxes/display_options.php:229
1812
+ #: app/features/mec/meta_boxes/display_options.php:384
1813
+ #: app/features/mec/meta_boxes/display_options.php:428
1814
+ #: app/features/mec/meta_boxes/display_options.php:581
1815
+ #: app/features/mec/meta_boxes/display_options.php:682
1816
+ #: app/features/mec/meta_boxes/display_options.php:721
1817
+ #: app/features/mec/meta_boxes/display_options.php:789
1818
+ #: app/features/mec/meta_boxes/display_options.php:849
1819
+ msgid "Style"
1820
+ msgstr "Style"
1821
+
1822
+ #: app/features/labels.php:115 app/features/labels.php:140
1823
+ msgid "Normal"
1824
+ msgstr ""
1825
+
1826
+ #: app/features/labels.php:116 app/features/labels.php:141
1827
+ #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
1828
+ #: app/skins/carousel/render.php:29 app/skins/countdown/tpl.php:24
1829
+ #: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:22
1830
+ #: app/skins/grid/render.php:49 app/skins/list/render.php:35
1831
+ #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
1832
+ #: app/skins/monthly_view/calendar_clean.php:81
1833
+ #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:48
1834
+ #: app/skins/timetable/render.php:32 app/skins/timetable/render.php:95
1835
+ #: app/skins/weekly_view/render.php:30 app/skins/yearly_view/render.php:47
1836
+ #, fuzzy
1837
+ #| msgid "Featured Image"
1838
+ msgid "Featured"
1839
+ msgstr "Ausgewähltes Bild"
1840
+
1841
+ #: app/features/labels.php:117 app/features/labels.php:142
1842
+ #: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:35
1843
+ #: app/skins/carousel/render.php:33 app/skins/countdown/tpl.php:28
1844
+ #: app/skins/cover/tpl.php:31 app/skins/daily_view/render.php:26
1845
+ #: app/skins/grid/render.php:53 app/skins/list/render.php:39
1846
+ #: app/skins/masonry/render.php:32 app/skins/monthly_view/calendar.php:84
1847
+ #: app/skins/monthly_view/calendar_clean.php:85
1848
+ #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1849
+ #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
1850
+ #: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:51
1851
+ msgid "Canceled"
1852
+ msgstr "Abgesagt"
1853
+
1854
+ #: app/features/labels.php:119 app/features/labels.php:144
1855
+ msgid "You can show featured and canceled events by a different style!"
1856
+ msgstr ""
1857
+
1858
+ #: app/features/labels.php:179 app/features/locations.php:231
1859
+ #: app/features/organizers.php:201 app/features/speakers.php:245
1860
+ #: app/modules/booking/steps/tickets.php:36
1861
  msgid "Count"
1862
  msgstr "Zähler"
1863
 
1864
+ #: app/features/labels.php:180 app/features/locations.php:232
1865
  #: app/features/organizers.php:202
1866
  msgid "Slug"
1867
  msgstr "Slug"
1868
 
1869
+ #: app/features/labels.php:220 app/features/locations.php:281
1870
  #, php-format
1871
  msgid "Event %s"
1872
  msgstr "Event %s"
1873
 
1874
+ #: app/features/locations.php:59 app/features/mec.php:200
1875
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4154
1876
  msgid "Locations"
1877
  msgstr "Orte"
1878
 
1905
 
1906
  #: app/features/locations.php:137 app/features/locations.php:179
1907
  #: app/features/organizers.php:126 app/features/organizers.php:158
1908
+ #: app/features/speakers.php:151 app/features/speakers.php:195
1909
  msgid "Thumbnail"
1910
  msgstr "Miniaturansicht"
1911
 
1912
  #: app/features/locations.php:142 app/features/locations.php:182
1913
  #: app/features/organizers.php:131 app/features/organizers.php:161
1914
+ #: app/features/speakers.php:156 app/features/speakers.php:198
1915
  msgid "Upload/Add image"
1916
  msgstr "Bild hochladen/hinzufügen"
1917
 
1919
  #: app/features/locations.php:322 app/features/locations.php:329
1920
  #: app/features/organizers.php:132 app/features/organizers.php:162
1921
  #: app/features/organizers.php:288 app/features/organizers.php:295
1922
+ #: app/features/speakers.php:157 app/features/speakers.php:199
1923
  msgid "Remove image"
1924
  msgstr "Bild entfernen"
1925
 
1946
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
1947
  "Westfalenhalle"
1948
 
1949
+ #: app/features/locations.php:298 app/features/mec/settings.php:896
1950
+ #: app/widgets/single.php:115
1951
  msgid "Event Location"
1952
  msgstr "Veranstaltungsort"
1953
 
1979
  msgid "Don't show map in single event page"
1980
  msgstr "Karte in Einzelansicht nicht anzeigen"
1981
 
1982
+ #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
1983
+ #: app/features/organizers.php:59 app/libraries/main.php:4156
1984
  msgid "Organizers"
1985
  msgstr "Veranstalter"
1986
 
1987
+ #: app/features/mec.php:209 app/features/mec.php:223
1988
+ #: app/features/mec/dashboard.php:99
1989
  msgid "Shortcodes"
1990
  msgstr "Shortcodes"
1991
 
1992
+ #: app/features/mec.php:210
1993
  msgid "MEC - Settings"
1994
  msgstr "MEC - Einstellungen"
1995
 
1996
+ #: app/features/mec.php:225
1997
  msgid "Add Shortcode"
1998
  msgstr "Shortcode hinzufügen"
1999
 
2000
+ #: app/features/mec.php:226
2001
  msgid "Add New Shortcode"
2002
  msgstr "Neuen Shortcode hinzufügen"
2003
 
2004
+ #: app/features/mec.php:227
2005
  msgid "No shortcodes found!"
2006
  msgstr "Keine Shortcodes gefunden!"
2007
 
2008
+ #: app/features/mec.php:228
2009
  msgid "All Shortcodes"
2010
  msgstr "Alle Shortcodes"
2011
 
2012
+ #: app/features/mec.php:229
2013
  msgid "Edit shortcodes"
2014
  msgstr "Shortcode ändern"
2015
 
2016
+ #: app/features/mec.php:230
2017
  msgid "No shortcodes found in Trash!"
2018
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2019
 
2020
+ #: app/features/mec.php:277
2021
  msgid "Display Options"
2022
  msgstr "Darstellungsoptionen"
2023
 
2024
+ #: app/features/mec.php:278
2025
  msgid "Filter Options"
2026
  msgstr "Filteroptionen"
2027
 
2028
+ #: app/features/mec.php:280
2029
  msgid "Search Form"
2030
  msgstr "Suche Formular"
2031
 
2032
+ #: app/features/mec.php:568
2033
  msgid "Single Event Display Method"
2034
  msgstr "Single Event Anzeigemethode"
2035
 
2036
+ #: app/features/mec.php:573
2037
  msgid "Separate Window"
2038
  msgstr "Separates Fenster"
2039
 
2040
+ #: app/features/mec.php:574
2041
  msgid "Modal 1"
2042
  msgstr "Modal 1"
2043
 
2059
  msgid "Modern Event Calendar (Lite)"
2060
  msgstr ""
2061
 
2062
+ #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2063
+ msgid "Rate the plugin ★★★★★"
2064
+ msgstr ""
2065
+
2066
+ #: app/features/mec/dashboard.php:73
2067
  msgid "Version"
2068
  msgstr "Version"
2069
 
2070
+ #: app/features/mec/dashboard.php:82
2071
  #, php-format
2072
  msgid ""
2073
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2075
  "Spots, etc you should %s to the Pro version."
2076
  msgstr ""
2077
 
2078
+ #: app/features/mec/dashboard.php:82
2079
  msgid "lite"
2080
  msgstr ""
2081
 
2082
+ #: app/features/mec/dashboard.php:82
2083
  msgid "upgrade"
2084
  msgstr ""
2085
 
2086
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:91
2087
  msgid "Documentation"
2088
  msgstr "Dokumentation"
2089
 
2090
+ #: app/features/mec/dashboard.php:124 app/features/mec/support.php:95
2091
  msgid ""
2092
  "Our documentation is simple and functional with full details and cover all "
2093
  "essential aspects from beginning to the most advanced parts."
2096
  "deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
2097
  "ab."
2098
 
2099
+ #: app/features/mec/dashboard.php:126 app/features/mec/support.php:98
2100
  msgid "DOCUMENTATION"
2101
  msgstr "Dokumentation"
2102
 
2103
+ #: app/features/mec/dashboard.php:135 app/features/mec/support.php:107
2104
  msgid "Support Forum"
2105
  msgstr "Support Forum"
2106
 
2107
+ #: app/features/mec/dashboard.php:139 app/features/mec/support.php:111
2108
  msgid ""
2109
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2110
  "If you want to use this service you need to upgrade your plugin to Pro "
2111
  "version. Click on the following button."
2112
  msgstr ""
2113
 
2114
+ #: app/features/mec/dashboard.php:141 app/features/mec/support.php:113
2115
  msgid ""
2116
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2117
  "If you have any issues please don't hesitate to contact us, we will reply as "
2121
  "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
2122
  "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
2123
 
2124
+ #: app/features/mec/dashboard.php:145 app/features/mec/support.php:117
2125
  msgid "GO PREMIUM"
2126
  msgstr ""
2127
 
2128
+ #: app/features/mec/dashboard.php:147 app/features/mec/support.php:119
2129
  msgid "OPEN A TICKET"
2130
  msgstr "Ein Ticket eröffnen"
2131
 
2132
+ #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:395
2133
  msgid "Upcoming Events"
2134
  msgstr "Kommende Veranstaltungen"
2135
 
2136
+ #: app/features/mec/dashboard.php:184
2137
  msgid "Popular Gateways"
2138
  msgstr "Beliebte Zahlungsgateways"
2139
 
2140
+ #: app/features/mec/dashboard.php:235
2141
  msgid "Total Bookings"
2142
  msgstr "Gesamte Buchungen"
2143
 
2144
+ #: app/features/mec/dashboard.php:262
2145
  msgid "This Month"
2146
  msgstr "Diesen Monat"
2147
 
2148
+ #: app/features/mec/dashboard.php:263
2149
  msgid "Last Month"
2150
  msgstr "Letzten Monat"
2151
 
2152
+ #: app/features/mec/dashboard.php:264
2153
  msgid "This Year"
2154
  msgstr "Diese Jahr"
2155
 
2156
+ #: app/features/mec/dashboard.php:265
2157
  msgid "Last Year"
2158
  msgstr "Letztes Jahr"
2159
 
2160
+ #: app/features/mec/dashboard.php:277
2161
  msgid "Bar"
2162
  msgstr "Bar"
2163
 
2164
+ #: app/features/mec/dashboard.php:278
2165
  msgid "Line"
2166
  msgstr "Linie"
2167
 
2168
+ #: app/features/mec/dashboard.php:280
2169
  msgid "Filter"
2170
  msgstr "Filter"
2171
 
2172
+ #: app/features/mec/dashboard.php:296
2173
  #, php-format
2174
  msgid "Total Sells (%s)"
2175
  msgstr "Alle Verkäufe (%s)"
2176
 
2177
+ #: app/features/mec/dashboard.php:317
2178
  msgid "Change Log"
2179
  msgstr "Änderungsprotokoll"
2180
 
2181
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2182
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2183
+ #: app/features/mec/settings.php:222 app/features/mec/styles.php:52
2184
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2185
  msgid "Styling Options"
2186
  msgstr "Styling-Optionen"
2187
 
2188
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2189
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2190
+ #: app/features/mec/settings.php:229 app/features/mec/styles.php:59
2191
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2192
  msgid "Custom CSS"
2193
  msgstr "Custom CSS"
2194
 
2195
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2196
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2197
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:236
2198
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2199
  #: app/features/mec/support.php:64
2200
  msgid "Messages"
2202
 
2203
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2204
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2205
+ #: app/features/mec/settings.php:243 app/features/mec/styles.php:73
2206
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2207
  #: app/features/mec/support.php:84
2208
  msgid "Support"
2215
  #: app/features/mec/notifications.php:425
2216
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2217
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2218
+ #: app/features/mec/settings.php:251 app/features/mec/settings.php:1316
2219
+ #: app/features/mec/settings.php:1324 app/features/mec/settings.php:1368
2220
+ #: app/features/mec/settings.php:1381 app/features/mec/styles.php:96
2221
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2222
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2223
  #: app/features/mec/styling.php:335
2226
 
2227
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2228
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2229
+ #: app/features/mec/settings.php:1349 app/features/mec/styles.php:123
2230
  #: app/features/mec/styling.php:313
2231
  msgid "Saved"
2232
  msgstr "Gesichert"
2233
 
2234
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2235
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2236
+ #: app/features/mec/settings.php:1350 app/features/mec/styles.php:124
2237
  #: app/features/mec/styling.php:314
2238
  msgid "Settings Saved!"
2239
  msgstr ""
2254
  msgid "Skin"
2255
  msgstr "Skin"
2256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2257
  #: app/features/mec/meta_boxes/display_options.php:34
2258
+ #: app/features/mec/meta_boxes/display_options.php:129
2259
+ #: app/features/mec/meta_boxes/display_options.php:430
2260
+ #: app/features/mec/meta_boxes/display_options.php:684
2261
  msgid "Classic"
2262
  msgstr "Klassisch"
2263
 
2264
  #: app/features/mec/meta_boxes/display_options.php:35
2265
+ #: app/features/mec/meta_boxes/display_options.php:131
2266
  msgid "Minimal"
2267
  msgstr "Minimal"
2268
 
2269
  #: app/features/mec/meta_boxes/display_options.php:36
2270
+ #: app/features/mec/meta_boxes/display_options.php:132
2271
+ #: app/features/mec/meta_boxes/display_options.php:386
2272
+ #: app/features/mec/meta_boxes/display_options.php:432
2273
+ #: app/features/mec/meta_boxes/display_options.php:583
2274
+ #: app/features/mec/meta_boxes/display_options.php:686
2275
  msgid "Modern"
2276
  msgstr "Modern"
2277
 
2284
  msgstr "Accordion"
2285
 
2286
  #: app/features/mec/meta_boxes/display_options.php:44
2287
+ #: app/features/mec/meta_boxes/display_options.php:141
2288
+ #: app/features/mec/meta_boxes/display_options.php:237
2289
+ #: app/features/mec/meta_boxes/display_options.php:476
2290
+ #: app/features/mec/meta_boxes/display_options.php:509
2291
+ #: app/features/mec/meta_boxes/display_options.php:633
2292
+ #: app/features/mec/meta_boxes/display_options.php:799
2293
+ #: app/features/mec/meta_boxes/display_options.php:861
2294
  msgid "Today"
2295
  msgstr "Heute"
2296
 
2297
  #: app/features/mec/meta_boxes/display_options.php:45
2298
+ #: app/features/mec/meta_boxes/display_options.php:142
2299
+ #: app/features/mec/meta_boxes/display_options.php:238
2300
+ #: app/features/mec/meta_boxes/display_options.php:477
2301
+ #: app/features/mec/meta_boxes/display_options.php:510
2302
+ #: app/features/mec/meta_boxes/display_options.php:634
2303
+ #: app/features/mec/meta_boxes/display_options.php:800
2304
+ #: app/features/mec/meta_boxes/display_options.php:862
2305
  msgid "Tomorrow"
2306
  msgstr "Morgen"
2307
 
2308
  #: app/features/mec/meta_boxes/display_options.php:46
2309
+ #: app/features/mec/meta_boxes/display_options.php:143
2310
+ #: app/features/mec/meta_boxes/display_options.php:239
2311
+ #: app/features/mec/meta_boxes/display_options.php:286
2312
+ #: app/features/mec/meta_boxes/display_options.php:439
2313
+ #: app/features/mec/meta_boxes/display_options.php:478
2314
+ #: app/features/mec/meta_boxes/display_options.php:511
2315
+ #: app/features/mec/meta_boxes/display_options.php:546
2316
+ #: app/features/mec/meta_boxes/display_options.php:592
2317
+ #: app/features/mec/meta_boxes/display_options.php:635
2318
+ #: app/features/mec/meta_boxes/display_options.php:801
2319
+ #: app/features/mec/meta_boxes/display_options.php:863
2320
  msgid "Start of Current Month"
2321
  msgstr "Mit Beginn des laufenden Monats"
2322
 
2323
  #: app/features/mec/meta_boxes/display_options.php:47
2324
+ #: app/features/mec/meta_boxes/display_options.php:144
2325
+ #: app/features/mec/meta_boxes/display_options.php:240
2326
+ #: app/features/mec/meta_boxes/display_options.php:287
2327
+ #: app/features/mec/meta_boxes/display_options.php:440
2328
+ #: app/features/mec/meta_boxes/display_options.php:479
2329
+ #: app/features/mec/meta_boxes/display_options.php:512
2330
+ #: app/features/mec/meta_boxes/display_options.php:547
2331
+ #: app/features/mec/meta_boxes/display_options.php:593
2332
+ #: app/features/mec/meta_boxes/display_options.php:636
2333
+ #: app/features/mec/meta_boxes/display_options.php:802
2334
+ #: app/features/mec/meta_boxes/display_options.php:864
2335
  msgid "Start of Next Month"
2336
  msgstr "Mit Beginn des kommenden Monats"
2337
 
2338
  #: app/features/mec/meta_boxes/display_options.php:48
2339
+ #: app/features/mec/meta_boxes/display_options.php:145
2340
+ #: app/features/mec/meta_boxes/display_options.php:241
2341
+ #: app/features/mec/meta_boxes/display_options.php:288
2342
+ #: app/features/mec/meta_boxes/display_options.php:394
2343
+ #: app/features/mec/meta_boxes/display_options.php:441
2344
+ #: app/features/mec/meta_boxes/display_options.php:480
2345
+ #: app/features/mec/meta_boxes/display_options.php:513
2346
+ #: app/features/mec/meta_boxes/display_options.php:548
2347
+ #: app/features/mec/meta_boxes/display_options.php:594
2348
+ #: app/features/mec/meta_boxes/display_options.php:637
2349
+ #: app/features/mec/meta_boxes/display_options.php:803
2350
+ #: app/features/mec/meta_boxes/display_options.php:865
2351
  msgid "On a certain date"
2352
  msgstr "An einem bestimmten Tag"
2353
 
2354
  #: app/features/mec/meta_boxes/display_options.php:51
2355
+ #: app/features/mec/meta_boxes/display_options.php:148
2356
+ #: app/features/mec/meta_boxes/display_options.php:244
2357
+ #: app/features/mec/meta_boxes/display_options.php:291
2358
+ #: app/features/mec/meta_boxes/display_options.php:397
2359
+ #: app/features/mec/meta_boxes/display_options.php:444
2360
+ #: app/features/mec/meta_boxes/display_options.php:483
2361
+ #: app/features/mec/meta_boxes/display_options.php:517
2362
+ #: app/features/mec/meta_boxes/display_options.php:551
2363
+ #: app/features/mec/meta_boxes/display_options.php:597
2364
+ #: app/features/mec/meta_boxes/display_options.php:640
2365
+ #: app/features/mec/meta_boxes/display_options.php:806
2366
+ #: app/features/mec/meta_boxes/display_options.php:868
2367
  #, php-format
2368
  msgid "eg. %s"
2369
  msgstr "z.B. %s"
2373
  #: app/features/mec/meta_boxes/display_options.php:67
2374
  #: app/features/mec/meta_boxes/display_options.php:74
2375
  #: app/features/mec/meta_boxes/display_options.php:79
2376
+ #: app/features/mec/meta_boxes/display_options.php:152
2377
+ #: app/features/mec/meta_boxes/display_options.php:157
2378
+ #: app/features/mec/meta_boxes/display_options.php:163
2379
+ #: app/features/mec/meta_boxes/display_options.php:169
2380
+ #: app/features/mec/meta_boxes/display_options.php:176
2381
+ #: app/features/mec/meta_boxes/display_options.php:181
2382
+ #: app/features/mec/meta_boxes/display_options.php:188
2383
+ #: app/features/mec/meta_boxes/display_options.php:248
2384
+ #: app/features/mec/meta_boxes/display_options.php:401
2385
+ #: app/features/mec/meta_boxes/display_options.php:644
2386
+ #: app/features/mec/meta_boxes/display_options.php:690
2387
+ #: app/features/mec/meta_boxes/display_options.php:697
2388
+ #: app/features/mec/meta_boxes/display_options.php:703
2389
+ #: app/features/mec/meta_boxes/display_options.php:729
2390
+ #: app/features/mec/meta_boxes/display_options.php:734
 
2391
  #: app/features/mec/meta_boxes/display_options.php:739
2392
+ #: app/features/mec/meta_boxes/display_options.php:769
2393
+ #: app/features/mec/meta_boxes/display_options.php:810
2394
+ #: app/features/mec/meta_boxes/display_options.php:817
2395
+ #: app/features/mec/meta_boxes/display_options.php:822
2396
+ #: app/features/mec/meta_boxes/display_options.php:872
2397
+ #: app/features/mec/meta_boxes/display_options.php:879
2398
+ #: app/features/mec/meta_boxes/display_options.php:886
2399
+ #: app/features/mec/meta_boxes/display_options.php:893
2400
+ #: app/features/mec/meta_boxes/display_options.php:900
2401
  msgid "Date Formats"
2402
  msgstr "Datumsformate"
2403
 
2404
  #: app/features/mec/meta_boxes/display_options.php:57
2405
+ #: app/features/mec/meta_boxes/display_options.php:178
2406
  msgid "Default value is \"M d Y\""
2407
  msgstr "Standard Wert ist \"M T J\""
2408
 
2411
  msgstr "Standard Werte sind T, M und J"
2412
 
2413
  #: app/features/mec/meta_boxes/display_options.php:71
2414
+ #: app/features/mec/meta_boxes/display_options.php:173
2415
+ #: app/features/mec/meta_boxes/display_options.php:185
2416
+ #: app/features/mec/meta_boxes/display_options.php:876
2417
+ #: app/features/mec/meta_boxes/display_options.php:883
2418
+ #: app/features/mec/meta_boxes/display_options.php:890
2419
+ #: app/features/mec/meta_boxes/display_options.php:897
2420
+ #: app/features/mec/meta_boxes/display_options.php:904
2421
  msgid "Default values are d, F and l"
2422
  msgstr ""
2423
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
2427
  msgstr "Standard Wert ist \"M T\""
2428
 
2429
  #: app/features/mec/meta_boxes/display_options.php:82
2430
+ #: app/features/mec/meta_boxes/display_options.php:160
2431
  msgid "Default values are d and F"
2432
  msgstr "Die Standardwerte sind d and F"
2433
 
2434
  #: app/features/mec/meta_boxes/display_options.php:85
2435
+ #: app/features/mec/meta_boxes/display_options.php:204
2436
+ #: app/features/mec/meta_boxes/display_options.php:254
2437
+ #: app/features/mec/meta_boxes/display_options.php:650
2438
+ #: app/features/mec/meta_boxes/display_options.php:836
2439
+ #: app/features/mec/meta_boxes/display_options.php:907
2440
  msgid "Limit"
2441
  msgstr "Limit"
2442
 
2443
  #: app/features/mec/meta_boxes/display_options.php:86
2444
+ #: app/features/mec/meta_boxes/display_options.php:205
2445
+ #: app/features/mec/meta_boxes/display_options.php:255
2446
+ #: app/features/mec/meta_boxes/display_options.php:408
2447
+ #: app/features/mec/meta_boxes/display_options.php:449
2448
+ #: app/features/mec/meta_boxes/display_options.php:522
2449
+ #: app/features/mec/meta_boxes/display_options.php:556
2450
+ #: app/features/mec/meta_boxes/display_options.php:602
2451
+ #: app/features/mec/meta_boxes/display_options.php:837
2452
+ #: app/features/mec/meta_boxes/display_options.php:908
2453
  msgid "eg. 6"
2454
  msgstr "z.B. 6"
2455
 
2456
  #: app/features/mec/meta_boxes/display_options.php:90
2457
+ #: app/features/mec/meta_boxes/display_options.php:209
2458
+ #: app/features/mec/meta_boxes/display_options.php:259
2459
  msgid "Load More Button"
2460
  msgstr "Button \"Weitere Veranstaltungen Laden\""
2461
 
2462
  #: app/features/mec/meta_boxes/display_options.php:100
2463
+ #: app/features/mec/meta_boxes/display_options.php:269
2464
  msgid "Show Month Divider"
2465
  msgstr "Zeige Monatsteilung"
2466
 
2467
+ #: app/features/mec/meta_boxes/display_options.php:113
2468
+ #, fuzzy
2469
+ #| msgid "Show Month Divider"
2470
+ msgid "Toggle for Month Divider"
2471
+ msgstr "Zeige Monatsteilung"
2472
+
2473
+ #: app/features/mec/meta_boxes/display_options.php:130
2474
+ #: app/features/mec/meta_boxes/display_options.php:231
2475
+ #: app/features/mec/meta_boxes/display_options.php:307
2476
+ #: app/features/mec/meta_boxes/display_options.php:431
2477
+ #: app/features/mec/meta_boxes/display_options.php:584
2478
+ #: app/features/mec/meta_boxes/display_options.php:685
2479
  msgid "Clean"
2480
  msgstr "Clean"
2481
 
2482
+ #: app/features/mec/meta_boxes/display_options.php:133
2483
  msgid "Simple"
2484
  msgstr "Schlicht"
2485
 
2486
+ #: app/features/mec/meta_boxes/display_options.php:134
2487
  msgid "Colorful"
2488
  msgstr "Farbenfroh"
2489
 
2490
+ #: app/features/mec/meta_boxes/display_options.php:135
2491
+ #: app/features/mec/meta_boxes/display_options.php:308
2492
+ #: app/features/mec/meta_boxes/display_options.php:433
2493
  msgid "Novel"
2494
  msgstr ""
2495
 
2496
+ #: app/features/mec/meta_boxes/display_options.php:154
2497
+ #: app/features/mec/meta_boxes/display_options.php:190
2498
  msgid "Default value is \"d F Y\""
2499
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
2500
 
2501
+ #: app/features/mec/meta_boxes/display_options.php:166
2502
  msgid "Default values are d and M"
2503
  msgstr "Standardwerte sind T und M"
2504
 
2505
+ #: app/features/mec/meta_boxes/display_options.php:193
2506
+ #: app/features/mec/meta_boxes/display_options.php:827
2507
  msgid "Count in row"
2508
  msgstr "Zeilen zählen"
2509
 
2510
+ #: app/features/mec/meta_boxes/display_options.php:224
2511
+ #: app/features/mec/meta_boxes/display_options.php:379
2512
+ #: app/features/mec/meta_boxes/display_options.php:469
2513
+ #: app/features/mec/meta_boxes/display_options.php:576
2514
+ #: app/features/mec/meta_boxes/display_options.php:764
2515
+ #: app/libraries/skins.php:248
2516
  #, php-format
2517
  msgid "%s is required to use this skin."
2518
  msgstr ""
2519
 
2520
+ #: app/features/mec/meta_boxes/display_options.php:251
2521
+ #: app/features/mec/meta_boxes/display_options.php:404
2522
  msgid "Default values are l and F j"
2523
  msgstr "Die Standardwerte sind I und F j"
2524
 
2525
+ #: app/features/mec/meta_boxes/display_options.php:295
2526
  msgid "Default View"
2527
  msgstr "Standardansicht"
2528
 
2529
+ #: app/features/mec/meta_boxes/display_options.php:297
2530
+ #: app/features/mec/meta_boxes/display_options.php:313
2531
+ #: app/libraries/main.php:324 app/libraries/main.php:1162
2532
  msgid "List View"
2533
  msgstr "Listenansicht"
2534
 
2535
+ #: app/features/mec/meta_boxes/display_options.php:298
2536
+ #: app/features/mec/meta_boxes/display_options.php:323
2537
+ #: app/libraries/main.php:328 app/libraries/main.php:1156
2538
  msgid "Yearly View"
2539
  msgstr "Jahresansicht"
2540
 
2541
+ #: app/features/mec/meta_boxes/display_options.php:299
2542
+ #: app/features/mec/meta_boxes/display_options.php:333
2543
  msgid "Monthly/Calendar View"
2544
  msgstr "Monatliche Kalenderansicht"
2545
 
2546
+ #: app/features/mec/meta_boxes/display_options.php:300
2547
+ #: app/features/mec/meta_boxes/display_options.php:343
2548
+ #: app/libraries/main.php:331 app/libraries/main.php:1158
2549
  msgid "Weekly View"
2550
  msgstr "Wochenansicht"
2551
 
2552
+ #: app/features/mec/meta_boxes/display_options.php:301
2553
+ #: app/features/mec/meta_boxes/display_options.php:353
2554
+ #: app/libraries/main.php:330 app/libraries/main.php:1159
2555
  msgid "Daily View"
2556
  msgstr "Tagesansicht"
2557
 
2558
+ #: app/features/mec/meta_boxes/display_options.php:305
2559
+ #, fuzzy
2560
+ #| msgid "Modern Style"
2561
+ msgid "Monthly Style"
2562
+ msgstr "Moderner Stil"
2563
+
2564
+ #: app/features/mec/meta_boxes/display_options.php:361
2565
  msgid "The price shows only in List View."
2566
  msgstr ""
2567
 
2568
+ #: app/features/mec/meta_boxes/display_options.php:364
2569
  msgid "Display Event Price"
2570
  msgstr ""
2571
 
2572
+ #: app/features/mec/meta_boxes/display_options.php:392
2573
  msgid "Start of Current Year"
2574
  msgstr "Mit Beginn des laufenden Jahres"
2575
 
2576
+ #: app/features/mec/meta_boxes/display_options.php:393
2577
  msgid "Start of Next Year"
2578
  msgstr "Start des nächsten Jahres"
2579
 
2580
+ #: app/features/mec/meta_boxes/display_options.php:407
2581
+ #: app/features/mec/meta_boxes/display_options.php:448
2582
+ #: app/features/mec/meta_boxes/display_options.php:521
2583
+ #: app/features/mec/meta_boxes/display_options.php:555
2584
+ #: app/features/mec/meta_boxes/display_options.php:601
2585
  msgid "Events per day"
2586
  msgstr "Veranstaltungen pro Tag"
2587
 
2588
+ #: app/features/mec/meta_boxes/display_options.php:412
2589
+ #: app/features/mec/meta_boxes/display_options.php:453
2590
+ #: app/features/mec/meta_boxes/display_options.php:526
2591
+ #: app/features/mec/meta_boxes/display_options.php:560
2592
+ #: app/features/mec/meta_boxes/display_options.php:607
2593
  msgid "Next/Previous Buttons"
2594
  msgstr "Schaltfläche \"Nächste/Letzte\""
2595
 
2596
+ #: app/features/mec/meta_boxes/display_options.php:420
2597
  msgid "For showing next/previous year navigation."
2598
  msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
2599
 
2600
+ #: app/features/mec/meta_boxes/display_options.php:461
2601
+ #: app/features/mec/meta_boxes/display_options.php:534
2602
+ #: app/features/mec/meta_boxes/display_options.php:568
2603
+ #: app/features/mec/meta_boxes/display_options.php:615
2604
  msgid "For showing next/previous month navigation."
2605
  msgstr "Für die Navigation zum nächsten/letzten Monat"
2606
 
2607
+ #: app/features/mec/meta_boxes/display_options.php:487
2608
  msgid "Maximum events"
2609
  msgstr "Veranstaltungsmaximum"
2610
 
2611
+ #: app/features/mec/meta_boxes/display_options.php:488
2612
  msgid "eg. 200"
2613
  msgstr "z.B. 200"
2614
 
2615
+ #: app/features/mec/meta_boxes/display_options.php:492
2616
  msgid "Geolocation"
2617
  msgstr ""
2618
 
2619
+ #: app/features/mec/meta_boxes/display_options.php:500
2620
  msgid "The geolocation feature works only in secure (https) websites."
2621
  msgstr ""
2622
 
2623
+ #: app/features/mec/meta_boxes/display_options.php:544
2624
+ #: app/features/mec/meta_boxes/display_options.php:590
2625
  msgid "Current Week"
2626
  msgstr "Aktuelle Woche"
2627
 
2628
+ #: app/features/mec/meta_boxes/display_options.php:545
2629
+ #: app/features/mec/meta_boxes/display_options.php:591
2630
  msgid "Next Week"
2631
  msgstr "Nächste Woche"
2632
 
2633
+ #: app/features/mec/meta_boxes/display_options.php:647
2634
+ #: app/features/mec/meta_boxes/display_options.php:772
2635
  msgid "Default values are j and F"
2636
  msgstr "Standardwerte sind j und F"
2637
 
2638
+ #: app/features/mec/meta_boxes/display_options.php:651
2639
  msgid "eg. 24"
2640
  msgstr "z.B. 24"
2641
 
2642
+ #: app/features/mec/meta_boxes/display_options.php:654
2643
  msgid "Filter By"
2644
  msgstr "Filtern nach\n"
2645
 
2646
+ #: app/features/mec/meta_boxes/display_options.php:665
2647
+ msgid "Convert Masonry to Grid"
2648
+ msgstr ""
2649
+
2650
+ #: app/features/mec/meta_boxes/display_options.php:666
2651
+ msgid "For using this option, your events should come with image"
2652
+ msgstr ""
2653
+
2654
+ #: app/features/mec/meta_boxes/display_options.php:694
2655
  msgid "Default values are d, M and Y"
2656
  msgstr "Standardwerte sind T, M und J"
2657
 
2658
+ #: app/features/mec/meta_boxes/display_options.php:700
2659
  msgid "Default values are \"F d\" and l"
2660
  msgstr ""
2661
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
2662
  "und ausgeschriebener Wochentag"
2663
 
2664
+ #: app/features/mec/meta_boxes/display_options.php:705
2665
  msgid "Default value is \"l, F d Y\""
2666
  msgstr ""
2667
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
2668
  "des Monates mit führender 0, Jahr"
2669
 
2670
+ #: app/features/mec/meta_boxes/display_options.php:723
2671
  msgid "Style 1"
2672
  msgstr "Stil 1"
2673
 
2674
+ #: app/features/mec/meta_boxes/display_options.php:724
2675
  msgid "Style 2"
2676
  msgstr "Stil 2"
2677
 
2678
+ #: app/features/mec/meta_boxes/display_options.php:725
2679
  msgid "Style 3"
2680
  msgstr "Stil 3"
2681
 
2682
+ #: app/features/mec/meta_boxes/display_options.php:731
2683
+ #: app/features/mec/meta_boxes/display_options.php:736
2684
  msgid "Default value is \"j F Y\""
2685
  msgstr "Standardwert ist \"j F Y\""
2686
 
2687
+ #: app/features/mec/meta_boxes/display_options.php:743
2688
  msgid "Default values are j, F and Y"
2689
  msgstr ""
2690
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
2691
 
2692
+ #: app/features/mec/meta_boxes/display_options.php:748
2693
+ #: app/features/mec/meta_boxes/display_options.php:777
2694
  msgid " -- Next Upcoming Event -- "
2695
  msgstr "-- Nächste Veranstaltung--"
2696
 
2697
+ #: app/features/mec/meta_boxes/display_options.php:755
2698
  msgid "Background Color"
2699
  msgstr "Hintergrund Farbe"
2700
 
2701
+ #: app/features/mec/meta_boxes/display_options.php:791
2702
+ #: app/features/mec/meta_boxes/display_options.php:851
2703
  msgid "Type 1"
2704
  msgstr "Typ 1"
2705
 
2706
+ #: app/features/mec/meta_boxes/display_options.php:792
2707
+ #: app/features/mec/meta_boxes/display_options.php:852
2708
  msgid "Type 2"
2709
  msgstr "Typ 2"
2710
 
2711
+ #: app/features/mec/meta_boxes/display_options.php:793
2712
+ #: app/features/mec/meta_boxes/display_options.php:853
2713
  msgid "Type 3"
2714
  msgstr "Type 3"
2715
 
2716
+ #: app/features/mec/meta_boxes/display_options.php:814
2717
  msgid "Default values are d, F and Y"
2718
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
2719
 
2720
+ #: app/features/mec/meta_boxes/display_options.php:819
2721
+ #: app/features/mec/meta_boxes/display_options.php:824
2722
  msgid "Default value is \"M d, Y\""
2723
  msgstr "Standardwert ist \"M T, J\""
2724
 
2725
+ #: app/features/mec/meta_boxes/display_options.php:840
2726
+ #: app/features/mec/meta_boxes/display_options.php:911
2727
  msgid "Auto Play Time"
2728
  msgstr "Auto Play Time"
2729
 
2730
+ #: app/features/mec/meta_boxes/display_options.php:841
2731
+ #: app/features/mec/meta_boxes/display_options.php:912
2732
  msgid "eg. 3000 default is 3 second"
2733
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
2734
 
2735
+ #: app/features/mec/meta_boxes/display_options.php:854
2736
  msgid "Type 4"
2737
  msgstr "Typ 4"
2738
 
2739
+ #: app/features/mec/meta_boxes/display_options.php:855
2740
  msgid "Type 5"
2741
  msgstr "Typ 5"
2742
 
2829
  #: app/features/mec/meta_boxes/search_form.php:162
2830
  #: app/features/mec/meta_boxes/search_form.php:174
2831
  #: app/features/mec/meta_boxes/search_form.php:181
2832
+ #: app/features/mec/meta_boxes/search_form.php:188
2833
  #: app/features/mec/meta_boxes/search_form.php:200
2834
  #: app/features/mec/meta_boxes/search_form.php:207
2835
  #: app/features/mec/meta_boxes/search_form.php:214
2836
  #: app/features/mec/meta_boxes/search_form.php:221
2837
  #: app/features/mec/meta_boxes/search_form.php:228
2838
+ #: app/features/mec/meta_boxes/search_form.php:235
2839
  #: app/features/mec/meta_boxes/search_form.php:247
2840
  #: app/features/mec/meta_boxes/search_form.php:254
2841
  #: app/features/mec/meta_boxes/search_form.php:261
2842
  #: app/features/mec/meta_boxes/search_form.php:268
2843
  #: app/features/mec/meta_boxes/search_form.php:275
2844
+ #: app/features/mec/meta_boxes/search_form.php:282
2845
  #: app/features/mec/meta_boxes/search_form.php:294
2846
  #: app/features/mec/meta_boxes/search_form.php:301
2847
  #: app/features/mec/meta_boxes/search_form.php:308
2848
  #: app/features/mec/meta_boxes/search_form.php:315
2849
+ #: app/features/mec/meta_boxes/search_form.php:322
2850
  #: app/features/mec/meta_boxes/search_form.php:334
2851
  #: app/features/mec/meta_boxes/search_form.php:341
2852
  #: app/features/mec/meta_boxes/search_form.php:348
2853
  #: app/features/mec/meta_boxes/search_form.php:355
2854
  #: app/features/mec/meta_boxes/search_form.php:362
2855
+ #: app/features/mec/meta_boxes/search_form.php:369
2856
  #: app/features/mec/meta_boxes/search_form.php:381
2857
  #: app/features/mec/meta_boxes/search_form.php:388
2858
  #: app/features/mec/meta_boxes/search_form.php:395
2859
  #: app/features/mec/meta_boxes/search_form.php:402
2860
  #: app/features/mec/meta_boxes/search_form.php:409
2861
+ #: app/features/mec/meta_boxes/search_form.php:416
2862
  #: app/features/mec/meta_boxes/search_form.php:428
2863
  #: app/features/mec/meta_boxes/search_form.php:435
2864
  #: app/features/mec/meta_boxes/search_form.php:442
2865
  #: app/features/mec/meta_boxes/search_form.php:449
2866
  #: app/features/mec/meta_boxes/search_form.php:456
2867
+ #: app/features/mec/meta_boxes/search_form.php:463
2868
+ #: app/features/mec/settings.php:309 app/features/mec/settings.php:407
2869
+ #: app/features/mec/settings.php:591
2870
  msgid "Disabled"
2871
  msgstr "Deaktiviert"
2872
 
2873
  #: app/features/mec/meta_boxes/search_form.php:59
2874
  #: app/features/mec/meta_boxes/search_form.php:106
2875
  #: app/features/mec/meta_boxes/search_form.php:153
 
 
 
 
 
 
 
 
 
 
 
 
2876
  #: app/features/mec/meta_boxes/search_form.php:179
2877
  #: app/features/mec/meta_boxes/search_form.php:226
2878
  #: app/features/mec/meta_boxes/search_form.php:273
 
2879
  #: app/features/mec/meta_boxes/search_form.php:360
2880
  #: app/features/mec/meta_boxes/search_form.php:407
2881
  #: app/features/mec/meta_boxes/search_form.php:454
2882
+ msgid "Month Filter"
2883
+ msgstr "Monatsfilter"
2884
+
2885
+ #: app/features/mec/meta_boxes/search_form.php:66
2886
+ #: app/features/mec/meta_boxes/search_form.php:113
2887
+ #: app/features/mec/meta_boxes/search_form.php:160
2888
+ #: app/features/mec/meta_boxes/search_form.php:186
2889
+ #: app/features/mec/meta_boxes/search_form.php:233
2890
+ #: app/features/mec/meta_boxes/search_form.php:280
2891
+ #: app/features/mec/meta_boxes/search_form.php:320
2892
+ #: app/features/mec/meta_boxes/search_form.php:367
2893
+ #: app/features/mec/meta_boxes/search_form.php:414
2894
+ #: app/features/mec/meta_boxes/search_form.php:461
2895
  msgid "Text Search"
2896
  msgstr "Textsuche"
2897
 
2898
  #: app/features/mec/meta_boxes/search_form.php:69
2899
  #: app/features/mec/meta_boxes/search_form.php:116
2900
  #: app/features/mec/meta_boxes/search_form.php:163
2901
+ #: app/features/mec/meta_boxes/search_form.php:189
2902
+ #: app/features/mec/meta_boxes/search_form.php:236
2903
+ #: app/features/mec/meta_boxes/search_form.php:283
2904
+ #: app/features/mec/meta_boxes/search_form.php:323
2905
+ #: app/features/mec/meta_boxes/search_form.php:370
2906
+ #: app/features/mec/meta_boxes/search_form.php:417
2907
+ #: app/features/mec/meta_boxes/search_form.php:464
2908
  msgid "Text Input"
2909
  msgstr "Text eingeben"
2910
 
2911
+ #: app/features/mec/meta_boxes/search_form.php:472
2912
+ #: app/features/mec/meta_boxes/search_form.php:478
2913
+ #: app/features/mec/meta_boxes/search_form.php:484
2914
+ #: app/features/mec/meta_boxes/search_form.php:490
2915
+ #: app/features/mec/meta_boxes/search_form.php:496
2916
+ #: app/features/mec/meta_boxes/search_form.php:502
2917
  msgid "No Search Options"
2918
  msgstr "Keine Suchoptionen"
2919
 
3161
  msgid "Email/Booking verification link."
3162
  msgstr "Bestätigungslink für Email/Buchung"
3163
 
3164
+ #: app/features/mec/notifications.php:189 app/features/mec/settings.php:1044
3165
  msgid "Booking Confirmation"
3166
  msgstr "Buchungsbestätigung"
3167
 
3250
  msgid "Status of event"
3251
  msgstr "Status der Veranstaltung"
3252
 
3253
+ #: app/features/mec/notifications.php:355 app/features/mec/settings.php:938
3254
  msgid "Event Note"
3255
  msgstr "Veranstaltungsnotiz"
3256
 
3258
  msgid "Admin events management link."
3259
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3260
 
3261
+ #: app/features/mec/settings.php:48
3262
  msgid "Archive Page Options"
3263
  msgstr ""
3264
 
3265
+ #: app/features/mec/settings.php:90 app/features/mec/settings.php:656
3266
  msgid "Export Module Options"
3267
  msgstr "Optionen für Export-Module"
3268
 
3269
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:683
3270
  msgid "Local Time Module"
3271
  msgstr "Lokales Zeitmodul"
3272
 
3273
+ #: app/features/mec/settings.php:102 app/features/mec/settings.php:695
3274
  msgid "QR Code Module"
3275
  msgstr "QR Code Module"
3276
 
3277
+ #: app/features/mec/settings.php:108 app/features/mec/settings.php:713
3278
+ #: app/widgets/single.php:147
3279
  msgid "Weather Module"
3280
  msgstr "Wettermodul"
3281
 
3282
+ #: app/features/mec/settings.php:144 app/features/mec/settings.php:968
3283
  msgid "Additional Organizers"
3284
  msgstr "Zusätzliche Organisatoren"
3285
 
3286
+ #: app/features/mec/settings.php:162 app/features/mec/settings.php:1085
3287
  msgid "Taxes / Fees"
3288
  msgstr "Steuern/Gebühren"
3289
 
3290
+ #: app/features/mec/settings.php:168 app/features/mec/settings.php:1150
3291
+ msgid "Ticket Variations & Options"
3292
+ msgstr ""
3293
+
3294
+ #: app/features/mec/settings.php:268
3295
  msgid "Time Format"
3296
  msgstr "Zeitformat"
3297
 
3298
+ #: app/features/mec/settings.php:271
3299
  msgid "12 hours format with AM/PM"
3300
  msgstr "12-Stunden-Format mit AM/FM"
3301
 
3302
+ #: app/features/mec/settings.php:272
3303
  msgid "24 hours format"
3304
  msgstr "24-Stunden-Format"
3305
 
3306
+ #: app/features/mec/settings.php:274 app/features/mec/settings.php:287
3307
  msgid ""
3308
  "This option is for showing start/end time of events on frontend of website."
3309
  msgstr ""
3310
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3311
  "anzuzeigen"
3312
 
3313
+ #: app/features/mec/settings.php:279
3314
  msgid "Hide Events"
3315
  msgstr "Events verbergen"
3316
 
3317
+ #: app/features/mec/settings.php:282
3318
  msgid "On Event Start"
3319
  msgstr "Am Event Start"
3320
 
3321
+ #: app/features/mec/settings.php:283
3322
  msgid "+1 Hour after start"
3323
  msgstr "+1 Stunde nach dem Start"
3324
 
3325
+ #: app/features/mec/settings.php:284
3326
  msgid "+2 Hours after start"
3327
  msgstr "+2 Stunden nach dem Start"
3328
 
3329
+ #: app/features/mec/settings.php:285
3330
  msgid "On Event End"
3331
  msgstr "Am Event Ende"
3332
 
3333
+ #: app/features/mec/settings.php:293
3334
  msgid "Multiple Day Events"
3335
  msgstr "Mehrtagesveranstaltung"
3336
 
3337
+ #: app/features/mec/settings.php:296
3338
  msgid "Show only first day on List/Grid/Slider skins"
3339
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3340
 
3341
+ #: app/features/mec/settings.php:297
3342
  msgid "Show only first day on all skins"
3343
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3344
 
3345
+ #: app/features/mec/settings.php:298
3346
  msgid "Show all days"
3347
  msgstr "Alle Tage anzeigen"
3348
 
3349
+ #: app/features/mec/settings.php:300
3350
  msgid ""
3351
  "For showing all days of multiple day events on frontend or only show the "
3352
  "first day."
3354
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3355
  "den ersten Tag anzeigen"
3356
 
3357
+ #: app/features/mec/settings.php:306
3358
  msgid "Remove MEC Data on Plugin Uninstall"
3359
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3360
 
3361
+ #: app/features/mec/settings.php:310
3362
  msgid "Enabled"
3363
  msgstr "Aktiviert"
3364
 
3365
+ #: app/features/mec/settings.php:316
3366
  msgid "Exclude Date Suffix"
3367
  msgstr "Ausschlussdatum Suffix"
3368
 
3369
+ #: app/features/mec/settings.php:319
3370
  msgid "Remove suffix from calendars"
3371
  msgstr "Suffix aus den Kalendern entfernen"
3372
 
3373
+ #: app/features/mec/settings.php:326 app/libraries/main.php:4163
3374
  msgid "Weekdays"
3375
  msgstr "Wochentage"
3376
 
3377
+ #: app/features/mec/settings.php:334
3378
  msgid ""
3379
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3380
  "and Friday."
3382
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3383
  "Donnerstag und Freitag gesetzt."
3384
 
3385
+ #: app/features/mec/settings.php:341
3386
  msgid "Weekends"
3387
  msgstr "Wochenenden"
3388
 
3389
+ #: app/features/mec/settings.php:349
3390
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3391
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3392
 
3393
+ #: app/features/mec/settings.php:357
3394
  msgid "Archive Pages"
3395
  msgstr ""
3396
 
3397
+ #: app/features/mec/settings.php:360
3398
  msgid "Archive Page Title"
3399
  msgstr "Titel der Archivseite"
3400
 
3401
+ #: app/features/mec/settings.php:363
3402
  msgid "Default value is Events"
3403
  msgstr "Der Standardwert ist Ereignisse (Events)"
3404
 
3405
+ #: app/features/mec/settings.php:368
3406
  msgid "Archive Page Skin"
3407
  msgstr "Skin Seite Archiv"
3408
 
3409
+ #: app/features/mec/settings.php:375
3410
  msgid "Default value is Calendar/Monthly View"
3411
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3412
 
3413
+ #: app/features/mec/settings.php:380
3414
  msgid "Category Page Skin"
3415
  msgstr "Kategorie Seiten Skin"
3416
 
3417
+ #: app/features/mec/settings.php:387
3418
  msgid "Default value is List View"
3419
  msgstr "Standardwert ist Listenansicht"
3420
 
3421
+ #: app/features/mec/settings.php:392
3422
  msgid "Category Events Method"
3423
  msgstr ""
3424
 
3425
+ #: app/features/mec/settings.php:396
3426
  msgid "Expired Events"
3427
  msgstr ""
3428
 
3429
+ #: app/features/mec/settings.php:398
3430
  msgid "Default value is Upcoming Events"
3431
  msgstr ""
3432
 
3433
+ #: app/features/mec/settings.php:403
3434
  msgid "Events Archive Status"
3435
  msgstr "Events Archiv Status"
3436
 
3437
+ #: app/features/mec/settings.php:406
3438
  msgid "Enabled (Recommended)"
3439
  msgstr "Ist aktiviert (empfohlen)"
3440
 
3441
+ #: app/features/mec/settings.php:409
3442
  msgid ""
3443
  "If you disable it, then you should create a page as archive page of MEC. "
3444
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3448
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3449
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3450
 
3451
+ #: app/features/mec/settings.php:419
3452
  msgid "Main Slug"
3453
  msgstr "Main Slug"
3454
 
3455
+ #: app/features/mec/settings.php:422
3456
  msgid ""
3457
  "Default value is events. Valid characters are lowercase a-z, - character and "
3458
  "numbers."
3460
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3461
  "und Zahlen."
3462
 
3463
+ #: app/features/mec/settings.php:426
3464
  msgid "Category Slug"
3465
  msgstr "Category Slug"
3466
 
3467
+ #: app/features/mec/settings.php:429
3468
  msgid ""
3469
  "It's slug of MEC categories, you can change it to events-cat or something "
3470
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3476
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3477
  "category"
3478
 
3479
+ #: app/features/mec/settings.php:439
3480
  msgid "Single Event Date Format"
3481
  msgstr "Einzelveranstaltung Datumformat"
3482
 
3483
+ #: app/features/mec/settings.php:442 app/features/mec/settings.php:804
3484
  msgid "Default is M d Y"
3485
  msgstr "Standardwert ist M-T-J"
3486
 
3487
+ #: app/features/mec/settings.php:446
3488
  msgid "Date Method"
3489
  msgstr "Datum Methode"
3490
 
3491
+ #: app/features/mec/settings.php:449
3492
  msgid "Next occurrence date"
3493
  msgstr "Nächstes vorkommende Datum"
3494
 
3495
+ #: app/features/mec/settings.php:450
3496
  msgid "Referred date"
3497
  msgstr "Gewünschtes Datum"
3498
 
3499
+ #: app/features/mec/settings.php:452
3500
  msgid ""
3501
  "\"Referred date\" shows the event date based on referred date in event list."
3502
  msgstr ""
3503
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3504
  "Datum in der Eventliste an."
3505
 
3506
+ #: app/features/mec/settings.php:456
3507
  msgid "Single Event Style"
3508
  msgstr "Single Event Stil"
3509
 
3510
+ #: app/features/mec/settings.php:459
3511
  msgid "Default Style"
3512
  msgstr "Standardstil voreingestellt"
3513
 
3514
+ #: app/features/mec/settings.php:460
3515
  msgid "Modern Style"
3516
  msgstr "Moderner Stil"
3517
 
3518
+ #: app/features/mec/settings.php:462
3519
  msgid "Choose your single event style."
3520
  msgstr "Wählen Sie Ihren Single Event Stil"
3521
 
3522
+ #: app/features/mec/settings.php:466
3523
+ #, fuzzy
3524
+ #| msgid "Booking"
3525
+ msgid "Booking Style"
3526
+ msgstr "Buchung / Reservierung"
3527
+
3528
+ #: app/features/mec/settings.php:469 app/features/mec/settings.php:580
3529
+ msgid "Default"
3530
+ msgstr "Standardeinstellung"
3531
+
3532
+ #: app/features/mec/settings.php:470
3533
+ #, fuzzy
3534
+ #| msgid "Modal 1"
3535
+ msgid "Modal"
3536
+ msgstr "Modal 1"
3537
+
3538
+ #: app/features/mec/settings.php:472
3539
+ #, fuzzy
3540
+ #| msgid "Choose your single event style."
3541
+ msgid "Choose your Booking style."
3542
+ msgstr "Wählen Sie Ihren Single Event Stil"
3543
+
3544
+ #: app/features/mec/settings.php:480
3545
  msgid "Currency"
3546
  msgstr "Währung"
3547
 
3548
+ #: app/features/mec/settings.php:490
3549
  msgid "Currency Sign"
3550
  msgstr "Währungssymbol"
3551
 
3552
+ #: app/features/mec/settings.php:493
3553
  msgid "Default value will be \"currency\" if you leave it empty."
3554
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3555
 
3556
+ #: app/features/mec/settings.php:497
3557
  msgid "Currency Position"
3558
  msgstr "Position des Währungssymbols"
3559
 
3560
+ #: app/features/mec/settings.php:500
3561
  msgid "Before $10"
3562
  msgstr "Vor $10"
3563
 
3564
+ #: app/features/mec/settings.php:501
3565
  msgid "After 10$"
3566
  msgstr "Nach 10$"
3567
 
3568
+ #: app/features/mec/settings.php:506
3569
  msgid "Thousand Separator"
3570
  msgstr "Tausendertrennzeichen"
3571
 
3572
+ #: app/features/mec/settings.php:512
3573
  msgid "Decimal Separator"
3574
  msgstr "Dezimaltrennzeichen"
3575
 
3576
+ #: app/features/mec/settings.php:522
3577
  msgid "No decimal"
3578
  msgstr "Keine Dezimale"
3579
 
3580
+ #: app/features/mec/settings.php:531
3581
+ #, fuzzy
3582
+ #| msgid "No Search Options"
3583
+ msgid "Speakers Options"
3584
+ msgstr "Keine Suchoptionen"
3585
+
3586
+ #: app/features/mec/settings.php:537
3587
+ #, fuzzy
3588
+ #| msgid "Enable taxes / fees module"
3589
+ msgid "Enable speakers feature"
3590
+ msgstr "Modul für Gebühren/Steuern aktivieren"
3591
+
3592
+ #: app/features/mec/settings.php:553
3593
  msgid "Show Google Maps on event page"
3594
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3595
 
3596
+ #: app/features/mec/settings.php:558 app/features/mec/settings.php:726
3597
+ #: app/features/mec/settings.php:1248
3598
  msgid "API Key"
3599
  msgstr "API Schlüssel"
3600
 
3601
+ #: app/features/mec/settings.php:561 app/features/mec/settings.php:1251
3602
+ #: app/features/mec/settings.php:1258
3603
  msgid "Required!"
3604
  msgstr "Erforderlich (Pflichtfeld)"
3605
 
3606
+ #: app/features/mec/settings.php:565
3607
  msgid "Zoom level"
3608
  msgstr "Zoom"
3609
 
3610
+ #: app/features/mec/settings.php:572
3611
  msgid ""
3612
  "For Google Maps module in single event page. In Google Maps skin, it will "
3613
  "caculate the zoom level automatically based on event boundaries."
3616
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3617
  "Angrenzungen"
3618
 
3619
+ #: app/features/mec/settings.php:576
3620
  msgid "Google Maps Style"
3621
  msgstr "Google Maps Stil"
3622
 
3623
+ #: app/features/mec/settings.php:588
 
 
 
 
3624
  msgid "Direction on single event"
3625
  msgstr "Richtung auf einzelne Veranstaltung"
3626
 
3627
+ #: app/features/mec/settings.php:592
3628
  msgid "Simple Method"
3629
  msgstr "Einfache Methode"
3630
 
3631
+ #: app/features/mec/settings.php:593
3632
  msgid "Advanced Method"
3633
  msgstr "Fortgeschrittene Methode"
3634
 
3635
+ #: app/features/mec/settings.php:598
3636
  msgid "Lightbox Date Format"
3637
  msgstr "Leuchtkasten Datumsformat"
3638
 
3639
+ #: app/features/mec/settings.php:601
3640
  msgid "Default value is M d Y"
3641
  msgstr "Standardwert ist M T J"
3642
 
3643
+ #: app/features/mec/settings.php:605
3644
  msgid "Google Maps API"
3645
  msgstr "Google Maps API"
3646
 
3647
+ #: app/features/mec/settings.php:609
3648
  msgid "Don't load Google Maps API library"
3649
  msgstr "Google Maps API Bibliothek nicht laden"
3650
 
3651
+ #: app/features/mec/settings.php:611
3652
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3653
  msgstr ""
3654
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3655
 
3656
+ #: app/features/mec/settings.php:623
3657
  msgid "Enable Google Recaptcha"
3658
  msgstr "Google Recaptcha aktivieren"
3659
 
3660
+ #: app/features/mec/settings.php:630
3661
  msgid "Enable on booking form"
3662
  msgstr "Auf dem Buchungsformular aktivieren"
3663
 
3664
+ #: app/features/mec/settings.php:636
3665
  msgid "Enable on \"Frontend Event Submittion\" form"
3666
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3667
 
3668
+ #: app/features/mec/settings.php:640
3669
  msgid "Site Key"
3670
  msgstr "Site Key (Seitenschlüssel)"
3671
 
3672
+ #: app/features/mec/settings.php:646
3673
  msgid "Secret Key"
3674
  msgstr "Geheimschlüssel"
3675
 
3676
+ #: app/features/mec/settings.php:660
3677
  msgid ""
3678
  "Show export module (iCal export and add to Google calendars) on event page"
3679
  msgstr ""
3680
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3681
  "Google calendars)"
3682
 
3683
+ #: app/features/mec/settings.php:667
3684
  msgid "Google Calendar"
3685
  msgstr "Google Calendar"
3686
 
3687
+ #: app/features/mec/settings.php:687
3688
  msgid "Show event time based on local time of visitor on event page"
3689
  msgstr ""
3690
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3691
  "Eventseite"
3692
 
3693
+ #: app/features/mec/settings.php:703
3694
  msgid "Show QR code of event in details page and booking invoice"
3695
  msgstr ""
3696
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3697
  "an"
3698
 
3699
+ #: app/features/mec/settings.php:721
3700
  msgid "Show weather module on event page"
3701
  msgstr "Wettermodul auf der Eventseite anzeigen"
3702
 
3703
+ #: app/features/mec/settings.php:729
3704
  #, php-format
3705
  msgid "You can get a free API Key from %s"
3706
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3707
 
3708
+ #: app/features/mec/settings.php:741
3709
  msgid "Show countdown module on event page"
3710
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
3711
 
3712
+ #: app/features/mec/settings.php:746
3713
  msgid "Countdown Style"
3714
  msgstr "Countdown Stil"
3715
 
3716
+ #: app/features/mec/settings.php:749
3717
  msgid "Plain Style"
3718
  msgstr "Einfacher schlichter Stil"
3719
 
3720
+ #: app/features/mec/settings.php:750
3721
  msgid "Flip Style"
3722
  msgstr "Flip Stil"
3723
 
3724
+ #: app/features/mec/settings.php:762
3725
  msgid "Show social network module"
3726
  msgstr "Modul für Soziale Netzwerke anzeigen"
3727
 
3728
+ #: app/features/mec/settings.php:787
3729
  msgid "Show next event module on event page"
3730
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
3731
 
3732
+ #: app/features/mec/settings.php:792
3733
  msgid "Method"
3734
  msgstr "Methode"
3735
 
3736
+ #: app/features/mec/settings.php:795
3737
  msgid "Next Occurrence of Current Event"
3738
  msgstr "Nächstes Auftreten des aktuellen Events"
3739
 
3740
+ #: app/features/mec/settings.php:796
3741
  msgid "Next Occurrence of Other Events"
3742
  msgstr "Nächstes Auftreten von anderen Events."
3743
 
3744
+ #: app/features/mec/settings.php:801 app/features/mec/settings.php:991
3745
  msgid "Date Format"
3746
  msgstr "Datumsformat"
3747
 
3748
+ #: app/features/mec/settings.php:813
3749
  msgid "Events List Page"
3750
  msgstr "Seite Liste der Veranstaltungen"
3751
 
3752
+ #: app/features/mec/settings.php:822 app/features/mec/settings.php:834
3753
  #, php-format
3754
  msgid "Put %s shortcode into the page."
3755
  msgstr "%s shortcode in die Seite einfügen"
3756
 
3757
+ #: app/features/mec/settings.php:825
3758
  msgid "Add/Edit Events Page"
3759
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
3760
 
3761
+ #: app/features/mec/settings.php:839
3762
  msgid "Enable event submission by guest (Not logged-in) users"
3763
  msgstr ""
3764
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
3765
  "erlauben"
3766
 
3767
+ #: app/features/mec/settings.php:846
3768
  msgid "Enable mandatory email and name for guest user"
3769
  msgstr ""
3770
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
3771
 
3772
+ #: app/features/mec/settings.php:850
3773
  msgid "Frontend Event Submission Sections"
3774
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
3775
 
3776
+ #: app/features/mec/settings.php:872 app/widgets/single.php:119
3777
  msgid "Event Categories"
3778
  msgstr "Veranstaltungskategorien"
3779
 
3780
+ #: app/features/mec/settings.php:878
3781
  msgid "Event Labels"
3782
  msgstr "Event Labels"
3783
 
3784
+ #: app/features/mec/settings.php:890
3785
  msgid "Event Tags"
3786
  msgstr "Event Schlagworte"
3787
 
3788
+ #: app/features/mec/settings.php:902 app/widgets/single.php:123
3789
  msgid "Event Organizer"
3790
  msgstr "Veranstaltungsmanager"
3791
 
3792
+ #: app/features/mec/settings.php:920
3793
  msgid "Booking Options"
3794
  msgstr "Buchungsoptionen"
3795
 
3796
+ #: app/features/mec/settings.php:926
3797
+ #, fuzzy
3798
+ #| msgid "Fees/Taxes Options"
3799
+ msgid "Fees / Taxes Options"
3800
  msgstr "Gebühren/Steuer Optionen"
3801
 
3802
+ #: app/features/mec/settings.php:940
3803
  #, php-format
3804
  msgid ""
3805
  "Users can put a note for editors while they're submitting the event. Also "
3811
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
3812
  "erhalten."
3813
 
3814
+ #: app/features/mec/settings.php:944
3815
  msgid "Visibility of Note"
3816
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
3817
 
3818
+ #: app/features/mec/settings.php:947
3819
  msgid "Always"
3820
  msgstr "Immer"
3821
 
3822
+ #: app/features/mec/settings.php:948
3823
  msgid "While event is not published"
3824
  msgstr "Das Ereignis wird nicht veröffentlicht"
3825
 
3826
+ #: app/features/mec/settings.php:951
3827
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3828
  msgstr ""
3829
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
3830
  "Ereignis im Backend bearbeitet."
3831
 
3832
+ #: app/features/mec/settings.php:957
3833
  msgid "Exceptional days"
3834
  msgstr "Ausgesuchte ausnehmende Tage"
3835
 
3836
+ #: app/features/mec/settings.php:961
3837
  msgid "Show exceptional days option on Add/Edit events page"
3838
  msgstr ""
3839
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
3840
  "(Show exceptional days option on Add/Edit events page)"
3841
 
3842
+ #: app/features/mec/settings.php:962
3843
  msgid ""
3844
  "Using this option you can include/exclude certain days to/from event "
3845
  "occurrence dates."
3847
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
3848
  "ausschließen."
3849
 
3850
+ #: app/features/mec/settings.php:972
3851
  msgid ""
3852
  "Show additional organizers option on Add/Edit events page and single event "
3853
  "page."
3855
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
3856
  "bearbeiten und auf der Seite für einzelne Events an."
3857
 
3858
+ #: app/features/mec/settings.php:986
3859
  msgid "Enable booking module"
3860
  msgstr "Buchungsmodul aktivieren"
3861
 
3862
+ #: app/features/mec/settings.php:994
3863
  msgid "Default is Y-m-d"
3864
  msgstr "Voreinstellung ist J-M-T"
3865
 
3866
+ #: app/features/mec/settings.php:998
3867
  msgid "Maximum Dates"
3868
  msgstr "Maximale Anzahl von Daten"
3869
 
3870
+ #: app/features/mec/settings.php:1000
3871
  msgid "Default is 6"
3872
  msgstr "Die Voreinstellung ist 6"
3873
 
3874
+ #: app/features/mec/settings.php:1004
3875
  msgid "Thank You Page"
3876
  msgstr "Danke Seite"
3877
 
3878
+ #: app/features/mec/settings.php:1012
3879
  msgid ""
3880
  "User redirects to this page after booking. Leave it empty if you want to "
3881
  "disable it."
3883
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3884
  "es leer, wenn Sie es deaktivieren möchten."
3885
 
3886
+ #: app/features/mec/settings.php:1020
3887
  msgid "Enable Express Attendees Form"
3888
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3889
 
3890
+ #: app/features/mec/settings.php:1022
3891
  msgid ""
3892
  "Users are able to apply first attendee information for other attendees in "
3893
  "the booking form."
3895
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
3896
  "Buchungsformular anwenden."
3897
 
3898
+ #: app/features/mec/settings.php:1025
3899
  msgid "Email verification"
3900
  msgstr "Email-Verifizierung"
3901
 
3902
+ #: app/features/mec/settings.php:1031
3903
  msgid "Auto verification for free bookings"
3904
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3905
 
3906
+ #: app/features/mec/settings.php:1040
3907
  msgid "Auto verification for paid bookings"
3908
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3909
 
3910
+ #: app/features/mec/settings.php:1050
3911
  msgid "Auto confirmation for free bookings"
3912
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3913
 
3914
+ #: app/features/mec/settings.php:1059
3915
  msgid "Auto confirmation for paid bookings"
3916
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3917
 
3918
+ #: app/features/mec/settings.php:1076
3919
  msgid "Enable coupons module"
3920
  msgstr "Gutscheinmodul aktivieren"
3921
 
3922
+ #: app/features/mec/settings.php:1093
3923
  msgid "Enable taxes / fees module"
3924
  msgstr "Modul für Gebühren/Steuern aktivieren"
3925
 
3926
+ #: app/features/mec/settings.php:1098
3927
  msgid "Add Fee"
3928
  msgstr "Gebühr hinzufügen"
3929
 
3930
+ #: app/features/mec/settings.php:1158
3931
+ #, fuzzy
3932
+ #| msgid "Enable coupons module"
3933
+ msgid "Enable ticket options module"
3934
+ msgstr "Gutscheinmodul aktivieren"
3935
+
3936
+ #: app/features/mec/settings.php:1163
3937
+ msgid "Add Variation / Option"
3938
+ msgstr ""
3939
+
3940
+ #: app/features/mec/settings.php:1213
3941
  msgid "Enable BuddyPress Integration"
3942
  msgstr "Buddy Press Integration deaktivieren"
3943
 
3944
+ #: app/features/mec/settings.php:1220
3945
  msgid "Show \"Attendees Module\" in event details page"
3946
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
3947
 
3948
+ #: app/features/mec/settings.php:1224
3949
  msgid "Attendees Limit"
3950
  msgstr "Teilnehmer Limit, maximale Anzahl"
3951
 
3952
+ #: app/features/mec/settings.php:1232
3953
  msgid "Add booking activity to user profile"
3954
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
3955
 
3956
+ #: app/features/mec/settings.php:1243
3957
  msgid "Enable Mailchimp Integration"
3958
  msgstr "Mailchimp Integration deaktivieren"
3959
 
3960
+ #: app/features/mec/settings.php:1255
3961
  msgid "List ID"
3962
  msgstr "List ID"
3963
 
3964
+ #: app/features/mec/settings.php:1262
3965
  msgid "Subscription Status"
3966
  msgstr "Buchungsstatus"
3967
 
3968
+ #: app/features/mec/settings.php:1265
3969
  msgid "Subscribe automatically"
3970
  msgstr "automatisch Anmelden/Abonnieren"
3971
 
3972
+ #: app/features/mec/settings.php:1266
3973
  msgid "Subscribe by verification"
3974
  msgstr ""
3975
  "Anmelden/Abonnieren durch Bestätigung\n"
3976
  " "
3977
 
3978
+ #: app/features/mec/settings.php:1268
3979
  msgid ""
3980
  "If you choose \"Subscribe by verification\" then an email will send to user "
3981
  "by mailchimp for subscription verification."
3983
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
3984
  "Benutzer per Mailchimp zur Bestätigung gesendet."
3985
 
3986
+ #: app/features/mec/settings.php:1278
3987
  #, php-format
3988
  msgid "%s is required to use this section."
3989
  msgstr ""
3990
 
3991
+ #: app/features/mec/settings.php:1281
3992
  msgid "Purchase Code"
3993
  msgstr "Kaufcode"
3994
 
3995
+ #: app/features/mec/settings.php:1286 app/features/mec/settings.php:1352
3996
+ #: app/features/mec/settings.php:1370
3997
  msgid "Verified"
3998
  msgstr "Verifiziert"
3999
 
4000
+ #: app/features/mec/settings.php:1288
4001
  msgid "UnVerified"
4002
  msgstr "Unbestätigt"
4003
 
4004
+ #: app/features/mec/settings.php:1290
4005
  msgid ""
4006
  "Please insert your purchase code validation. read documentation for more "
4007
  "information."
4009
  "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
4010
  "Dokumentation für mehr Informationen."
4011
 
4012
+ #: app/features/mec/settings.php:1293
4013
  msgid "Product Name"
4014
  msgstr ""
4015
 
4016
+ #: app/features/mec/settings.php:1296
4017
  msgid "1 License for MEC Plugin"
4018
  msgstr ""
4019
 
4020
+ #: app/features/mec/settings.php:1297
4021
  msgid "5 License for MEC Plugin"
4022
  msgstr ""
4023
 
4024
+ #: app/features/mec/settings.php:1298
4025
  msgid "10 License for MEC Plugin"
4026
  msgstr ""
4027
 
4028
+ #: app/features/mec/settings.php:1305
4029
  msgid "MEC Deactivation"
4030
  msgstr "MEC Deaktivierung"
4031
 
4032
+ #: app/features/mec/settings.php:1307
4033
  msgid "Deactivate"
4034
  msgstr "Deaktivieren"
4035
 
4036
+ #: app/features/mec/settings.php:1309
4037
  msgid ""
4038
  "For deactivation first delete your purchase from above field then press save "
4039
  "after that click on deactivate for deactivate this purchase code from this "
4044
  "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
4045
  "Domain aktivieren."
4046
 
4047
+ #: app/features/mec/settings.php:1372
4048
  msgid "Please Refresh Page"
4049
  msgstr "Bitte Seiten Refresh vornehmen"
4050
 
4143
  msgstr "Alle Artikel anzeigen"
4144
 
4145
  #: app/features/organizers.php:105 app/features/organizers.php:147
4146
+ #: app/features/speakers.php:176
4147
  msgid "Insert organizer phone number."
4148
  msgstr "Veranstalter Telefonnummer einfügen"
4149
 
4150
  #: app/features/organizers.php:113 app/features/organizers.php:151
4151
+ #: app/features/speakers.php:180
4152
  msgid "Insert organizer email address."
4153
  msgstr "Veranstalter Email-Adresse einfügen"
4154
 
4206
  msgid "eg. https://webnus.net"
4207
  msgstr "z.B.. http://ihreseite.com/maxmustermann"
4208
 
4209
+ #: app/features/organizers.php:300 app/libraries/main.php:4187
4210
  #: app/skins/single.php:194
4211
  msgid "Other Organizers"
4212
  msgstr "Andere Veranstalter"
4218
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
4219
  "auswählen, wenn Sie möchten."
4220
 
4221
+ #: app/features/speakers.php:56 app/features/speakers.php:242
4222
+ #: app/libraries/main.php:4159
4223
+ msgid "Speaker"
4224
+ msgstr ""
4225
+
4226
+ #: app/features/speakers.php:103 app/features/speakers.php:171
4227
+ #: app/features/speakers.php:243
4228
+ #, fuzzy
4229
+ #| msgid "Title"
4230
+ msgid "Job Title"
4231
+ msgstr "Titel"
4232
+
4233
+ #: app/features/speakers.php:106 app/features/speakers.php:172
4234
+ msgid "Insert speaker job title."
4235
+ msgstr ""
4236
+
4237
+ #: app/features/speakers.php:114
4238
+ #, fuzzy
4239
+ #| msgid "Insert organizer phone number."
4240
+ msgid "Insert speaker phone number."
4241
+ msgstr "Veranstalter Telefonnummer einfügen"
4242
+
4243
+ #: app/features/speakers.php:122
4244
+ #, fuzzy
4245
+ #| msgid "Insert organizer email address."
4246
+ msgid "Insert speaker email address."
4247
+ msgstr "Veranstalter Email-Adresse einfügen"
4248
+
4249
+ #: app/features/speakers.php:127 app/features/speakers.php:183
4250
+ #, fuzzy
4251
+ #| msgid "Facebook Page Link"
4252
+ msgid "Facebook Page"
4253
+ msgstr "Facebook Seiten Link"
4254
+
4255
+ #: app/features/speakers.php:130 app/features/speakers.php:184
4256
+ #, fuzzy
4257
+ #| msgid "Import from Facebook Calendar"
4258
+ msgid "Insert URL of Facebook Page"
4259
+ msgstr "Vom Facebook Kalender Importieren"
4260
+
4261
+ #: app/features/speakers.php:135 app/features/speakers.php:187
4262
+ #: app/libraries/main.php:1063
4263
+ msgid "Google+"
4264
+ msgstr "Google+"
4265
+
4266
+ #: app/features/speakers.php:138 app/features/speakers.php:188
4267
+ msgid "Insert URL of Google+"
4268
+ msgstr ""
4269
+
4270
+ #: app/features/speakers.php:143 app/features/speakers.php:191
4271
+ #, fuzzy
4272
+ #| msgid "Twitter"
4273
+ msgid "Twitter Page"
4274
+ msgstr "Twitter"
4275
+
4276
+ #: app/features/speakers.php:146 app/features/speakers.php:192
4277
+ #, fuzzy
4278
+ #| msgid "Insert -1 for unlimited usage"
4279
+ msgid "Insert URL of Twitter Page"
4280
+ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
4281
+
4282
+ #: app/libraries/book.php:60
4283
  #, php-format
4284
  msgid "%s Price"
4285
  msgstr "%s Preis"
4286
 
4287
+ #: app/libraries/book.php:537
4288
  msgid "Discount"
4289
  msgstr "Rabatt"
4290
 
4291
+ #: app/libraries/book.php:625 app/modules/booking/default.php:274
4292
  #: app/modules/booking/default.php:369
4293
  msgid "Download Invoice"
4294
  msgstr "Download Rechnung\n"
4301
  msgid "Upgrade to Pro Version"
4302
  msgstr ""
4303
 
4304
+ #: app/libraries/factory.php:213
4305
  msgid "Upgrade"
4306
  msgstr ""
4307
 
4308
+ #: app/libraries/factory.php:284
4309
  msgid "day"
4310
  msgstr "Tag"
4311
 
4312
+ #: app/libraries/factory.php:285 app/modules/countdown/details.php:122
4313
+ #: app/skins/available_spot/tpl.php:106 app/skins/countdown/tpl.php:92
4314
+ #: app/skins/countdown/tpl.php:136 app/skins/countdown/tpl.php:185
4315
  msgid "days"
4316
  msgstr "Tage"
4317
 
4318
+ #: app/libraries/factory.php:286
4319
  msgid "hour"
4320
  msgstr "Stunde"
4321
 
4322
+ #: app/libraries/factory.php:287 app/modules/countdown/details.php:129
4323
+ #: app/skins/available_spot/tpl.php:110 app/skins/countdown/tpl.php:98
4324
+ #: app/skins/countdown/tpl.php:142 app/skins/countdown/tpl.php:191
4325
  msgid "hours"
4326
  msgstr "Stunden"
4327
 
4328
+ #: app/libraries/factory.php:288
4329
  msgid "minute"
4330
  msgstr "Minute"
4331
 
4332
+ #: app/libraries/factory.php:289 app/modules/countdown/details.php:136
4333
+ #: app/skins/available_spot/tpl.php:114 app/skins/countdown/tpl.php:104
4334
+ #: app/skins/countdown/tpl.php:148 app/skins/countdown/tpl.php:197
4335
  msgid "minutes"
4336
  msgstr "Minuten"
4337
 
4338
+ #: app/libraries/factory.php:290
4339
  msgid "second"
4340
  msgstr "Sekunde"
4341
 
4342
+ #: app/libraries/factory.php:291 app/modules/countdown/details.php:143
4343
+ #: app/skins/available_spot/tpl.php:118 app/skins/countdown/tpl.php:110
4344
+ #: app/skins/countdown/tpl.php:154 app/skins/countdown/tpl.php:203
4345
  msgid "seconds"
4346
  msgstr "Sekunden"
4347
 
4348
+ #: app/libraries/factory.php:331
4349
  msgid "MEC Single Sidebar"
4350
  msgstr "MEC Single Sidebar"
4351
 
4352
+ #: app/libraries/factory.php:332
4353
  msgid "Custom sidebar for single and modal page of MEC."
4354
  msgstr "Custom sidebar for single and modal page of MEC."
4355
 
4359
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4360
  "Beitrag handelt."
4361
 
4362
+ #: app/libraries/main.php:325 app/libraries/main.php:1163
4363
  msgid "Grid View"
4364
  msgstr "Rasterdarstellung"
4365
 
4366
+ #: app/libraries/main.php:326 app/libraries/main.php:1164
4367
  msgid "Agenda View"
4368
  msgstr "Agendaansicht"
4369
 
4370
+ #: app/libraries/main.php:327 app/libraries/main.php:1155
4371
  msgid "Full Calendar"
4372
  msgstr "Ganzer Kalender"
4373
 
4374
+ #: app/libraries/main.php:329 app/libraries/main.php:1157
4375
  msgid "Calendar/Monthly View"
4376
  msgstr "Kalender-/Monatsansicht"
4377
 
4378
+ #: app/libraries/main.php:332 app/libraries/main.php:1160
4379
  msgid "Timetable View"
4380
  msgstr "Stundenplan"
4381
 
4382
+ #: app/libraries/main.php:333 app/libraries/main.php:1161
4383
  msgid "Masonry View"
4384
  msgstr "Kachel Ansicht"
4385
 
4386
+ #: app/libraries/main.php:334 app/libraries/main.php:1165
4387
  msgid "Map View"
4388
  msgstr "Kartenansicht"
4389
 
4407
  msgid "Slider View"
4408
  msgstr "Slideransicht"
4409
 
4410
+ #: app/libraries/main.php:376 app/libraries/main.php:4165
4411
  msgid "SU"
4412
  msgstr "SO"
4413
 
4414
+ #: app/libraries/main.php:377 app/libraries/main.php:4166
4415
  msgid "MO"
4416
  msgstr "MO"
4417
 
4418
+ #: app/libraries/main.php:378 app/libraries/main.php:4167
4419
  msgid "TU"
4420
  msgstr "DI"
4421
 
4422
+ #: app/libraries/main.php:379 app/libraries/main.php:4168
4423
  msgid "WE"
4424
  msgstr "MI"
4425
 
4426
+ #: app/libraries/main.php:380 app/libraries/main.php:4169
4427
  msgid "TH"
4428
  msgstr "DO"
4429
 
4430
+ #: app/libraries/main.php:381 app/libraries/main.php:4170
4431
  msgid "FR"
4432
  msgstr "FR"
4433
 
4434
+ #: app/libraries/main.php:382 app/libraries/main.php:4171
4435
  msgid "SA"
4436
  msgstr "SA"
4437
 
4438
+ #: app/libraries/main.php:1021
4439
  msgid "Events at this location"
4440
  msgstr "Veranstaltungen an diesem Ort "
4441
 
4442
+ #: app/libraries/main.php:1021
4443
  msgid "Event at this location"
4444
  msgstr "Veranstaltung an diesem Ort "
4445
 
4446
+ #: app/libraries/main.php:1062
4447
  msgid "Facebook"
4448
  msgstr "Facebook"
4449
 
4450
+ #: app/libraries/main.php:1064
 
 
 
 
4451
  msgid "Twitter"
4452
  msgstr "Twitter"
4453
 
4454
+ #: app/libraries/main.php:1065 app/libraries/main.php:1118
4455
  msgid "Linkedin"
4456
  msgstr "Linkedin"
4457
 
4458
+ #: app/libraries/main.php:1066 app/libraries/main.php:1144
4459
  msgid "VK"
4460
  msgstr ""
4461
 
4462
+ #: app/libraries/main.php:1082
4463
  msgid "Share on Facebook"
4464
  msgstr "Teilen auf Facebook"
4465
 
4466
+ #: app/libraries/main.php:1094
4467
  msgid "Google Plus"
4468
  msgstr "Google Plus"
4469
 
4470
+ #: app/libraries/main.php:1106
4471
  msgid "Tweet"
4472
  msgstr "Tweet"
4473
 
4474
+ #: app/libraries/main.php:1500
4475
  msgid "Your booking successfully verified."
4476
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4477
 
4478
+ #: app/libraries/main.php:1501
4479
  msgid "Your booking cannot verify!"
4480
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4481
 
4482
+ #: app/libraries/main.php:1513
4483
  msgid "Your booking successfully canceled."
4484
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4485
 
4486
+ #: app/libraries/main.php:1514
4487
  msgid "Your booking cannot be canceled."
4488
  msgstr "Ihre Buchung kann nicht storniert werden."
4489
 
4490
+ #: app/libraries/main.php:1518
4491
  msgid "You canceled the payment successfully."
4492
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4493
 
4494
+ #: app/libraries/main.php:1522
4495
  msgid "You returned from payment gateway successfully."
4496
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4497
 
4498
+ #: app/libraries/main.php:1546
4499
  msgid "Cannot find the booking!"
4500
  msgstr "Kann die Buchung nicht finden!"
4501
 
4502
+ #: app/libraries/main.php:1546
4503
  msgid "Booking is invalid."
4504
  msgstr "Buchung ist ungültig."
4505
 
4506
+ #: app/libraries/main.php:1567
4507
  #, php-format
4508
  msgid "%s Invoice"
4509
  msgstr "% s Rechnung"
4510
 
4511
+ #: app/libraries/main.php:1588
4512
  msgid "Transaction ID"
4513
  msgstr "Transaktions-ID"
4514
 
4515
+ #: app/libraries/main.php:1597
4516
  msgid "Attendees"
4517
  msgstr "Teilnehmer"
4518
 
4519
+ #: app/libraries/main.php:1611 app/libraries/main.php:4185
4520
  msgid "Ticket"
4521
  msgstr "Ticket"
4522
 
4523
+ #: app/libraries/main.php:1641
4524
  msgid "Billing"
4525
  msgstr "Abrechnung"
4526
 
4527
+ #: app/libraries/main.php:1652
4528
  msgid "Total"
4529
  msgstr "Gesamt"
4530
 
4531
+ #: app/libraries/main.php:1685
4532
  msgid "Security nonce is not valid."
4533
  msgstr "Sicherheits-Nonce ist ungültig."
4534
 
4535
+ #: app/libraries/main.php:1685 app/libraries/main.php:1717
4536
  msgid "iCal export stopped!"
4537
  msgstr "iCal Export wurde unterbrochen!"
4538
 
4539
+ #: app/libraries/main.php:1717
4540
  #, fuzzy
4541
  #| msgid "Request is invalid!"
4542
  msgid "Request is not valid."
4543
  msgstr "Die Anfrage ist ungültig!"
4544
 
4545
+ #: app/libraries/main.php:2037 app/libraries/main.php:2066
4546
+ #: app/libraries/main.php:2095 app/libraries/main.php:2124
4547
+ #: app/libraries/main.php:2153 app/libraries/main.php:2177
4548
+ #: app/libraries/main.php:2221 app/libraries/main.php:2265
4549
+ #: app/libraries/main.php:2312 app/libraries/main.php:2358
4550
  msgid "Sort"
4551
  msgstr "Sortieren"
4552
 
4553
+ #: app/libraries/main.php:2043 app/libraries/main.php:2072
4554
+ #: app/libraries/main.php:2101 app/libraries/main.php:2130
4555
+ #: app/libraries/main.php:2183 app/libraries/main.php:2227
4556
+ #: app/libraries/main.php:2271 app/libraries/main.php:2318
4557
  msgid "Required Field"
4558
  msgstr "Pflichtfeld"
4559
 
4560
+ #: app/libraries/main.php:2049 app/libraries/main.php:2078
4561
+ #: app/libraries/main.php:2107 app/libraries/main.php:2136
4562
+ #: app/libraries/main.php:2189 app/libraries/main.php:2233
4563
+ #: app/libraries/main.php:2277 app/libraries/main.php:2324
4564
  msgid "Insert a label for this field"
4565
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4566
 
4567
+ #: app/libraries/main.php:2159
4568
  msgid "HTML and shortcode are allowed."
4569
  msgstr "HTML und shortcodes sind erlaubt."
4570
 
4571
+ #: app/libraries/main.php:2202 app/libraries/main.php:2246
4572
+ #: app/libraries/main.php:2290
4573
  msgid "Option"
4574
  msgstr "Option"
4575
 
4576
+ #: app/libraries/main.php:2324
4577
  #, php-format
4578
  msgid "Instead of %s, the page title with a link will be show."
4579
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4580
 
4581
+ #: app/libraries/main.php:2326
4582
  msgid "Agreement Page"
4583
  msgstr "Zustimmungsseite"
4584
 
4585
+ #: app/libraries/main.php:2335
4586
  msgid "Status"
4587
  msgstr ""
4588
 
4589
+ #: app/libraries/main.php:2337
4590
  msgid "Checked by default"
4591
  msgstr ""
4592
 
4593
+ #: app/libraries/main.php:2338
4594
  msgid "Unchecked by default"
4595
  msgstr ""
4596
 
4597
+ #: app/libraries/main.php:2360
4598
  msgid "Insert a label for this option"
4599
  msgstr "Ein neues Label für diese Option einfügen"
4600
 
4601
+ #: app/libraries/main.php:2375
4602
  msgid "Free"
4603
  msgstr "kostenfrei"
4604
 
4605
+ #: app/libraries/main.php:3027
4606
  #, php-format
4607
  msgid "Copy of %s"
4608
  msgstr "Kopie von %s"
4609
 
4610
+ #: app/libraries/main.php:3665
4611
  msgid "Booked an event."
4612
  msgstr "Eine Veranstaltung wurde gebucht."
4613
 
4614
+ #: app/libraries/main.php:3706
4615
  #, php-format
4616
  msgid "%s booked %s event."
4617
  msgstr "%s gebuchtes %s Event"
4618
 
4619
+ #: app/libraries/main.php:4148
4620
  msgid "Taxonomies"
4621
  msgstr "Klassifizierung "
4622
 
4623
+ #: app/libraries/main.php:4150
4624
  msgid "Category Plural Label"
4625
  msgstr "Kategorien"
4626
 
4627
+ #: app/libraries/main.php:4151
4628
  msgid "Category Singular Label"
4629
  msgstr "Kategorie"
4630
 
4631
+ #: app/libraries/main.php:4152
4632
  msgid "Label Plural Label"
4633
  msgstr "Labels"
4634
 
4635
+ #: app/libraries/main.php:4153
4636
  msgid "Label Singular Label"
4637
  msgstr "Label"
4638
 
4639
+ #: app/libraries/main.php:4153
4640
  msgid "label"
4641
  msgstr "label"
4642
 
4643
+ #: app/libraries/main.php:4154
4644
  msgid "Location Plural Label"
4645
  msgstr "Veranstaltungsorte"
4646
 
4647
+ #: app/libraries/main.php:4155
4648
  msgid "Location Singular Label"
4649
  msgstr "Veranstaltungsort"
4650
 
4651
+ #: app/libraries/main.php:4156
4652
  msgid "Organizer Plural Label"
4653
  msgstr "Veranstalter"
4654
 
4655
+ #: app/libraries/main.php:4157
4656
  msgid "Organizer Singular Label"
4657
  msgstr "Veranstalter"
4658
 
4659
+ #: app/libraries/main.php:4158
4660
+ #, fuzzy
4661
+ #| msgid "Label Plural Label"
4662
+ msgid "Speaker Plural Label"
4663
+ msgstr "Labels"
4664
+
4665
+ #: app/libraries/main.php:4159
4666
+ #, fuzzy
4667
+ #| msgid "Label Singular Label"
4668
+ msgid "Speaker Singular Label"
4669
+ msgstr "Label"
4670
+
4671
+ #: app/libraries/main.php:4165
4672
  msgid "Sunday abbreviation"
4673
  msgstr "Sonntag Abkürzung"
4674
 
4675
+ #: app/libraries/main.php:4166
4676
  msgid "Monday abbreviation"
4677
  msgstr "Montag Abkürzung"
4678
 
4679
+ #: app/libraries/main.php:4167
4680
  msgid "Tuesday abbreviation"
4681
  msgstr "Dienstag Abkürzung"
4682
 
4683
+ #: app/libraries/main.php:4168
4684
  msgid "Wednesday abbreviation"
4685
  msgstr "Mittwoch Abkürzung"
4686
 
4687
+ #: app/libraries/main.php:4169
4688
  msgid "Thursday abbreviation"
4689
  msgstr "Donnerstag Abkürzung"
4690
 
4691
+ #: app/libraries/main.php:4170
4692
  msgid "Friday abbreviation"
4693
  msgstr "Freitag Abkürzung"
4694
 
4695
+ #: app/libraries/main.php:4171
4696
  msgid "Saturday abbreviation"
4697
  msgstr "Samstag Abkürzung "
4698
 
4699
+ #: app/libraries/main.php:4175
4700
  msgid "Others"
4701
  msgstr "Andere"
4702
 
4703
+ #: app/libraries/main.php:4177
4704
  msgid "Booking Success Message"
4705
  msgstr "Buchung erfolgreich Mitteilung"
4706
 
4707
+ #: app/libraries/main.php:4177
4708
  msgid ""
4709
  "Thanks for your booking. Your tickets booked, booking verification might be "
4710
  "needed, please check your email."
4712
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
4713
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
4714
 
4715
+ #: app/libraries/main.php:4178 app/widgets/single.php:131
4716
  msgid "Register Button"
4717
  msgstr "Register Button"
4718
 
4719
+ #: app/libraries/main.php:4178 app/skins/available_spot/tpl.php:164
4720
+ #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4721
+ #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4722
+ #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4723
+ #: app/skins/list/render.php:59 app/skins/list/render.php:140
4724
+ #: app/skins/masonry/render.php:94 app/skins/single/default.php:217
4725
+ #: app/skins/single/default.php:422 app/skins/single/m1.php:126
4726
+ #: app/skins/single/m2.php:58 app/skins/single/modern.php:58
4727
+ #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4728
+ #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4729
+ #: app/skins/slider/render.php:167
4730
  msgid "REGISTER"
4731
  msgstr "ANMELDEN"
4732
 
4733
+ #: app/libraries/main.php:4179
4734
  msgid "View Detail Button"
4735
  msgstr "Ansicht Detail Button"
4736
 
4737
+ #: app/libraries/main.php:4179 app/skins/carousel/render.php:79
4738
+ #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4739
+ #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4740
+ #: app/skins/grid/render.php:167 app/skins/list/render.php:59
4741
+ #: app/skins/list/render.php:140 app/skins/masonry/render.php:94
4742
+ #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4743
+ #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4744
+ #: app/skins/slider/render.php:167
4745
  msgid "View Detail"
4746
  msgstr "Details "
4747
 
4748
+ #: app/libraries/main.php:4180
4749
  msgid "Event Detail Button"
4750
  msgstr "Event Detail Button"
4751
 
4752
+ #: app/libraries/main.php:4180 app/skins/countdown/tpl.php:178
4753
  msgid "Event Detail"
4754
  msgstr "Veranstaltungsdetails"
4755
 
4756
+ #: app/libraries/main.php:4182
4757
  msgid "More Info Link"
4758
  msgstr "Link Mehr Informationen"
4759
 
4760
+ #: app/libraries/main.php:4185
4761
  msgid "Ticket (Singular)"
4762
  msgstr "Ticket"
4763
 
4764
+ #: app/libraries/main.php:4186
4765
  msgid "Tickets (Plural)"
4766
  msgstr "Tickets"
4767
 
4768
+ #: app/libraries/main.php:4252
4769
  msgid "EventON"
4770
  msgstr "EventON"
4771
 
4772
+ #: app/libraries/main.php:4253
4773
  msgid "The Events Calendar"
4774
  msgstr "The Events Calendar"
4775
 
4776
+ #: app/libraries/main.php:4254
4777
  msgid "Events Schedule WP Plugin"
4778
  msgstr "Event Zeitplan WP-Plugin"
4779
 
4780
+ #: app/libraries/main.php:4255
4781
  msgid "Calendarize It"
4782
  msgstr ""
4783
 
4821
  msgid "No"
4822
  msgstr "Nein"
4823
 
4824
+ #: app/libraries/render.php:334
4825
  msgid "Skin controller does not exist."
4826
  msgstr "Skin contoller existiert nicht."
4827
 
4828
+ #: app/libraries/render.php:404 app/modules/local-time/details.php:44
4829
+ #: app/modules/next-event/details.php:97 app/skins/single/default.php:72
4830
+ #: app/skins/single/default.php:277 app/skins/single/m1.php:34
4831
+ #: app/skins/single/modern.php:167
4832
  msgid "All of the day"
4833
  msgstr "Den ganzen Tag"
4834
 
4835
+ #: app/libraries/skins.php:811
4836
  msgid "Ignore month and years"
4837
  msgstr "Monat und Jahre ignorieren"
4838
 
4869
  msgid "Attendees Form"
4870
  msgstr "Teilnahmeformular"
4871
 
4872
+ #: app/modules/booking/steps/form.php:104
4873
  msgid "Fill other attendees's information like the first form."
4874
  msgstr ""
4875
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
4876
 
4877
+ #: app/modules/booking/steps/form.php:117
4878
+ #: app/modules/booking/steps/tickets.php:53 app/skins/countdown/tpl.php:79
4879
+ #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4880
  msgid "Next"
4881
  msgstr "Weiter"
4882
 
4920
  msgid "Share this event"
4921
  msgstr "Diese Veranstaltung teilen"
4922
 
4923
+ #: app/modules/local-time/details.php:40 app/widgets/single.php:99
4924
  msgid "Local Time"
4925
  msgstr "Lokale Zeit"
4926
 
4951
  msgid "Go to occurrence page"
4952
  msgstr "Zum Event"
4953
 
4954
+ #: app/modules/next-event/details.php:91 app/skins/single/default.php:66
4955
+ #: app/skins/single/default.php:271 app/skins/single/m1.php:28
4956
+ #: app/skins/single/modern.php:161
4957
  msgid "Time"
4958
  msgstr "Uhrzeit"
4959
 
4960
+ #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
4961
  msgid "QR Code"
4962
  msgstr "QR Code"
4963
 
4995
 
4996
  #: app/skins/agenda/tpl.php:62 app/skins/agenda/tpl.php:66
4997
  #: app/skins/carousel/tpl.php:43 app/skins/grid/tpl.php:52
4998
+ #: app/skins/grid/tpl.php:56 app/skins/list/tpl.php:57
4999
+ #: app/skins/list/tpl.php:61 app/skins/masonry/tpl.php:48
5000
  #: app/skins/masonry/tpl.php:52 app/skins/slider/tpl.php:41
5001
  msgid "No event found!"
5002
  msgstr "Keine Veranstaltung gefunden"
5003
 
5004
  #: app/skins/agenda/tpl.php:71 app/skins/grid/tpl.php:61
5005
+ #: app/skins/list/tpl.php:66 app/skins/yearly_view/render.php:81
5006
  msgid "Load More"
5007
  msgstr "Weitere anzeigen"
5008
 
5009
+ #: app/skins/available_spot/tpl.php:99
5010
  msgid "Available Spot(s):"
5011
  msgstr "Verfügbare Spot (s):"
5012
 
5013
+ #: app/skins/countdown/tpl.php:79 app/skins/countdown/tpl.php:123
5014
+ #: app/skins/countdown/tpl.php:168
5015
  #, php-format
5016
  msgid "%s Upcoming Event"
5017
  msgstr "%s Kommendes Event"
5018
 
5019
+ #: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
5020
+ #: app/skins/cover/tpl.php:60 app/skins/list/render.php:76
5021
  msgid "EVENT DETAIL"
5022
  msgstr "VERANSTALTUNGSDETAILS"
5023
 
5024
+ #: app/skins/cover/tpl.php:42
5025
  msgid "featured event"
5026
  msgstr "Ausgewählte Veranstaltung"
5027
 
5028
+ #: app/skins/daily_view/render.php:38
5029
  msgid "No event"
5030
  msgstr "Keine Veranstaltung"
5031
 
5032
+ #: app/skins/full_calendar/tpl.php:69
5033
  msgid "List"
5034
  msgstr "Liste / Listenansicht"
5035
 
5036
+ #: app/skins/masonry.php:194
5037
  msgid "All"
5038
  msgstr "Alle\n"
5039
 
5040
+ #: app/skins/monthly_view/calendar.php:66
5041
+ #: app/skins/monthly_view/calendar.php:104
5042
  #: app/skins/monthly_view/calendar_clean.php:67
5043
+ #: app/skins/monthly_view/calendar_clean.php:105
5044
  #, php-format
5045
  msgid "Events for %s"
5046
  msgstr "Veranstaltungen für %s"
5047
 
5048
+ #: app/skins/monthly_view/calendar.php:106
5049
+ #: app/skins/monthly_view/calendar_clean.php:107
5050
+ #: app/skins/timetable/render.php:70 app/skins/weekly_view/render.php:50
5051
  msgid "No Events"
5052
  msgstr "Keine Veranstaltungen"
5053
 
5054
+ #: app/skins/single.php:209 app/skins/single/default.php:190
5055
+ #: app/skins/single/default.php:395 app/skins/single/m1.php:100
5056
  #: app/skins/single/m2.php:32 app/skins/single/modern.php:31
5057
  msgid "Phone"
5058
  msgstr "Phone"
5059
 
5060
+ #: app/skins/single.php:223 app/skins/single/default.php:204
5061
+ #: app/skins/single/default.php:409 app/skins/single/m1.php:114
5062
  #: app/skins/single/m2.php:46 app/skins/single/modern.php:45
5063
  msgid "Website"
5064
  msgstr "Website"
5065
 
5066
+ #: app/skins/single.php:260
5067
+ msgid "Speakers:"
5068
+ msgstr ""
5069
+
5070
+ #: app/skins/single/default.php:29 app/skins/single/m1.php:233
5071
+ #: app/skins/single/m2.php:158 app/skins/single/modern.php:236
5072
  msgid "Sold out!"
5073
  msgstr "Ausverkauft!"
5074
 
5075
+ #: app/skins/single/default.php:39 app/skins/single/m1.php:242
5076
+ #: app/skins/single/m2.php:167 app/skins/single/modern.php:246
5077
  msgid "Tags: "
5078
  msgstr "Tags:"
5079
 
5080
+ #: app/skins/single/default.php:105 app/skins/single/default.php:310
5081
+ #: app/skins/single/m1.php:189 app/skins/single/m2.php:121
5082
+ #: app/skins/single/modern.php:119
5083
  msgid "Read More"
5084
  msgstr "Mehr lesen"
5085
 
5104
  msgid "Create some calendars first."
5105
  msgstr "Erstellen Sie zuerst einige Kalender."
5106
 
5107
+ #: app/widgets/single.php:22
5108
  msgid "MEC Single Sidebar Items"
5109
  msgstr "MEC Single Sidebar Items"
5110
 
5111
+ #: app/widgets/single.php:22
5112
  msgid "To manage event details page elements."
5113
  msgstr ""
5114
 
5115
+ #: app/widgets/single.php:95
5116
  #, fuzzy
5117
  #| msgid "Date Time Module : "
5118
  msgid "Date Time Module"
5119
  msgstr "Datum Zeit Module:"
5120
 
5121
+ #: app/widgets/single.php:111
5122
  #, fuzzy
5123
  #| msgid "Event Labels"
5124
  msgid "Event Label"
5125
  msgstr "Event Labels"
5126
 
5127
+ #: app/widgets/single.php:127
5128
+ #, fuzzy
5129
+ #| msgid "Event Labels"
5130
+ msgid "Event Speakers"
5131
+ msgstr "Event Labels"
5132
+
5133
+ #: app/widgets/single.php:135
5134
  #, fuzzy
5135
  #| msgid "Attende Module : "
5136
  msgid "Attendees Module"
5137
  msgstr "Teilnehmermodul"
5138
 
5139
+ #: app/widgets/single.php:139
5140
  #, fuzzy
5141
  #| msgid "Next Pervious Module : "
5142
  msgid "Next Pervious Module"
5143
  msgstr "Nächstes vorheriges Modul"
5144
 
5145
+ #: app/widgets/single.php:143
5146
  #, fuzzy
5147
  #| msgid "Social Module : "
5148
  msgid "Social Module"
5149
  msgstr "Social Modul:"
5150
 
5151
+ #: app/widgets/single.php:151
5152
  #, fuzzy
5153
  #| msgid "Google Map : "
5154
  msgid "Google Map"
5265
  #~ msgid "Waiting"
5266
  #~ msgstr "in Bearbeitung"
5267
 
 
 
 
5268
  #~ msgid "Here, you can %s invoice of %s transaction."
5269
  #~ msgstr "Hier können Sie% s Rechnung von% s Transaktion."
5270
 
5370
  #~ msgid "Usage Limit"
5371
  #~ msgstr "Nutzungslimit"
5372
 
 
 
 
5373
  #~ msgid "Expiration Date"
5374
  #~ msgstr "Ablaufdatum"
5375
 
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: 2018-10-01 14:22+0330\n"
5
- "PO-Revision-Date: 2018-10-01 14:22+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -25,8 +25,8 @@ msgstr ""
25
  msgid "Content"
26
  msgstr ""
27
 
28
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:212
29
- #: app/features/mec.php:241 app/features/mec.php:267
30
  msgid "Shortcode"
31
  msgstr ""
32
 
@@ -47,23 +47,23 @@ msgid "Select Type"
47
  msgstr ""
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:566
50
- #: app/features/mec/settings.php:847
51
  msgid "Event Color"
52
  msgstr ""
53
 
54
- #: app/features/contextual.php:55 app/features/mec.php:198
55
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
56
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
57
- #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
58
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
59
- #: app/features/mec/support.php:18 app/libraries/factory.php:206
60
  msgid "Settings"
61
  msgstr ""
62
 
63
- #: app/features/contextual.php:62 app/features/events.php:986
64
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
65
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
66
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
67
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
68
  #: app/features/mec/support.php:27
69
  msgid "Booking Form"
@@ -81,7 +81,7 @@ msgstr ""
81
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
82
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
83
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
84
- #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
85
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
86
  msgid "Payment Gateways"
87
  msgstr ""
@@ -96,7 +96,7 @@ msgstr ""
96
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
97
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
98
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
99
- #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
100
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
101
  msgid "Notifications"
102
  msgstr ""
@@ -157,690 +157,762 @@ msgid ""
157
  "\"0\" allowfullscreen></iframe>"
158
  msgstr ""
159
 
160
- #: app/features/contextual.php:117 app/features/mec/settings.php:41
161
- #: app/features/mec/settings.php:252
162
  msgid "General Options"
163
  msgstr ""
164
 
165
- #: app/features/contextual.php:139 app/features/mec/settings.php:53
166
- #: app/features/mec/settings.php:404
167
  msgid "Slugs/Permalinks"
168
  msgstr ""
169
 
170
- #: app/features/contextual.php:152 app/features/mec/settings.php:59
171
- #: app/features/mec/settings.php:424
172
  msgid "Event Details/Single Event Page"
173
  msgstr ""
174
 
175
- #: app/features/contextual.php:166 app/features/mec/settings.php:65
176
- #: app/features/mec/settings.php:456
177
  msgid "Currency Options"
178
  msgstr ""
179
 
180
- #: app/features/contextual.php:182 app/features/mec/settings.php:71
181
- #: app/features/mec/settings.php:508
182
  msgid "Google Maps Options"
183
  msgstr ""
184
 
185
- #: app/features/contextual.php:244 app/features/mec/settings.php:77
186
- #: app/features/mec/settings.php:582
187
  msgid "Google Recaptcha Options"
188
  msgstr ""
189
 
190
- #: app/features/contextual.php:258 app/features/mec/settings.php:107
191
- #: app/features/mec/settings.php:700
192
  msgid "Countdown Options"
193
  msgstr ""
194
 
195
- #: app/features/contextual.php:268 app/features/mec/settings.php:113
196
- #: app/features/mec/settings.php:721
197
  msgid "Social Networks"
198
  msgstr ""
199
 
200
- #: app/features/contextual.php:278 app/features/mec/settings.php:119
201
- #: app/features/mec/settings.php:746
202
  msgid "Next Event Module"
203
  msgstr ""
204
 
205
- #: app/features/contextual.php:286 app/features/mec/settings.php:125
206
- #: app/features/mec/settings.php:774
207
  msgid "Frontend Event Submission"
208
  msgstr ""
209
 
210
- #: app/features/contextual.php:298 app/features/events.php:570
211
- #: app/features/mec/settings.php:131
212
  msgid "Exceptional Days"
213
  msgstr ""
214
 
215
- #: app/features/contextual.php:308 app/features/events.php:253
216
- #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
217
  msgid "Booking"
218
  msgstr ""
219
 
220
- #: app/features/contextual.php:318 app/features/mec/settings.php:149
221
- #: app/features/mec/settings.php:1019
222
  msgid "Coupons"
223
  msgstr ""
224
 
225
- #: app/features/contextual.php:326 app/features/mec/settings.php:161
226
- #: app/features/mec/settings.php:1101
227
  msgid "BuddyPress Integration"
228
  msgstr ""
229
 
230
- #: app/features/contextual.php:334 app/features/mec/settings.php:167
231
- #: app/features/mec/settings.php:1131
232
  msgid "Mailchimp Integration"
233
  msgstr ""
234
 
235
- #: app/features/contextual.php:346 app/features/mec/settings.php:173
236
- #: app/features/mec/settings.php:1167
237
  msgid "MEC Activation"
238
  msgstr ""
239
 
240
- #: app/features/events.php:122 app/features/ix/export.php:33
241
- #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
242
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
243
  msgid "Events"
244
  msgstr ""
245
 
246
- #: app/features/events.php:123
247
- #: app/features/mec/meta_boxes/display_options.php:678
248
- #: app/features/mec/meta_boxes/display_options.php:716
249
- #: app/features/mec/meta_boxes/display_options.php:745
250
  #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
251
  #: app/skins/yearly_view/tpl.php:69
252
  msgid "Event"
253
  msgstr ""
254
 
255
- #: app/features/events.php:124 app/features/mec.php:191
256
  msgid "Add Event"
257
  msgstr ""
258
 
259
- #: app/features/events.php:125
260
  msgid "Add New Event"
261
  msgstr ""
262
 
263
- #: app/features/events.php:126 app/features/ix.php:2784
264
  #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
265
  msgid "No events found!"
266
  msgstr ""
267
 
268
- #: app/features/events.php:127
269
  msgid "All Events"
270
  msgstr ""
271
 
272
- #: app/features/events.php:128
273
  msgid "Edit Event"
274
  msgstr ""
275
 
276
- #: app/features/events.php:129
277
  msgid "View Event"
278
  msgstr ""
279
 
280
- #: app/features/events.php:130
281
  msgid "No events found in Trash!"
282
  msgstr ""
283
 
284
- #: app/features/events.php:142
285
- #: app/features/mec/meta_boxes/display_options.php:639
286
  #: app/features/mec/meta_boxes/search_form.php:31
287
  #: app/features/mec/meta_boxes/search_form.php:78
288
  #: app/features/mec/meta_boxes/search_form.php:125
289
- #: app/features/mec/meta_boxes/search_form.php:191
290
- #: app/features/mec/meta_boxes/search_form.php:238
291
- #: app/features/mec/meta_boxes/search_form.php:285
292
- #: app/features/mec/meta_boxes/search_form.php:325
293
- #: app/features/mec/meta_boxes/search_form.php:372
294
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:4101
295
- #: app/libraries/skins.php:689 app/skins/single/default.php:167
296
- #: app/skins/single/default.php:369 app/skins/single/m1.php:167
297
- #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
 
298
  msgid "Category"
299
  msgstr ""
300
 
301
- #: app/features/events.php:143 app/features/fes/form.php:518
302
- #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:70
303
- #: app/libraries/main.php:4100
304
  msgid "Categories"
305
  msgstr ""
306
 
307
- #: app/features/events.php:153 app/features/labels.php:71
308
  #: app/features/locations.php:69 app/features/organizers.php:69
 
309
  #, php-format
310
  msgid "All %s"
311
  msgstr ""
312
 
313
- #: app/features/events.php:154 app/features/labels.php:72
314
  #: app/features/locations.php:70 app/features/organizers.php:70
 
315
  #, php-format
316
  msgid "Edit %s"
317
  msgstr ""
318
 
319
- #: app/features/events.php:155 app/features/labels.php:73
320
  #: app/features/locations.php:71 app/features/organizers.php:71
 
321
  #, php-format
322
  msgid "View %s"
323
  msgstr ""
324
 
325
- #: app/features/events.php:156 app/features/labels.php:74
326
  #: app/features/locations.php:72 app/features/organizers.php:72
 
327
  #, php-format
328
  msgid "Update %s"
329
  msgstr ""
330
 
331
- #: app/features/events.php:157 app/features/labels.php:75
332
  #: app/features/locations.php:73 app/features/organizers.php:73
 
333
  #, php-format
334
  msgid "Add New %s"
335
  msgstr ""
336
 
337
- #: app/features/events.php:158 app/features/labels.php:76
338
  #: app/features/locations.php:74 app/features/organizers.php:74
 
339
  #, php-format
340
  msgid "New %s Name"
341
  msgstr ""
342
 
343
- #: app/features/events.php:159 app/features/labels.php:77
344
  #: app/features/locations.php:75 app/features/organizers.php:75
 
345
  #, php-format
346
  msgid "Popular %s"
347
  msgstr ""
348
 
349
- #: app/features/events.php:160 app/features/labels.php:78
350
  #: app/features/locations.php:76 app/features/organizers.php:76
 
351
  #, php-format
352
  msgid "Search %s"
353
  msgstr ""
354
 
355
- #: app/features/events.php:182 app/features/events.php:200
356
  msgid "Category Icon"
357
  msgstr ""
358
 
359
- #: app/features/events.php:184 app/features/events.php:204
360
  msgid "Select icon"
361
  msgstr ""
362
 
363
- #: app/features/events.php:250
364
  msgid "Event Details"
365
  msgstr ""
366
 
367
- #: app/features/events.php:286 app/features/events.php:1709
368
- #: app/features/events.php:1753 app/features/fes/form.php:479
369
  #: app/features/ix.php:2328 app/features/ix.php:2369
370
- #: app/features/mec/settings.php:823 app/libraries/main.php:4131
371
- #: app/widgets/SINGLE.php:102
372
  msgid "Event Cost"
373
  msgstr ""
374
 
375
- #: app/features/events.php:289 app/features/fes/form.php:482
376
- #: app/libraries/main.php:4132 app/skins/single/default.php:102
377
- #: app/skins/single/default.php:304 app/skins/single/m1.php:49
378
- #: app/skins/single/modern.php:179
379
  msgid "Cost"
380
  msgstr ""
381
 
382
- #: app/features/events.php:362
383
  msgid "Note for reviewer"
384
  msgstr ""
385
 
386
- #: app/features/events.php:369
387
  msgid "Guest Data"
388
  msgstr ""
389
 
390
- #: app/features/events.php:370 app/features/fes/form.php:441
391
- #: app/features/labels.php:151 app/features/organizers.php:268
392
- #: app/libraries/main.php:1573 app/libraries/notifications.php:554
393
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
394
  msgid "Name"
395
  msgstr ""
396
 
397
- #: app/features/events.php:371 app/features/events.php:1021
398
  #: app/features/fes/form.php:437 app/features/mec/regform.php:118
399
  #: app/features/organizers.php:110 app/features/organizers.php:150
400
- #: app/libraries/main.php:1039 app/libraries/main.php:1104
401
- #: app/libraries/main.php:1574 app/libraries/main.php:2017
402
- #: app/libraries/notifications.php:555 app/modules/booking/steps/form.php:28
403
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
404
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
405
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
406
- #: app/skins/single/modern.php:38
407
  msgid "Email"
408
  msgstr ""
409
 
410
- #: app/features/events.php:375 app/features/fes/form.php:221
411
  msgid "Date and Time"
412
  msgstr ""
413
 
414
- #: app/features/events.php:379 app/features/events.php:383
415
- #: app/features/events.php:1530 app/features/events.php:1709
416
- #: app/features/events.php:1753 app/features/fes/form.php:225
417
  #: app/features/fes/form.php:229 app/features/ix.php:2328
418
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
419
- #: app/features/mec/dashboard.php:266
420
  #: app/features/mec/meta_boxes/display_options.php:42
421
- #: app/features/mec/meta_boxes/display_options.php:129
422
- #: app/features/mec/meta_boxes/display_options.php:225
423
- #: app/features/mec/meta_boxes/display_options.php:274
424
- #: app/features/mec/meta_boxes/display_options.php:373
425
- #: app/features/mec/meta_boxes/display_options.php:419
426
- #: app/features/mec/meta_boxes/display_options.php:456
427
- #: app/features/mec/meta_boxes/display_options.php:489
428
- #: app/features/mec/meta_boxes/display_options.php:524
429
- #: app/features/mec/meta_boxes/display_options.php:570
430
- #: app/features/mec/meta_boxes/display_options.php:613
431
- #: app/features/mec/meta_boxes/display_options.php:767
432
- #: app/features/mec/meta_boxes/display_options.php:829
433
  msgid "Start Date"
434
  msgstr ""
435
 
436
- #: app/features/events.php:411 app/features/events.php:451
437
- #: app/features/events.php:766 app/features/events.php:784
438
- #: app/features/events.php:836 app/features/events.php:854
439
  #: app/features/fes/form.php:257 app/features/fes/form.php:297
440
  msgid "AM"
441
  msgstr ""
442
 
443
- #: app/features/events.php:412 app/features/events.php:452
444
- #: app/features/events.php:767 app/features/events.php:785
445
- #: app/features/events.php:837 app/features/events.php:855
446
  #: app/features/fes/form.php:258 app/features/fes/form.php:298
447
  msgid "PM"
448
  msgstr ""
449
 
450
- #: app/features/events.php:419 app/features/events.php:423
451
- #: app/features/events.php:1531 app/features/events.php:1709
452
- #: app/features/events.php:1753 app/features/fes/form.php:265
453
  #: app/features/fes/form.php:269 app/features/ix.php:2328
454
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
455
- #: app/features/mec/dashboard.php:267
456
  msgid "End Date"
457
  msgstr ""
458
 
459
- #: app/features/events.php:458 app/features/fes/form.php:304
460
  msgid "All Day Event"
461
  msgstr ""
462
 
463
- #: app/features/events.php:461 app/features/fes/form.php:307
464
  msgid "Hide Event Time"
465
  msgstr ""
466
 
467
- #: app/features/events.php:464 app/features/fes/form.php:310
468
  msgid "Hide Event End Time"
469
  msgstr ""
470
 
471
- #: app/features/events.php:468 app/features/fes/form.php:314
472
  msgid "Time Comment"
473
  msgstr ""
474
 
475
- #: app/features/events.php:469 app/features/fes/form.php:315
476
  msgid ""
477
  "It shows next to event time on calendar. You can insert Timezone etc. in "
478
  "this field."
479
  msgstr ""
480
 
481
- #: app/features/events.php:475 app/features/fes/form.php:321
482
  msgid "Event Repeating"
483
  msgstr ""
484
 
485
- #: app/features/events.php:479 app/features/fes/form.php:325
486
  msgid "Repeats"
487
  msgstr ""
488
 
489
- #: app/features/events.php:481 app/features/fes/form.php:327
490
- #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
491
  msgid "Daily"
492
  msgstr ""
493
 
494
- #: app/features/events.php:482 app/features/fes/form.php:328
495
  msgid "Every Weekday"
496
  msgstr ""
497
 
498
- #: app/features/events.php:483 app/features/fes/form.php:329
499
  msgid "Every Weekend"
500
  msgstr ""
501
 
502
- #: app/features/events.php:484 app/features/fes/form.php:330
503
  msgid "Certain Weekdays"
504
  msgstr ""
505
 
506
- #: app/features/events.php:485 app/features/fes/form.php:331
507
- #: app/skins/full_calendar/tpl.php:47
508
  msgid "Weekly"
509
  msgstr ""
510
 
511
- #: app/features/events.php:486 app/features/fes/form.php:332
512
- #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
513
  msgid "Monthly"
514
  msgstr ""
515
 
516
- #: app/features/events.php:487 app/features/fes/form.php:333
517
- #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
518
  msgid "Yearly"
519
  msgstr ""
520
 
521
- #: app/features/events.php:488 app/features/fes/form.php:334
522
  msgid "Custom Days"
523
  msgstr ""
524
 
525
- #: app/features/events.php:492 app/features/fes/form.php:338
526
  msgid "Repeat Interval"
527
  msgstr ""
528
 
529
- #: app/features/events.php:493 app/features/fes/form.php:339
530
  msgid "Repeat interval"
531
  msgstr ""
532
 
533
- #: app/features/events.php:496 app/features/fes/form.php:342
534
  msgid "Week Days"
535
  msgstr ""
536
 
537
- #: app/features/events.php:497 app/features/fes/form.php:343
538
  #: app/libraries/main.php:401
539
  msgid "Monday"
540
  msgstr ""
541
 
542
- #: app/features/events.php:498 app/features/fes/form.php:344
543
  #: app/libraries/main.php:401
544
  msgid "Tuesday"
545
  msgstr ""
546
 
547
- #: app/features/events.php:499 app/features/fes/form.php:345
548
  #: app/libraries/main.php:401
549
  msgid "Wednesday"
550
  msgstr ""
551
 
552
- #: app/features/events.php:500 app/features/fes/form.php:346
553
  #: app/libraries/main.php:401
554
  msgid "Thursday"
555
  msgstr ""
556
 
557
- #: app/features/events.php:501 app/features/fes/form.php:347
558
  #: app/libraries/main.php:401
559
  msgid "Friday"
560
  msgstr ""
561
 
562
- #: app/features/events.php:502 app/features/fes/form.php:348
563
  #: app/libraries/main.php:401
564
  msgid "Saturday"
565
  msgstr ""
566
 
567
- #: app/features/events.php:503 app/features/fes/form.php:349
568
  #: app/libraries/main.php:401
569
  msgid "Sunday"
570
  msgstr ""
571
 
572
- #: app/features/events.php:508 app/features/events.php:580
573
- #: app/features/fes/form.php:354 app/libraries/main.php:1554
574
  #: app/modules/booking/steps/tickets.php:20
575
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:66
576
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
577
- #: app/skins/single/modern.php:146
578
  msgid "Date"
579
  msgstr ""
580
 
581
- #: app/features/events.php:509 app/features/events.php:581
582
- #: app/features/events.php:623 app/features/events.php:743
583
- #: app/features/events.php:915 app/features/fes/form.php:355
 
584
  msgid "Add"
585
  msgstr ""
586
 
587
- #: app/features/events.php:510 app/features/fes/form.php:356
588
  msgid "Add certain days to event occurrence dates."
589
  msgstr ""
590
 
591
- #: app/features/events.php:532 app/features/fes/form.php:378
592
  msgid "Ends Repeat"
593
  msgstr ""
594
 
595
- #: app/features/events.php:536 app/features/fes/form.php:382
596
  msgid "Never"
597
  msgstr ""
598
 
599
- #: app/features/events.php:541 app/features/fes/form.php:387
600
  msgid "On"
601
  msgstr ""
602
 
603
- #: app/features/events.php:548 app/features/fes/form.php:394
604
  msgid "After"
605
  msgstr ""
606
 
607
- #: app/features/events.php:550 app/features/fes/form.php:396
608
  msgid "Occurrences times"
609
  msgstr ""
610
 
611
- #: app/features/events.php:551 app/features/fes/form.php:397
612
  msgid ""
613
  "The event will finish after certain repeats. For example if you set it to "
614
  "10, the event will finish after 10 repeats."
615
  msgstr ""
616
 
617
- #: app/features/events.php:576
618
  msgid "Exclude certain days"
619
  msgstr ""
620
 
621
- #: app/features/events.php:582
622
  msgid "Exclude certain days from event occurrence dates."
623
  msgstr ""
624
 
625
- #: app/features/events.php:620 app/features/mec/settings.php:871
626
- #: app/skins/single/default.php:27 app/skins/single/m1.php:232
627
- #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
 
 
 
628
  msgid "Hourly Schedule"
629
  msgstr ""
630
 
631
- #: app/features/events.php:624
632
- msgid "Add new hourly schedule row"
633
  msgstr ""
634
 
635
- #: app/features/events.php:629 app/features/events.php:641
636
- msgid "From e.g. 8:15"
 
 
637
  msgstr ""
638
 
639
- #: app/features/events.php:630 app/features/events.php:642
640
- msgid "To e.g. 8:45"
 
641
  msgstr ""
642
 
643
- #: app/features/events.php:631 app/features/events.php:643
644
- #: app/features/events.php:1527 app/features/events.php:1709
645
- #: app/features/events.php:1753 app/features/fes/form.php:214
646
- #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
 
647
  msgid "Title"
648
  msgstr ""
649
 
650
- #: app/features/events.php:632 app/features/events.php:644
651
- #: app/features/events.php:790 app/features/events.php:860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
  msgid "Description"
653
  msgstr ""
654
 
655
- #: app/features/events.php:633 app/features/events.php:645
656
- #: app/features/events.php:809 app/features/events.php:879
657
- #: app/features/events.php:935 app/features/events.php:960
658
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
659
- #: app/features/mec/settings.php:1092 app/libraries/main.php:1996
660
- #: app/libraries/main.php:2025 app/libraries/main.php:2054
661
- #: app/libraries/main.php:2083 app/libraries/main.php:2105
662
- #: app/libraries/main.php:2136 app/libraries/main.php:2180
663
- #: app/libraries/main.php:2224 app/libraries/main.php:2271
664
- #: app/libraries/main.php:2309
 
 
665
  msgid "Remove"
666
  msgstr ""
667
 
668
- #: app/features/events.php:665 app/features/fes/form.php:456
669
- #: app/features/mec/settings.php:817
 
 
 
 
 
 
 
 
 
 
 
 
670
  msgid "Event Links"
671
  msgstr ""
672
 
673
- #: app/features/events.php:667 app/features/fes/form.php:458
674
- #: app/libraries/main.php:4129
675
  msgid "Event Link"
676
  msgstr ""
677
 
678
- #: app/features/events.php:668 app/features/events.php:673
679
  #: app/features/fes/form.php:459 app/features/fes/form.php:464
680
  msgid "eg. http://yoursite.com/your-event"
681
  msgstr ""
682
 
683
- #: app/features/events.php:669 app/features/fes/form.php:460
684
  msgid ""
685
  "If you fill it, it will be replaced instead of default event page link. "
686
  "Insert full link including http(s)://"
687
  msgstr ""
688
 
689
- #: app/features/events.php:672 app/features/fes/form.php:463
690
- #: app/libraries/main.php:4130 app/skins/single/default.php:116
691
- #: app/skins/single/default.php:318 app/skins/single/m1.php:189
692
- #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
693
- #: app/widgets/SINGLE.php:106
694
  msgid "More Info"
695
  msgstr ""
696
 
697
- #: app/features/events.php:674 app/features/fes/form.php:465
698
  msgid "More Information"
699
  msgstr ""
700
 
701
- #: app/features/events.php:676 app/features/fes/form.php:467
702
  msgid "Current Window"
703
  msgstr ""
704
 
705
- #: app/features/events.php:677 app/features/fes/form.php:468
706
  msgid "New Window"
707
  msgstr ""
708
 
709
- #: app/features/events.php:679 app/features/fes/form.php:470
710
  msgid ""
711
  "If you fill it, it will be shown in event details page as an optional link. "
712
  "Insert full link including http(s)://"
713
  msgstr ""
714
 
715
- #: app/features/events.php:710
716
  msgid "Total booking limits"
717
  msgstr ""
718
 
719
- #: app/features/events.php:715 app/features/events.php:807
720
- #: app/features/events.php:877 app/modules/booking/default.php:82
721
- #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
722
  msgid "Unlimited"
723
  msgstr ""
724
 
725
- #: app/features/events.php:717
726
  msgid "100"
727
  msgstr ""
728
 
729
- #: app/features/events.php:735 app/libraries/book.php:59
730
- #: app/libraries/main.php:4134 app/modules/booking/steps/tickets.php:38
731
  msgid "Tickets"
732
  msgstr ""
733
 
734
- #: app/features/events.php:738
735
  msgid ""
736
  "You're translating an event so MEC will use the original event for tickets "
737
  "and booking. You can only translate the ticket name and description. Please "
738
  "define exact tickets that you defined in the original event here."
739
  msgstr ""
740
 
741
- #: app/features/events.php:749 app/features/events.php:819
742
  msgid "Ticket Name"
743
  msgstr ""
744
 
745
- #: app/features/events.php:753 app/features/events.php:823
746
- #: app/features/events.php:1709 app/features/events.php:1753
747
  #: app/features/ix.php:2328 app/features/ix.php:2369
748
  msgid "Start Time"
749
  msgstr ""
750
 
751
- #: app/features/events.php:771 app/features/events.php:841
752
- #: app/features/events.php:1709 app/features/events.php:1753
753
  #: app/features/ix.php:2328 app/features/ix.php:2369
754
  msgid "End Time"
755
  msgstr ""
756
 
757
- #: app/features/events.php:794 app/features/events.php:864
 
 
758
  msgid "Price"
759
  msgstr ""
760
 
761
- #: app/features/events.php:795 app/features/events.php:865
762
  msgid "Insert 0 for free ticket. Only numbers please."
763
  msgstr ""
764
 
765
- #: app/features/events.php:798 app/features/events.php:868
766
  msgid "Price Label"
767
  msgstr ""
768
 
769
- #: app/features/events.php:799 app/features/events.php:869
770
  msgid "For showing on website. e.g. $15"
771
  msgstr ""
772
 
773
- #: app/features/events.php:803 app/features/events.php:873
774
  msgid "Available Tickets"
775
  msgstr ""
776
 
777
- #: app/features/events.php:905
778
  msgid "Fees"
779
  msgstr ""
780
 
781
- #: app/features/events.php:910 app/features/events.php:991
 
782
  msgid "Inherit from global options"
783
  msgstr ""
784
 
785
- #: app/features/events.php:921 app/features/events.php:946
786
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
787
  msgid "Fee Title"
788
  msgstr ""
789
 
790
- #: app/features/events.php:925 app/features/events.php:950
791
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
792
  msgid "Amount"
793
  msgstr ""
794
 
795
- #: app/features/events.php:926 app/features/events.php:951
796
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
797
  msgid ""
798
  "Fee amount, considered as fixed amount if you set the type to amount "
799
  "otherwise considered as percentage"
800
  msgstr ""
801
 
802
- #: app/features/events.php:930 app/features/events.php:955
803
- #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
804
  msgid "Percent"
805
  msgstr ""
806
 
807
- #: app/features/events.php:931 app/features/events.php:956
808
- #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
809
  msgid "Amount (Per Ticket)"
810
  msgstr ""
811
 
812
- #: app/features/events.php:932 app/features/events.php:957
813
- #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
814
  msgid "Amount (Per Booking)"
815
  msgstr ""
816
 
817
- #: app/features/events.php:1020 app/features/mec/regform.php:117
818
- #: app/libraries/main.php:1988
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
819
  msgid "Text"
820
  msgstr ""
821
 
822
- #: app/features/events.php:1022 app/features/mec/regform.php:119
823
  #: app/features/organizers.php:102 app/features/organizers.php:146
824
- #: app/libraries/main.php:2046
 
825
  msgid "Tel"
826
  msgstr ""
827
 
828
- #: app/features/events.php:1023 app/features/mec/regform.php:120
829
- #: app/libraries/main.php:2075
830
  msgid "Textarea"
831
  msgstr ""
832
 
833
- #: app/features/events.php:1024 app/features/mec/regform.php:121
834
- #: app/libraries/main.php:2128
835
  msgid "Checkboxes"
836
  msgstr ""
837
 
838
- #: app/features/events.php:1025 app/features/mec/regform.php:122
839
- #: app/libraries/main.php:2172
840
  msgid "Radio Buttons"
841
  msgstr ""
842
 
843
- #: app/features/events.php:1026 app/features/mec/meta_boxes/search_form.php:34
844
  #: app/features/mec/meta_boxes/search_form.php:41
845
  #: app/features/mec/meta_boxes/search_form.php:48
846
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -856,161 +928,162 @@ msgstr ""
856
  #: app/features/mec/meta_boxes/search_form.php:149
857
  #: app/features/mec/meta_boxes/search_form.php:156
858
  #: app/features/mec/meta_boxes/search_form.php:175
859
- #: app/features/mec/meta_boxes/search_form.php:194
860
  #: app/features/mec/meta_boxes/search_form.php:201
861
  #: app/features/mec/meta_boxes/search_form.php:208
862
  #: app/features/mec/meta_boxes/search_form.php:215
863
  #: app/features/mec/meta_boxes/search_form.php:222
864
- #: app/features/mec/meta_boxes/search_form.php:241
865
  #: app/features/mec/meta_boxes/search_form.php:248
866
  #: app/features/mec/meta_boxes/search_form.php:255
867
  #: app/features/mec/meta_boxes/search_form.php:262
868
  #: app/features/mec/meta_boxes/search_form.php:269
869
- #: app/features/mec/meta_boxes/search_form.php:288
870
  #: app/features/mec/meta_boxes/search_form.php:295
871
  #: app/features/mec/meta_boxes/search_form.php:302
872
  #: app/features/mec/meta_boxes/search_form.php:309
873
- #: app/features/mec/meta_boxes/search_form.php:328
874
  #: app/features/mec/meta_boxes/search_form.php:335
875
  #: app/features/mec/meta_boxes/search_form.php:342
876
  #: app/features/mec/meta_boxes/search_form.php:349
877
  #: app/features/mec/meta_boxes/search_form.php:356
878
- #: app/features/mec/meta_boxes/search_form.php:375
879
  #: app/features/mec/meta_boxes/search_form.php:382
880
  #: app/features/mec/meta_boxes/search_form.php:389
881
  #: app/features/mec/meta_boxes/search_form.php:396
882
  #: app/features/mec/meta_boxes/search_form.php:403
883
- #: app/features/mec/meta_boxes/search_form.php:422
884
  #: app/features/mec/meta_boxes/search_form.php:429
885
  #: app/features/mec/meta_boxes/search_form.php:436
886
  #: app/features/mec/meta_boxes/search_form.php:443
887
  #: app/features/mec/meta_boxes/search_form.php:450
888
- #: app/features/mec/regform.php:123 app/libraries/main.php:2216
 
889
  msgid "Dropdown"
890
  msgstr ""
891
 
892
- #: app/features/events.php:1027 app/features/mec/regform.php:124
893
- #: app/libraries/main.php:2263
894
  msgid "Agreement"
895
  msgstr ""
896
 
897
- #: app/features/events.php:1028 app/features/mec/regform.php:125
898
- #: app/libraries/main.php:2104
899
  msgid "Paragraph"
900
  msgstr ""
901
 
902
- #: app/features/events.php:1473 app/features/events.php:1488
903
- #: app/features/events.php:1502
904
  #, php-format
905
  msgid "Show all %s"
906
  msgstr ""
907
 
908
- #: app/features/events.php:1473
909
  msgid "labels"
910
  msgstr ""
911
 
912
- #: app/features/events.php:1488
913
  msgid "locations"
914
  msgstr ""
915
 
916
- #: app/features/events.php:1502
917
  msgid "organizers"
918
  msgstr ""
919
 
920
- #: app/features/events.php:1528 app/features/events.php:1709
921
- #: app/features/events.php:1753 app/features/ix.php:2328
922
  #: app/features/ix.php:2369 app/features/locations.php:58
923
  #: app/features/locations.php:229 app/features/locations.php:281
924
- #: app/features/locations.php:283 app/features/mec/dashboard.php:103
925
- #: app/features/mec/meta_boxes/display_options.php:641
926
  #: app/features/mec/meta_boxes/search_form.php:38
927
  #: app/features/mec/meta_boxes/search_form.php:85
928
  #: app/features/mec/meta_boxes/search_form.php:132
929
- #: app/features/mec/meta_boxes/search_form.php:198
930
- #: app/features/mec/meta_boxes/search_form.php:245
931
- #: app/features/mec/meta_boxes/search_form.php:292
932
- #: app/features/mec/meta_boxes/search_form.php:332
933
- #: app/features/mec/meta_boxes/search_form.php:379
934
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1548
935
- #: app/libraries/main.php:4105 app/libraries/skins.php:715
936
- #: app/skins/single/default.php:152 app/skins/single/default.php:354
937
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
938
- #: app/skins/single/modern.php:77
939
  msgid "Location"
940
  msgstr ""
941
 
942
- #: app/features/events.php:1529 app/features/events.php:1709
943
- #: app/features/events.php:1753 app/features/ix.php:2328
944
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
945
- #: app/features/mec/meta_boxes/display_options.php:642
946
  #: app/features/mec/meta_boxes/search_form.php:45
947
  #: app/features/mec/meta_boxes/search_form.php:92
948
  #: app/features/mec/meta_boxes/search_form.php:139
949
- #: app/features/mec/meta_boxes/search_form.php:205
950
- #: app/features/mec/meta_boxes/search_form.php:252
951
- #: app/features/mec/meta_boxes/search_form.php:299
952
- #: app/features/mec/meta_boxes/search_form.php:339
953
- #: app/features/mec/meta_boxes/search_form.php:386
954
- #: app/features/mec/meta_boxes/search_form.php:433
955
  #: app/features/organizers.php:58 app/features/organizers.php:199
956
  #: app/features/organizers.php:255 app/features/organizers.php:257
957
- #: app/libraries/main.php:4107 app/libraries/skins.php:741
958
- #: app/skins/single/default.php:193 app/skins/single/default.php:395
959
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
960
  #: app/skins/single/modern.php:21
961
  msgid "Organizer"
962
  msgstr ""
963
 
964
- #: app/features/events.php:1533
965
  msgid "Repeat"
966
  msgstr ""
967
 
968
- #: app/features/events.php:1534
969
  msgid "Author"
970
  msgstr ""
971
 
972
- #: app/features/events.php:1644 app/features/events.php:1645
973
  msgid "iCal Export"
974
  msgstr ""
975
 
976
- #: app/features/events.php:1647 app/features/events.php:1648
977
  msgid "CSV Export"
978
  msgstr ""
979
 
980
- #: app/features/events.php:1650 app/features/events.php:1651
981
  msgid "MS Excel Export"
982
  msgstr ""
983
 
984
- #: app/features/events.php:1653 app/features/events.php:1654
985
  msgid "XML Export"
986
  msgstr ""
987
 
988
- #: app/features/events.php:1656 app/features/events.php:1657
989
  msgid "JSON Export"
990
  msgstr ""
991
 
992
- #: app/features/events.php:1659 app/features/events.php:1660
993
  msgid "Duplicate"
994
  msgstr ""
995
 
996
- #: app/features/events.php:1709 app/features/events.php:1753
997
  #: app/features/ix.php:2328 app/features/ix.php:2369
998
- #: app/features/labels.php:150 app/features/locations.php:228
999
- #: app/features/organizers.php:198
1000
  msgid "ID"
1001
  msgstr ""
1002
 
1003
- #: app/features/events.php:1709 app/features/events.php:1753
1004
  #: app/features/ix.php:2328 app/features/ix.php:2369
1005
  msgid "Link"
1006
  msgstr ""
1007
 
1008
- #: app/features/events.php:1709 app/features/events.php:1753
1009
  #, php-format
1010
  msgid "%s Tel"
1011
  msgstr ""
1012
 
1013
- #: app/features/events.php:1709 app/features/events.php:1753
1014
  #, php-format
1015
  msgid "%s Email"
1016
  msgstr ""
@@ -1053,15 +1126,15 @@ msgstr ""
1053
  msgid "Captcha is invalid! Please try again."
1054
  msgstr ""
1055
 
1056
- #: app/features/fes.php:263
1057
  msgid "Please fill event title field!"
1058
  msgstr ""
1059
 
1060
- #: app/features/fes.php:771
1061
  msgid "The event submitted. It will publish as soon as possible."
1062
  msgstr ""
1063
 
1064
- #: app/features/fes.php:772
1065
  msgid "The event published."
1066
  msgstr ""
1067
 
@@ -1073,7 +1146,7 @@ msgstr ""
1073
  msgid "Note to reviewer"
1074
  msgstr ""
1075
 
1076
- #: app/features/fes/form.php:416 app/features/fes/form.php:596
1077
  msgid "Submit"
1078
  msgstr ""
1079
 
@@ -1089,7 +1162,7 @@ msgstr ""
1089
  msgid "eg. John Smith"
1090
  msgstr ""
1091
 
1092
- #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1093
  msgid "Featured Image"
1094
  msgstr ""
1095
 
@@ -1098,14 +1171,14 @@ msgid "Remove Image"
1098
  msgstr ""
1099
 
1100
  #: app/features/fes/form.php:543 app/features/labels.php:61
1101
- #: app/features/labels.php:194 app/features/mec.php:194
1102
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4102
1103
- #: app/skins/single/default.php:131 app/skins/single/default.php:333
1104
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1105
  msgid "Labels"
1106
  msgstr ""
1107
 
1108
- #: app/features/fes/form.php:588 app/features/mec.php:192
1109
  #: app/features/mec/meta_boxes/filter.php:138
1110
  msgid "Tags"
1111
  msgstr ""
@@ -1262,7 +1335,7 @@ msgid ""
1262
  "This will export all of your website events' data into your desired format."
1263
  msgstr ""
1264
 
1265
- #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1266
  msgid "iCal"
1267
  msgstr ""
1268
 
@@ -1364,7 +1437,7 @@ msgstr ""
1364
  msgid "Add to Google Calendar"
1365
  msgstr ""
1366
 
1367
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1368
  msgid "Checking ..."
1369
  msgstr ""
1370
 
@@ -1406,25 +1479,26 @@ msgstr ""
1406
  msgid "ICS Feed"
1407
  msgstr ""
1408
 
1409
- #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1410
- #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1411
- #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1412
- #: app/features/mec/settings.php:1039
1413
  #, php-format
1414
  msgid "%s is required to use this feature."
1415
  msgstr ""
1416
 
1417
  #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1418
- #: app/features/mec/meta_boxes/display_options.php:214
1419
- #: app/features/mec/meta_boxes/display_options.php:362
1420
- #: app/features/mec/meta_boxes/display_options.php:451
1421
- #: app/features/mec/meta_boxes/display_options.php:558
1422
- #: app/features/mec/meta_boxes/display_options.php:608
1423
- #: app/features/mec/meta_boxes/display_options.php:734
1424
- #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1425
- #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1426
- #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1427
- #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
 
1428
  msgid "Pro version of Modern Events Calendar"
1429
  msgstr ""
1430
 
@@ -1521,7 +1595,7 @@ msgid "Auto Synchronization"
1521
  msgstr ""
1522
 
1523
  #: app/features/ix/sync.php:21
1524
- #: app/features/mec/meta_boxes/display_options.php:608
1525
  #, php-format
1526
  msgid "%s is required to use synchronization feature."
1527
  msgstr ""
@@ -1619,45 +1693,94 @@ msgid ""
1619
  msgstr ""
1620
 
1621
  #: app/features/labels.php:60
1622
- #: app/features/mec/meta_boxes/display_options.php:640
1623
  #: app/features/mec/meta_boxes/search_form.php:52
1624
  #: app/features/mec/meta_boxes/search_form.php:99
1625
  #: app/features/mec/meta_boxes/search_form.php:146
1626
- #: app/features/mec/meta_boxes/search_form.php:212
1627
- #: app/features/mec/meta_boxes/search_form.php:259
1628
- #: app/features/mec/meta_boxes/search_form.php:306
1629
- #: app/features/mec/meta_boxes/search_form.php:346
1630
- #: app/features/mec/meta_boxes/search_form.php:393
1631
- #: app/features/mec/meta_boxes/search_form.php:440 app/libraries/skins.php:767
1632
  msgid "Label"
1633
  msgstr ""
1634
 
1635
- #: app/features/labels.php:101 app/features/labels.php:119
1636
- #: app/features/labels.php:152
1637
  msgid "Color"
1638
  msgstr ""
1639
 
1640
- #: app/features/labels.php:105 app/features/labels.php:121
1641
  msgid "Select label color"
1642
  msgstr ""
1643
 
1644
- #: app/features/labels.php:153 app/features/locations.php:231
1645
- #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1646
  msgid "Count"
1647
  msgstr ""
1648
 
1649
- #: app/features/labels.php:154 app/features/locations.php:232
1650
  #: app/features/organizers.php:202
1651
  msgid "Slug"
1652
  msgstr ""
1653
 
1654
- #: app/features/labels.php:194 app/features/locations.php:281
1655
  #, php-format
1656
  msgid "Event %s"
1657
  msgstr ""
1658
 
1659
- #: app/features/locations.php:59 app/features/mec.php:195
1660
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4104
1661
  msgid "Locations"
1662
  msgstr ""
1663
 
@@ -1690,11 +1813,13 @@ msgstr ""
1690
 
1691
  #: app/features/locations.php:137 app/features/locations.php:179
1692
  #: app/features/organizers.php:126 app/features/organizers.php:158
 
1693
  msgid "Thumbnail"
1694
  msgstr ""
1695
 
1696
  #: app/features/locations.php:142 app/features/locations.php:182
1697
  #: app/features/organizers.php:131 app/features/organizers.php:161
 
1698
  msgid "Upload/Add image"
1699
  msgstr ""
1700
 
@@ -1702,6 +1827,7 @@ msgstr ""
1702
  #: app/features/locations.php:322 app/features/locations.php:329
1703
  #: app/features/organizers.php:132 app/features/organizers.php:162
1704
  #: app/features/organizers.php:288 app/features/organizers.php:295
 
1705
  msgid "Remove image"
1706
  msgstr ""
1707
 
@@ -1725,8 +1851,8 @@ msgstr ""
1725
  msgid "eg. City Hall"
1726
  msgstr ""
1727
 
1728
- #: app/features/locations.php:298 app/features/mec/settings.php:859
1729
- #: app/widgets/SINGLE.php:114
1730
  msgid "Event Location"
1731
  msgstr ""
1732
 
@@ -1748,65 +1874,65 @@ msgstr ""
1748
  msgid "Don't show map in single event page"
1749
  msgstr ""
1750
 
1751
- #: app/features/mec.php:196 app/features/mec/meta_boxes/filter.php:104
1752
- #: app/features/organizers.php:59 app/libraries/main.php:4106
1753
  msgid "Organizers"
1754
  msgstr ""
1755
 
1756
- #: app/features/mec.php:197 app/features/mec.php:211
1757
- #: app/features/mec/dashboard.php:96
1758
  msgid "Shortcodes"
1759
  msgstr ""
1760
 
1761
- #: app/features/mec.php:198
1762
  msgid "MEC - Settings"
1763
  msgstr ""
1764
 
1765
- #: app/features/mec.php:213
1766
  msgid "Add Shortcode"
1767
  msgstr ""
1768
 
1769
- #: app/features/mec.php:214
1770
  msgid "Add New Shortcode"
1771
  msgstr ""
1772
 
1773
- #: app/features/mec.php:215
1774
  msgid "No shortcodes found!"
1775
  msgstr ""
1776
 
1777
- #: app/features/mec.php:216
1778
  msgid "All Shortcodes"
1779
  msgstr ""
1780
 
1781
- #: app/features/mec.php:217
1782
  msgid "Edit shortcodes"
1783
  msgstr ""
1784
 
1785
- #: app/features/mec.php:218
1786
  msgid "No shortcodes found in Trash!"
1787
  msgstr ""
1788
 
1789
- #: app/features/mec.php:265
1790
  msgid "Display Options"
1791
  msgstr ""
1792
 
1793
- #: app/features/mec.php:266
1794
  msgid "Filter Options"
1795
  msgstr ""
1796
 
1797
- #: app/features/mec.php:268
1798
  msgid "Search Form"
1799
  msgstr ""
1800
 
1801
- #: app/features/mec.php:556
1802
  msgid "Single Event Display Method"
1803
  msgstr ""
1804
 
1805
- #: app/features/mec.php:561
1806
  msgid "Separate Window"
1807
  msgstr ""
1808
 
1809
- #: app/features/mec.php:562
1810
  msgid "Modal 1"
1811
  msgstr ""
1812
 
@@ -1828,11 +1954,15 @@ msgstr ""
1828
  msgid "Modern Event Calendar (Lite)"
1829
  msgstr ""
1830
 
1831
- #: app/features/mec/dashboard.php:70
 
 
 
 
1832
  msgid "Version"
1833
  msgstr ""
1834
 
1835
- #: app/features/mec/dashboard.php:79
1836
  #, php-format
1837
  msgid ""
1838
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -1840,120 +1970,120 @@ msgid ""
1840
  "Spots, etc you should %s to the Pro version."
1841
  msgstr ""
1842
 
1843
- #: app/features/mec/dashboard.php:79
1844
  msgid "lite"
1845
  msgstr ""
1846
 
1847
- #: app/features/mec/dashboard.php:79
1848
  msgid "upgrade"
1849
  msgstr ""
1850
 
1851
- #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1852
  msgid "Documentation"
1853
  msgstr ""
1854
 
1855
- #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1856
  msgid ""
1857
  "Our documentation is simple and functional with full details and cover all "
1858
  "essential aspects from beginning to the most advanced parts."
1859
  msgstr ""
1860
 
1861
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1862
  msgid "DOCUMENTATION"
1863
  msgstr ""
1864
 
1865
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1866
  msgid "Support Forum"
1867
  msgstr ""
1868
 
1869
- #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1870
  msgid ""
1871
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1872
  "If you want to use this service you need to upgrade your plugin to Pro "
1873
  "version. Click on the following button."
1874
  msgstr ""
1875
 
1876
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1877
  msgid ""
1878
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1879
  "If you have any issues please don't hesitate to contact us, we will reply as "
1880
  "soon as possible."
1881
  msgstr ""
1882
 
1883
- #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1884
  msgid "GO PREMIUM"
1885
  msgstr ""
1886
 
1887
- #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1888
  msgid "OPEN A TICKET"
1889
  msgstr ""
1890
 
1891
- #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1892
  msgid "Upcoming Events"
1893
  msgstr ""
1894
 
1895
- #: app/features/mec/dashboard.php:181
1896
  msgid "Popular Gateways"
1897
  msgstr ""
1898
 
1899
- #: app/features/mec/dashboard.php:232
1900
  msgid "Total Bookings"
1901
  msgstr ""
1902
 
1903
- #: app/features/mec/dashboard.php:259
1904
  msgid "This Month"
1905
  msgstr ""
1906
 
1907
- #: app/features/mec/dashboard.php:260
1908
  msgid "Last Month"
1909
  msgstr ""
1910
 
1911
- #: app/features/mec/dashboard.php:261
1912
  msgid "This Year"
1913
  msgstr ""
1914
 
1915
- #: app/features/mec/dashboard.php:262
1916
  msgid "Last Year"
1917
  msgstr ""
1918
 
1919
- #: app/features/mec/dashboard.php:274
1920
  msgid "Bar"
1921
  msgstr ""
1922
 
1923
- #: app/features/mec/dashboard.php:275
1924
  msgid "Line"
1925
  msgstr ""
1926
 
1927
- #: app/features/mec/dashboard.php:277
1928
  msgid "Filter"
1929
  msgstr ""
1930
 
1931
- #: app/features/mec/dashboard.php:293
1932
  #, php-format
1933
  msgid "Total Sells (%s)"
1934
  msgstr ""
1935
 
1936
- #: app/features/mec/dashboard.php:314
1937
  msgid "Change Log"
1938
  msgstr ""
1939
 
1940
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1941
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1942
- #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1943
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1944
  msgid "Styling Options"
1945
  msgstr ""
1946
 
1947
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1948
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1949
- #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1950
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1951
  msgid "Custom CSS"
1952
  msgstr ""
1953
 
1954
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1955
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1956
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1957
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1958
  #: app/features/mec/support.php:64
1959
  msgid "Messages"
@@ -1961,7 +2091,7 @@ msgstr ""
1961
 
1962
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1963
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1964
- #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1965
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1966
  #: app/features/mec/support.php:84
1967
  msgid "Support"
@@ -1974,9 +2104,9 @@ msgstr ""
1974
  #: app/features/mec/notifications.php:425
1975
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
1976
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1977
- #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1978
- #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
1979
- #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
1980
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
1981
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
1982
  #: app/features/mec/styling.php:335
@@ -1985,14 +2115,14 @@ msgstr ""
1985
 
1986
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
1987
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
1988
- #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
1989
  #: app/features/mec/styling.php:313
1990
  msgid "Saved"
1991
  msgstr ""
1992
 
1993
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
1994
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
1995
- #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
1996
  #: app/features/mec/styling.php:314
1997
  msgid "Settings Saved!"
1998
  msgstr ""
@@ -2009,37 +2139,24 @@ msgstr ""
2009
  msgid "Skin"
2010
  msgstr ""
2011
 
2012
- #: app/features/mec/meta_boxes/display_options.php:32
2013
- #: app/features/mec/meta_boxes/display_options.php:117
2014
- #: app/features/mec/meta_boxes/display_options.php:219
2015
- #: app/features/mec/meta_boxes/display_options.php:367
2016
- #: app/features/mec/meta_boxes/display_options.php:411
2017
- #: app/features/mec/meta_boxes/display_options.php:563
2018
- #: app/features/mec/meta_boxes/display_options.php:652
2019
- #: app/features/mec/meta_boxes/display_options.php:691
2020
- #: app/features/mec/meta_boxes/display_options.php:759
2021
- #: app/features/mec/meta_boxes/display_options.php:819
2022
- msgid "Style"
2023
- msgstr ""
2024
-
2025
  #: app/features/mec/meta_boxes/display_options.php:34
2026
- #: app/features/mec/meta_boxes/display_options.php:119
2027
- #: app/features/mec/meta_boxes/display_options.php:413
2028
- #: app/features/mec/meta_boxes/display_options.php:654
2029
  msgid "Classic"
2030
  msgstr ""
2031
 
2032
  #: app/features/mec/meta_boxes/display_options.php:35
2033
- #: app/features/mec/meta_boxes/display_options.php:121
2034
  msgid "Minimal"
2035
  msgstr ""
2036
 
2037
  #: app/features/mec/meta_boxes/display_options.php:36
2038
- #: app/features/mec/meta_boxes/display_options.php:122
2039
- #: app/features/mec/meta_boxes/display_options.php:369
2040
- #: app/features/mec/meta_boxes/display_options.php:415
2041
- #: app/features/mec/meta_boxes/display_options.php:565
2042
- #: app/features/mec/meta_boxes/display_options.php:656
2043
  msgid "Modern"
2044
  msgstr ""
2045
 
@@ -2052,86 +2169,86 @@ msgid "Accordion"
2052
  msgstr ""
2053
 
2054
  #: app/features/mec/meta_boxes/display_options.php:44
2055
- #: app/features/mec/meta_boxes/display_options.php:131
2056
- #: app/features/mec/meta_boxes/display_options.php:227
2057
- #: app/features/mec/meta_boxes/display_options.php:458
2058
- #: app/features/mec/meta_boxes/display_options.php:491
2059
- #: app/features/mec/meta_boxes/display_options.php:615
2060
- #: app/features/mec/meta_boxes/display_options.php:769
2061
- #: app/features/mec/meta_boxes/display_options.php:831
2062
  msgid "Today"
2063
  msgstr ""
2064
 
2065
  #: app/features/mec/meta_boxes/display_options.php:45
2066
- #: app/features/mec/meta_boxes/display_options.php:132
2067
- #: app/features/mec/meta_boxes/display_options.php:228
2068
- #: app/features/mec/meta_boxes/display_options.php:459
2069
- #: app/features/mec/meta_boxes/display_options.php:492
2070
- #: app/features/mec/meta_boxes/display_options.php:616
2071
- #: app/features/mec/meta_boxes/display_options.php:770
2072
- #: app/features/mec/meta_boxes/display_options.php:832
2073
  msgid "Tomorrow"
2074
  msgstr ""
2075
 
2076
  #: app/features/mec/meta_boxes/display_options.php:46
2077
- #: app/features/mec/meta_boxes/display_options.php:133
2078
- #: app/features/mec/meta_boxes/display_options.php:229
2079
- #: app/features/mec/meta_boxes/display_options.php:276
2080
- #: app/features/mec/meta_boxes/display_options.php:421
2081
- #: app/features/mec/meta_boxes/display_options.php:460
2082
- #: app/features/mec/meta_boxes/display_options.php:493
2083
- #: app/features/mec/meta_boxes/display_options.php:528
2084
- #: app/features/mec/meta_boxes/display_options.php:574
2085
- #: app/features/mec/meta_boxes/display_options.php:617
2086
- #: app/features/mec/meta_boxes/display_options.php:771
2087
- #: app/features/mec/meta_boxes/display_options.php:833
2088
  msgid "Start of Current Month"
2089
  msgstr ""
2090
 
2091
  #: app/features/mec/meta_boxes/display_options.php:47
2092
- #: app/features/mec/meta_boxes/display_options.php:134
2093
- #: app/features/mec/meta_boxes/display_options.php:230
2094
- #: app/features/mec/meta_boxes/display_options.php:277
2095
- #: app/features/mec/meta_boxes/display_options.php:422
2096
- #: app/features/mec/meta_boxes/display_options.php:461
2097
- #: app/features/mec/meta_boxes/display_options.php:494
2098
- #: app/features/mec/meta_boxes/display_options.php:529
2099
- #: app/features/mec/meta_boxes/display_options.php:575
2100
- #: app/features/mec/meta_boxes/display_options.php:618
2101
- #: app/features/mec/meta_boxes/display_options.php:772
2102
- #: app/features/mec/meta_boxes/display_options.php:834
2103
  msgid "Start of Next Month"
2104
  msgstr ""
2105
 
2106
  #: app/features/mec/meta_boxes/display_options.php:48
2107
- #: app/features/mec/meta_boxes/display_options.php:135
2108
- #: app/features/mec/meta_boxes/display_options.php:231
2109
- #: app/features/mec/meta_boxes/display_options.php:278
2110
- #: app/features/mec/meta_boxes/display_options.php:377
2111
- #: app/features/mec/meta_boxes/display_options.php:423
2112
- #: app/features/mec/meta_boxes/display_options.php:462
2113
- #: app/features/mec/meta_boxes/display_options.php:495
2114
- #: app/features/mec/meta_boxes/display_options.php:530
2115
- #: app/features/mec/meta_boxes/display_options.php:576
2116
- #: app/features/mec/meta_boxes/display_options.php:619
2117
- #: app/features/mec/meta_boxes/display_options.php:773
2118
- #: app/features/mec/meta_boxes/display_options.php:835
2119
  msgid "On a certain date"
2120
  msgstr ""
2121
 
2122
  #: app/features/mec/meta_boxes/display_options.php:51
2123
- #: app/features/mec/meta_boxes/display_options.php:138
2124
- #: app/features/mec/meta_boxes/display_options.php:234
2125
- #: app/features/mec/meta_boxes/display_options.php:281
2126
- #: app/features/mec/meta_boxes/display_options.php:380
2127
- #: app/features/mec/meta_boxes/display_options.php:426
2128
- #: app/features/mec/meta_boxes/display_options.php:465
2129
- #: app/features/mec/meta_boxes/display_options.php:499
2130
- #: app/features/mec/meta_boxes/display_options.php:533
2131
- #: app/features/mec/meta_boxes/display_options.php:579
2132
- #: app/features/mec/meta_boxes/display_options.php:622
2133
- #: app/features/mec/meta_boxes/display_options.php:776
2134
- #: app/features/mec/meta_boxes/display_options.php:838
2135
  #, php-format
2136
  msgid "eg. %s"
2137
  msgstr ""
@@ -2141,36 +2258,36 @@ msgstr ""
2141
  #: app/features/mec/meta_boxes/display_options.php:67
2142
  #: app/features/mec/meta_boxes/display_options.php:74
2143
  #: app/features/mec/meta_boxes/display_options.php:79
2144
- #: app/features/mec/meta_boxes/display_options.php:142
2145
- #: app/features/mec/meta_boxes/display_options.php:147
2146
- #: app/features/mec/meta_boxes/display_options.php:153
2147
- #: app/features/mec/meta_boxes/display_options.php:159
2148
- #: app/features/mec/meta_boxes/display_options.php:166
2149
- #: app/features/mec/meta_boxes/display_options.php:171
2150
- #: app/features/mec/meta_boxes/display_options.php:178
2151
- #: app/features/mec/meta_boxes/display_options.php:238
2152
- #: app/features/mec/meta_boxes/display_options.php:384
2153
- #: app/features/mec/meta_boxes/display_options.php:626
2154
- #: app/features/mec/meta_boxes/display_options.php:660
2155
- #: app/features/mec/meta_boxes/display_options.php:667
2156
- #: app/features/mec/meta_boxes/display_options.php:673
2157
- #: app/features/mec/meta_boxes/display_options.php:699
2158
- #: app/features/mec/meta_boxes/display_options.php:704
2159
- #: app/features/mec/meta_boxes/display_options.php:709
2160
  #: app/features/mec/meta_boxes/display_options.php:739
2161
- #: app/features/mec/meta_boxes/display_options.php:780
2162
- #: app/features/mec/meta_boxes/display_options.php:787
2163
- #: app/features/mec/meta_boxes/display_options.php:792
2164
- #: app/features/mec/meta_boxes/display_options.php:842
2165
- #: app/features/mec/meta_boxes/display_options.php:849
2166
- #: app/features/mec/meta_boxes/display_options.php:856
2167
- #: app/features/mec/meta_boxes/display_options.php:863
2168
- #: app/features/mec/meta_boxes/display_options.php:870
 
2169
  msgid "Date Formats"
2170
  msgstr ""
2171
 
2172
  #: app/features/mec/meta_boxes/display_options.php:57
2173
- #: app/features/mec/meta_boxes/display_options.php:168
2174
  msgid "Default value is \"M d Y\""
2175
  msgstr ""
2176
 
@@ -2179,13 +2296,13 @@ msgid "Default values are d, M and l"
2179
  msgstr ""
2180
 
2181
  #: app/features/mec/meta_boxes/display_options.php:71
2182
- #: app/features/mec/meta_boxes/display_options.php:163
2183
- #: app/features/mec/meta_boxes/display_options.php:175
2184
- #: app/features/mec/meta_boxes/display_options.php:846
2185
- #: app/features/mec/meta_boxes/display_options.php:853
2186
- #: app/features/mec/meta_boxes/display_options.php:860
2187
- #: app/features/mec/meta_boxes/display_options.php:867
2188
- #: app/features/mec/meta_boxes/display_options.php:874
2189
  msgid "Default values are d, F and l"
2190
  msgstr ""
2191
 
@@ -2194,288 +2311,307 @@ msgid "Default value is \"M d\""
2194
  msgstr ""
2195
 
2196
  #: app/features/mec/meta_boxes/display_options.php:82
2197
- #: app/features/mec/meta_boxes/display_options.php:150
2198
  msgid "Default values are d and F"
2199
  msgstr ""
2200
 
2201
  #: app/features/mec/meta_boxes/display_options.php:85
2202
- #: app/features/mec/meta_boxes/display_options.php:194
2203
- #: app/features/mec/meta_boxes/display_options.php:244
2204
- #: app/features/mec/meta_boxes/display_options.php:632
2205
- #: app/features/mec/meta_boxes/display_options.php:806
2206
- #: app/features/mec/meta_boxes/display_options.php:877
2207
  msgid "Limit"
2208
  msgstr ""
2209
 
2210
  #: app/features/mec/meta_boxes/display_options.php:86
2211
- #: app/features/mec/meta_boxes/display_options.php:195
2212
- #: app/features/mec/meta_boxes/display_options.php:245
2213
- #: app/features/mec/meta_boxes/display_options.php:391
2214
- #: app/features/mec/meta_boxes/display_options.php:431
2215
- #: app/features/mec/meta_boxes/display_options.php:504
2216
- #: app/features/mec/meta_boxes/display_options.php:538
2217
- #: app/features/mec/meta_boxes/display_options.php:584
2218
- #: app/features/mec/meta_boxes/display_options.php:807
2219
- #: app/features/mec/meta_boxes/display_options.php:878
2220
  msgid "eg. 6"
2221
  msgstr ""
2222
 
2223
  #: app/features/mec/meta_boxes/display_options.php:90
2224
- #: app/features/mec/meta_boxes/display_options.php:199
2225
- #: app/features/mec/meta_boxes/display_options.php:249
2226
  msgid "Load More Button"
2227
  msgstr ""
2228
 
2229
  #: app/features/mec/meta_boxes/display_options.php:100
2230
- #: app/features/mec/meta_boxes/display_options.php:259
2231
  msgid "Show Month Divider"
2232
  msgstr ""
2233
 
2234
- #: app/features/mec/meta_boxes/display_options.php:120
2235
- #: app/features/mec/meta_boxes/display_options.php:221
2236
- #: app/features/mec/meta_boxes/display_options.php:414
2237
- #: app/features/mec/meta_boxes/display_options.php:566
2238
- #: app/features/mec/meta_boxes/display_options.php:655
 
 
 
 
 
2239
  msgid "Clean"
2240
  msgstr ""
2241
 
2242
- #: app/features/mec/meta_boxes/display_options.php:123
2243
  msgid "Simple"
2244
  msgstr ""
2245
 
2246
- #: app/features/mec/meta_boxes/display_options.php:124
2247
  msgid "Colorful"
2248
  msgstr ""
2249
 
2250
- #: app/features/mec/meta_boxes/display_options.php:125
 
 
2251
  msgid "Novel"
2252
  msgstr ""
2253
 
2254
- #: app/features/mec/meta_boxes/display_options.php:144
2255
- #: app/features/mec/meta_boxes/display_options.php:180
2256
  msgid "Default value is \"d F Y\""
2257
  msgstr ""
2258
 
2259
- #: app/features/mec/meta_boxes/display_options.php:156
2260
  msgid "Default values are d and M"
2261
  msgstr ""
2262
 
2263
- #: app/features/mec/meta_boxes/display_options.php:183
2264
- #: app/features/mec/meta_boxes/display_options.php:797
2265
  msgid "Count in row"
2266
  msgstr ""
2267
 
2268
- #: app/features/mec/meta_boxes/display_options.php:214
2269
- #: app/features/mec/meta_boxes/display_options.php:362
2270
- #: app/features/mec/meta_boxes/display_options.php:451
2271
- #: app/features/mec/meta_boxes/display_options.php:558
2272
- #: app/features/mec/meta_boxes/display_options.php:734
2273
- #: app/libraries/skins.php:247
2274
  #, php-format
2275
  msgid "%s is required to use this skin."
2276
  msgstr ""
2277
 
2278
- #: app/features/mec/meta_boxes/display_options.php:241
2279
- #: app/features/mec/meta_boxes/display_options.php:387
2280
  msgid "Default values are l and F j"
2281
  msgstr ""
2282
 
2283
- #: app/features/mec/meta_boxes/display_options.php:285
2284
  msgid "Default View"
2285
  msgstr ""
2286
 
2287
- #: app/features/mec/meta_boxes/display_options.php:287
2288
- #: app/features/mec/meta_boxes/display_options.php:296
2289
- #: app/libraries/main.php:324 app/libraries/main.php:1134
2290
  msgid "List View"
2291
  msgstr ""
2292
 
2293
- #: app/features/mec/meta_boxes/display_options.php:288
2294
- #: app/features/mec/meta_boxes/display_options.php:306
2295
- #: app/libraries/main.php:328 app/libraries/main.php:1128
2296
  msgid "Yearly View"
2297
  msgstr ""
2298
 
2299
- #: app/features/mec/meta_boxes/display_options.php:289
2300
- #: app/features/mec/meta_boxes/display_options.php:316
2301
  msgid "Monthly/Calendar View"
2302
  msgstr ""
2303
 
2304
- #: app/features/mec/meta_boxes/display_options.php:290
2305
- #: app/features/mec/meta_boxes/display_options.php:326
2306
- #: app/libraries/main.php:331 app/libraries/main.php:1130
2307
  msgid "Weekly View"
2308
  msgstr ""
2309
 
2310
- #: app/features/mec/meta_boxes/display_options.php:291
2311
- #: app/features/mec/meta_boxes/display_options.php:336
2312
- #: app/libraries/main.php:330 app/libraries/main.php:1131
2313
  msgid "Daily View"
2314
  msgstr ""
2315
 
2316
- #: app/features/mec/meta_boxes/display_options.php:344
 
 
 
 
2317
  msgid "The price shows only in List View."
2318
  msgstr ""
2319
 
2320
- #: app/features/mec/meta_boxes/display_options.php:347
2321
  msgid "Display Event Price"
2322
  msgstr ""
2323
 
2324
- #: app/features/mec/meta_boxes/display_options.php:375
2325
  msgid "Start of Current Year"
2326
  msgstr ""
2327
 
2328
- #: app/features/mec/meta_boxes/display_options.php:376
2329
  msgid "Start of Next Year"
2330
  msgstr ""
2331
 
2332
- #: app/features/mec/meta_boxes/display_options.php:390
2333
- #: app/features/mec/meta_boxes/display_options.php:430
2334
- #: app/features/mec/meta_boxes/display_options.php:503
2335
- #: app/features/mec/meta_boxes/display_options.php:537
2336
- #: app/features/mec/meta_boxes/display_options.php:583
2337
  msgid "Events per day"
2338
  msgstr ""
2339
 
2340
- #: app/features/mec/meta_boxes/display_options.php:395
2341
- #: app/features/mec/meta_boxes/display_options.php:435
2342
- #: app/features/mec/meta_boxes/display_options.php:508
2343
- #: app/features/mec/meta_boxes/display_options.php:542
2344
- #: app/features/mec/meta_boxes/display_options.php:589
2345
  msgid "Next/Previous Buttons"
2346
  msgstr ""
2347
 
2348
- #: app/features/mec/meta_boxes/display_options.php:403
2349
  msgid "For showing next/previous year navigation."
2350
  msgstr ""
2351
 
2352
- #: app/features/mec/meta_boxes/display_options.php:443
2353
- #: app/features/mec/meta_boxes/display_options.php:516
2354
- #: app/features/mec/meta_boxes/display_options.php:550
2355
- #: app/features/mec/meta_boxes/display_options.php:597
2356
  msgid "For showing next/previous month navigation."
2357
  msgstr ""
2358
 
2359
- #: app/features/mec/meta_boxes/display_options.php:469
2360
  msgid "Maximum events"
2361
  msgstr ""
2362
 
2363
- #: ap
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2018-11-19 13:45+0330\n"
5
+ "PO-Revision-Date: 2018-11-19 13:45+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
25
  msgid "Content"
26
  msgstr ""
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:224
29
+ #: app/features/mec.php:253 app/features/mec.php:279
30
  msgid "Shortcode"
31
  msgstr ""
32
 
47
  msgstr ""
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:566
50
+ #: app/features/mec/settings.php:884
51
  msgid "Event Color"
52
  msgstr ""
53
 
54
+ #: app/features/contextual.php:55 app/features/mec.php:210
55
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
56
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
57
+ #: app/features/mec/settings.php:35 app/features/mec/settings.php:263
58
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
59
+ #: app/features/mec/support.php:18 app/libraries/factory.php:208
60
  msgid "Settings"
61
  msgstr ""
62
 
63
+ #: app/features/contextual.php:62 app/features/events.php:1155
64
  #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
65
  #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
66
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:198
67
  #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
68
  #: app/features/mec/support.php:27
69
  msgid "Booking Form"
81
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
82
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
83
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
84
+ #: app/features/mec/settings.php:205 app/features/mec/styles.php:36
85
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
86
  msgid "Payment Gateways"
87
  msgstr ""
96
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
97
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
98
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
99
+ #: app/features/mec/settings.php:215 app/features/mec/styles.php:45
100
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
101
  msgid "Notifications"
102
  msgstr ""
157
  "\"0\" allowfullscreen></iframe>"
158
  msgstr ""
159
 
160
+ #: app/features/contextual.php:117 app/features/mec/settings.php:42
161
+ #: app/features/mec/settings.php:265
162
  msgid "General Options"
163
  msgstr ""
164
 
165
+ #: app/features/contextual.php:139 app/features/mec/settings.php:54
166
+ #: app/features/mec/settings.php:417
167
  msgid "Slugs/Permalinks"
168
  msgstr ""
169
 
170
+ #: app/features/contextual.php:152 app/features/mec/settings.php:60
171
+ #: app/features/mec/settings.php:437
172
  msgid "Event Details/Single Event Page"
173
  msgstr ""
174
 
175
+ #: app/features/contextual.php:166 app/features/mec/settings.php:66
176
+ #: app/features/mec/settings.php:478
177
  msgid "Currency Options"
178
  msgstr ""
179
 
180
+ #: app/features/contextual.php:182 app/features/mec/settings.php:78
181
+ #: app/features/mec/settings.php:545
182
  msgid "Google Maps Options"
183
  msgstr ""
184
 
185
+ #: app/features/contextual.php:244 app/features/mec/settings.php:84
186
+ #: app/features/mec/settings.php:619
187
  msgid "Google Recaptcha Options"
188
  msgstr ""
189
 
190
+ #: app/features/contextual.php:258 app/features/mec/settings.php:114
191
+ #: app/features/mec/settings.php:737
192
  msgid "Countdown Options"
193
  msgstr ""
194
 
195
+ #: app/features/contextual.php:268 app/features/mec/settings.php:120
196
+ #: app/features/mec/settings.php:758
197
  msgid "Social Networks"
198
  msgstr ""
199
 
200
+ #: app/features/contextual.php:278 app/features/mec/settings.php:126
201
+ #: app/features/mec/settings.php:783
202
  msgid "Next Event Module"
203
  msgstr ""
204
 
205
+ #: app/features/contextual.php:286 app/features/mec/settings.php:132
206
+ #: app/features/mec/settings.php:811
207
  msgid "Frontend Event Submission"
208
  msgstr ""
209
 
210
+ #: app/features/contextual.php:298 app/features/events.php:580
211
+ #: app/features/mec/settings.php:138
212
  msgid "Exceptional Days"
213
  msgstr ""
214
 
215
+ #: app/features/contextual.php:308 app/features/events.php:263
216
+ #: app/features/mec/settings.php:150 app/features/mec/settings.php:978
217
  msgid "Booking"
218
  msgstr ""
219
 
220
+ #: app/features/contextual.php:318 app/features/mec/settings.php:156
221
+ #: app/features/mec/settings.php:1068
222
  msgid "Coupons"
223
  msgstr ""
224
 
225
+ #: app/features/contextual.php:326 app/features/mec/settings.php:174
226
+ #: app/features/mec/settings.php:1209
227
  msgid "BuddyPress Integration"
228
  msgstr ""
229
 
230
+ #: app/features/contextual.php:334 app/features/mec/settings.php:180
231
+ #: app/features/mec/settings.php:1239
232
  msgid "Mailchimp Integration"
233
  msgstr ""
234
 
235
+ #: app/features/contextual.php:346 app/features/mec/settings.php:186
236
+ #: app/features/mec/settings.php:1275
237
  msgid "MEC Activation"
238
  msgstr ""
239
 
240
+ #: app/features/events.php:132 app/features/ix/export.php:33
241
+ #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
242
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
243
  msgid "Events"
244
  msgstr ""
245
 
246
+ #: app/features/events.php:133
247
+ #: app/features/mec/meta_boxes/display_options.php:708
248
+ #: app/features/mec/meta_boxes/display_options.php:746
249
+ #: app/features/mec/meta_boxes/display_options.php:775
250
  #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
251
  #: app/skins/yearly_view/tpl.php:69
252
  msgid "Event"
253
  msgstr ""
254
 
255
+ #: app/features/events.php:134 app/features/mec.php:196
256
  msgid "Add Event"
257
  msgstr ""
258
 
259
+ #: app/features/events.php:135
260
  msgid "Add New Event"
261
  msgstr ""
262
 
263
+ #: app/features/events.php:136 app/features/ix.php:2784
264
  #: app/features/ix/thirdparty.php:41 app/skins/map/tpl.php:54
265
  msgid "No events found!"
266
  msgstr ""
267
 
268
+ #: app/features/events.php:137
269
  msgid "All Events"
270
  msgstr ""
271
 
272
+ #: app/features/events.php:138
273
  msgid "Edit Event"
274
  msgstr ""
275
 
276
+ #: app/features/events.php:139
277
  msgid "View Event"
278
  msgstr ""
279
 
280
+ #: app/features/events.php:140
281
  msgid "No events found in Trash!"
282
  msgstr ""
283
 
284
+ #: app/features/events.php:152
285
+ #: app/features/mec/meta_boxes/display_options.php:657
286
  #: app/features/mec/meta_boxes/search_form.php:31
287
  #: app/features/mec/meta_boxes/search_form.php:78
288
  #: app/features/mec/meta_boxes/search_form.php:125
289
+ #: app/features/mec/meta_boxes/search_form.php:172
290
+ #: app/features/mec/meta_boxes/search_form.php:198
291
+ #: app/features/mec/meta_boxes/search_form.php:245
292
+ #: app/features/mec/meta_boxes/search_form.php:292
293
+ #: app/features/mec/meta_boxes/search_form.php:332
294
+ #: app/features/mec/meta_boxes/search_form.php:379
295
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4151
296
+ #: app/libraries/skins.php:712 app/skins/single/default.php:155
297
+ #: app/skins/single/default.php:360 app/skins/single/m1.php:167
298
+ #: app/skins/single/m2.php:99 app/skins/single/modern.php:96
299
  msgid "Category"
300
  msgstr ""
301
 
302
+ #: app/features/events.php:153 app/features/fes/form.php:518
303
+ #: app/features/mec.php:198 app/features/mec/meta_boxes/filter.php:70
304
+ #: app/libraries/main.php:4150
305
  msgid "Categories"
306
  msgstr ""
307
 
308
+ #: app/features/events.php:163 app/features/labels.php:71
309
  #: app/features/locations.php:69 app/features/organizers.php:69
310
+ #: app/features/speakers.php:67
311
  #, php-format
312
  msgid "All %s"
313
  msgstr ""
314
 
315
+ #: app/features/events.php:164 app/features/labels.php:72
316
  #: app/features/locations.php:70 app/features/organizers.php:70
317
+ #: app/features/speakers.php:68
318
  #, php-format
319
  msgid "Edit %s"
320
  msgstr ""
321
 
322
+ #: app/features/events.php:165 app/features/labels.php:73
323
  #: app/features/locations.php:71 app/features/organizers.php:71
324
+ #: app/features/speakers.php:69
325
  #, php-format
326
  msgid "View %s"
327
  msgstr ""
328
 
329
+ #: app/features/events.php:166 app/features/labels.php:74
330
  #: app/features/locations.php:72 app/features/organizers.php:72
331
+ #: app/features/speakers.php:70
332
  #, php-format
333
  msgid "Update %s"
334
  msgstr ""
335
 
336
+ #: app/features/events.php:167 app/features/labels.php:75
337
  #: app/features/locations.php:73 app/features/organizers.php:73
338
+ #: app/features/speakers.php:71
339
  #, php-format
340
  msgid "Add New %s"
341
  msgstr ""
342
 
343
+ #: app/features/events.php:168 app/features/labels.php:76
344
  #: app/features/locations.php:74 app/features/organizers.php:74
345
+ #: app/features/speakers.php:72
346
  #, php-format
347
  msgid "New %s Name"
348
  msgstr ""
349
 
350
+ #: app/features/events.php:169 app/features/labels.php:77
351
  #: app/features/locations.php:75 app/features/organizers.php:75
352
+ #: app/features/speakers.php:73
353
  #, php-format
354
  msgid "Popular %s"
355
  msgstr ""
356
 
357
+ #: app/features/events.php:170 app/features/labels.php:78
358
  #: app/features/locations.php:76 app/features/organizers.php:76
359
+ #: app/features/speakers.php:74
360
  #, php-format
361
  msgid "Search %s"
362
  msgstr ""
363
 
364
+ #: app/features/events.php:192 app/features/events.php:210
365
  msgid "Category Icon"
366
  msgstr ""
367
 
368
+ #: app/features/events.php:194 app/features/events.php:214
369
  msgid "Select icon"
370
  msgstr ""
371
 
372
+ #: app/features/events.php:260
373
  msgid "Event Details"
374
  msgstr ""
375
 
376
+ #: app/features/events.php:296 app/features/events.php:1894
377
+ #: app/features/events.php:1938 app/features/fes/form.php:479
378
  #: app/features/ix.php:2328 app/features/ix.php:2369
379
+ #: app/features/mec/settings.php:860 app/libraries/main.php:4183
380
+ #: app/widgets/single.php:103
381
  msgid "Event Cost"
382
  msgstr ""
383
 
384
+ #: app/features/events.php:299 app/features/fes/form.php:482
385
+ #: app/libraries/main.php:4184 app/skins/single/default.php:90
386
+ #: app/skins/single/default.php:295 app/skins/single/m1.php:49
387
+ #: app/skins/single/modern.php:182
388
  msgid "Cost"
389
  msgstr ""
390
 
391
+ #: app/features/events.php:372
392
  msgid "Note for reviewer"
393
  msgstr ""
394
 
395
+ #: app/features/events.php:379
396
  msgid "Guest Data"
397
  msgstr ""
398
 
399
+ #: app/features/events.php:380 app/features/fes/form.php:441
400
+ #: app/features/labels.php:177 app/features/organizers.php:268
401
+ #: app/libraries/notifications.php:554 app/modules/booking/steps/form.php:24
402
+ #: app/modules/booking/steps/form.php:25
403
  msgid "Name"
404
  msgstr ""
405
 
406
+ #: app/features/events.php:381 app/features/events.php:1190
407
  #: app/features/fes/form.php:437 app/features/mec/regform.php:118
408
  #: app/features/organizers.php:110 app/features/organizers.php:150
409
+ #: app/features/speakers.php:119 app/features/speakers.php:179
410
+ #: app/libraries/main.php:1067 app/libraries/main.php:1132
411
+ #: app/libraries/main.php:2067 app/libraries/notifications.php:555
412
+ #: app/modules/booking/steps/form.php:28 app/modules/booking/steps/form.php:29
413
+ #: app/skins/single.php:216 app/skins/single/default.php:197
414
+ #: app/skins/single/default.php:402 app/skins/single/m1.php:107
415
+ #: app/skins/single/m2.php:39 app/skins/single/modern.php:38
416
  msgid "Email"
417
  msgstr ""
418
 
419
+ #: app/features/events.php:385 app/features/fes/form.php:221
420
  msgid "Date and Time"
421
  msgstr ""
422
 
423
+ #: app/features/events.php:389 app/features/events.php:393
424
+ #: app/features/events.php:1715 app/features/events.php:1894
425
+ #: app/features/events.php:1938 app/features/fes/form.php:225
426
  #: app/features/fes/form.php:229 app/features/ix.php:2328
427
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
428
+ #: app/features/mec/dashboard.php:269
429
  #: app/features/mec/meta_boxes/display_options.php:42
430
+ #: app/features/mec/meta_boxes/display_options.php:139
431
+ #: app/features/mec/meta_boxes/display_options.php:235
432
+ #: app/features/mec/meta_boxes/display_options.php:284
433
+ #: app/features/mec/meta_boxes/display_options.php:390
434
+ #: app/features/mec/meta_boxes/display_options.php:437
435
+ #: app/features/mec/meta_boxes/display_options.php:474
436
+ #: app/features/mec/meta_boxes/display_options.php:507
437
+ #: app/features/mec/meta_boxes/display_options.php:542
438
+ #: app/features/mec/meta_boxes/display_options.php:588
439
+ #: app/features/mec/meta_boxes/display_options.php:631
440
+ #: app/features/mec/meta_boxes/display_options.php:797
441
+ #: app/features/mec/meta_boxes/display_options.php:859
442
  msgid "Start Date"
443
  msgstr ""
444
 
445
+ #: app/features/events.php:421 app/features/events.php:461
446
+ #: app/features/events.php:860 app/features/events.php:878
447
+ #: app/features/events.php:930 app/features/events.php:948
448
  #: app/features/fes/form.php:257 app/features/fes/form.php:297
449
  msgid "AM"
450
  msgstr ""
451
 
452
+ #: app/features/events.php:422 app/features/events.php:462
453
+ #: app/features/events.php:861 app/features/events.php:879
454
+ #: app/features/events.php:931 app/features/events.php:949
455
  #: app/features/fes/form.php:258 app/features/fes/form.php:298
456
  msgid "PM"
457
  msgstr ""
458
 
459
+ #: app/features/events.php:429 app/features/events.php:433
460
+ #: app/features/events.php:1716 app/features/events.php:1894
461
+ #: app/features/events.php:1938 app/features/fes/form.php:265
462
  #: app/features/fes/form.php:269 app/features/ix.php:2328
463
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
464
+ #: app/features/mec/dashboard.php:270
465
  msgid "End Date"
466
  msgstr ""
467
 
468
+ #: app/features/events.php:468 app/features/fes/form.php:304
469
  msgid "All Day Event"
470
  msgstr ""
471
 
472
+ #: app/features/events.php:471 app/features/fes/form.php:307
473
  msgid "Hide Event Time"
474
  msgstr ""
475
 
476
+ #: app/features/events.php:474 app/features/fes/form.php:310
477
  msgid "Hide Event End Time"
478
  msgstr ""
479
 
480
+ #: app/features/events.php:478 app/features/fes/form.php:314
481
  msgid "Time Comment"
482
  msgstr ""
483
 
484
+ #: app/features/events.php:479 app/features/fes/form.php:315
485
  msgid ""
486
  "It shows next to event time on calendar. You can insert Timezone etc. in "
487
  "this field."
488
  msgstr ""
489
 
490
+ #: app/features/events.php:485 app/features/fes/form.php:321
491
  msgid "Event Repeating"
492
  msgstr ""
493
 
494
+ #: app/features/events.php:489 app/features/fes/form.php:325
495
  msgid "Repeats"
496
  msgstr ""
497
 
498
+ #: app/features/events.php:491 app/features/fes/form.php:327
499
+ #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:68
500
  msgid "Daily"
501
  msgstr ""
502
 
503
+ #: app/features/events.php:492 app/features/fes/form.php:328
504
  msgid "Every Weekday"
505
  msgstr ""
506
 
507
+ #: app/features/events.php:493 app/features/fes/form.php:329
508
  msgid "Every Weekend"
509
  msgstr ""
510
 
511
+ #: app/features/events.php:494 app/features/fes/form.php:330
512
  msgid "Certain Weekdays"
513
  msgstr ""
514
 
515
+ #: app/features/events.php:495 app/features/fes/form.php:331
516
+ #: app/skins/full_calendar/tpl.php:67
517
  msgid "Weekly"
518
  msgstr ""
519
 
520
+ #: app/features/events.php:496 app/features/fes/form.php:332
521
+ #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:66
522
  msgid "Monthly"
523
  msgstr ""
524
 
525
+ #: app/features/events.php:497 app/features/fes/form.php:333
526
+ #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:65
527
  msgid "Yearly"
528
  msgstr ""
529
 
530
+ #: app/features/events.php:498 app/features/fes/form.php:334
531
  msgid "Custom Days"
532
  msgstr ""
533
 
534
+ #: app/features/events.php:502 app/features/fes/form.php:338
535
  msgid "Repeat Interval"
536
  msgstr ""
537
 
538
+ #: app/features/events.php:503 app/features/fes/form.php:339
539
  msgid "Repeat interval"
540
  msgstr ""
541
 
542
+ #: app/features/events.php:506 app/features/fes/form.php:342
543
  msgid "Week Days"
544
  msgstr ""
545
 
546
+ #: app/features/events.php:507 app/features/fes/form.php:343
547
  #: app/libraries/main.php:401
548
  msgid "Monday"
549
  msgstr ""
550
 
551
+ #: app/features/events.php:508 app/features/fes/form.php:344
552
  #: app/libraries/main.php:401
553
  msgid "Tuesday"
554
  msgstr ""
555
 
556
+ #: app/features/events.php:509 app/features/fes/form.php:345
557
  #: app/libraries/main.php:401
558
  msgid "Wednesday"
559
  msgstr ""
560
 
561
+ #: app/features/events.php:510 app/features/fes/form.php:346
562
  #: app/libraries/main.php:401
563
  msgid "Thursday"
564
  msgstr ""
565
 
566
+ #: app/features/events.php:511 app/features/fes/form.php:347
567
  #: app/libraries/main.php:401
568
  msgid "Friday"
569
  msgstr ""
570
 
571
+ #: app/features/events.php:512 app/features/fes/form.php:348
572
  #: app/libraries/main.php:401
573
  msgid "Saturday"
574
  msgstr ""
575
 
576
+ #: app/features/events.php:513 app/features/fes/form.php:349
577
  #: app/libraries/main.php:401
578
  msgid "Sunday"
579
  msgstr ""
580
 
581
+ #: app/features/events.php:518 app/features/events.php:590
582
+ #: app/features/fes/form.php:354 app/libraries/main.php:1582
583
  #: app/modules/booking/steps/tickets.php:20
584
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:54
585
+ #: app/skins/single/default.php:259 app/skins/single/m1.php:16
586
+ #: app/skins/single/modern.php:149
587
  msgid "Date"
588
  msgstr ""
589
 
590
+ #: app/features/events.php:519 app/features/events.php:591
591
+ #: app/features/events.php:665 app/features/events.php:717
592
+ #: app/features/events.php:837 app/features/events.php:1009
593
+ #: app/features/events.php:1090 app/features/fes/form.php:355
594
  msgid "Add"
595
  msgstr ""
596
 
597
+ #: app/features/events.php:520 app/features/fes/form.php:356
598
  msgid "Add certain days to event occurrence dates."
599
  msgstr ""
600
 
601
+ #: app/features/events.php:542 app/features/fes/form.php:378
602
  msgid "Ends Repeat"
603
  msgstr ""
604
 
605
+ #: app/features/events.php:546 app/features/fes/form.php:382
606
  msgid "Never"
607
  msgstr ""
608
 
609
+ #: app/features/events.php:551 app/features/fes/form.php:387
610
  msgid "On"
611
  msgstr ""
612
 
613
+ #: app/features/events.php:558 app/features/fes/form.php:394
614
  msgid "After"
615
  msgstr ""
616
 
617
+ #: app/features/events.php:560 app/features/fes/form.php:396
618
  msgid "Occurrences times"
619
  msgstr ""
620
 
621
+ #: app/features/events.php:561 app/features/fes/form.php:397
622
  msgid ""
623
  "The event will finish after certain repeats. For example if you set it to "
624
  "10, the event will finish after 10 repeats."
625
  msgstr ""
626
 
627
+ #: app/features/events.php:586
628
  msgid "Exclude certain days"
629
  msgstr ""
630
 
631
+ #: app/features/events.php:592
632
  msgid "Exclude certain days from event occurrence dates."
633
  msgstr ""
634
 
635
+ #: app/features/events.php:636 app/libraries/render.php:422
636
+ msgid "Day 1"
637
+ msgstr ""
638
+
639
+ #: app/features/events.php:649 app/features/mec/settings.php:914
640
+ #: app/skins/single.php:246
641
  msgid "Hourly Schedule"
642
  msgstr ""
643
 
644
+ #: app/features/events.php:652
645
+ msgid "Add Day"
646
  msgstr ""
647
 
648
+ #: app/features/events.php:653
649
+ msgid ""
650
+ "Add new days for schedule. For example if your event is multiple days, you "
651
+ "can add a different schedule for each day!"
652
  msgstr ""
653
 
654
+ #: app/features/events.php:658
655
+ #, php-format
656
+ msgid "Day %s"
657
  msgstr ""
658
 
659
+ #: app/features/events.php:661 app/features/events.php:673
660
+ #: app/features/events.php:693 app/features/events.php:713
661
+ #: app/features/events.php:728 app/features/events.php:1096
662
+ #: app/features/events.php:1118 app/features/events.php:1712
663
+ #: app/features/events.php:1894 app/features/events.php:1938
664
+ #: app/features/fes/form.php:214 app/features/ix.php:2328
665
+ #: app/features/ix.php:2369 app/features/mec/settings.php:1169
666
+ #: app/features/mec/settings.php:1189
667
  msgid "Title"
668
  msgstr ""
669
 
670
+ #: app/features/events.php:666 app/features/events.php:718
671
+ msgid "Add new hourly schedule row"
672
+ msgstr ""
673
+
674
+ #: app/features/events.php:671 app/features/events.php:691
675
+ #: app/features/events.php:726
676
+ msgid "From e.g. 8:15"
677
+ msgstr ""
678
+
679
+ #: app/features/events.php:672 app/features/events.php:692
680
+ #: app/features/events.php:727
681
+ msgid "To e.g. 8:45"
682
+ msgstr ""
683
+
684
+ #: app/features/events.php:674 app/features/events.php:694
685
+ #: app/features/events.php:729 app/features/events.php:884
686
+ #: app/features/events.php:954
687
  msgid "Description"
688
  msgstr ""
689
 
690
+ #: app/features/events.php:675 app/features/events.php:695
691
+ #: app/features/events.php:730 app/features/events.php:903
692
+ #: app/features/events.php:973 app/features/events.php:1029
693
+ #: app/features/events.php:1054 app/features/events.php:1107
694
+ #: app/features/events.php:1129 app/features/fes/list.php:72
695
+ #: app/features/mec/settings.php:1118 app/features/mec/settings.php:1141
696
+ #: app/features/mec/settings.php:1180 app/features/mec/settings.php:1200
697
+ #: app/libraries/main.php:2046 app/libraries/main.php:2075
698
+ #: app/libraries/main.php:2104 app/libraries/main.php:2133
699
+ #: app/libraries/main.php:2155 app/libraries/main.php:2186
700
+ #: app/libraries/main.php:2230 app/libraries/main.php:2274
701
+ #: app/libraries/main.php:2321 app/libraries/main.php:2359
702
  msgid "Remove"
703
  msgstr ""
704
 
705
+ #: app/features/events.php:678 app/features/events.php:698
706
+ #: app/features/events.php:733 app/features/fes/form.php:611
707
+ #: app/features/mec.php:206 app/features/mec/settings.php:72
708
+ #: app/features/mec/settings.php:908 app/features/speakers.php:57
709
+ #: app/libraries/main.php:4158 app/modules/speakers/details.php:18
710
+ msgid "Speakers"
711
+ msgstr ""
712
+
713
+ #: app/features/events.php:710 app/features/events.php:714
714
+ msgid "Day :dd:"
715
+ msgstr ""
716
+
717
+ #: app/features/events.php:759 app/features/fes/form.php:456
718
+ #: app/features/mec/settings.php:854
719
  msgid "Event Links"
720
  msgstr ""
721
 
722
+ #: app/features/events.php:761 app/features/fes/form.php:458
723
+ #: app/libraries/main.php:4181
724
  msgid "Event Link"
725
  msgstr ""
726
 
727
+ #: app/features/events.php:762 app/features/events.php:767
728
  #: app/features/fes/form.php:459 app/features/fes/form.php:464
729
  msgid "eg. http://yoursite.com/your-event"
730
  msgstr ""
731
 
732
+ #: app/features/events.php:763 app/features/fes/form.php:460
733
  msgid ""
734
  "If you fill it, it will be replaced instead of default event page link. "
735
  "Insert full link including http(s)://"
736
  msgstr ""
737
 
738
+ #: app/features/events.php:766 app/features/fes/form.php:463
739
+ #: app/libraries/main.php:4182 app/skins/single/default.php:104
740
+ #: app/skins/single/default.php:309 app/skins/single/m1.php:188
741
+ #: app/skins/single/m2.php:120 app/skins/single/modern.php:118
742
+ #: app/widgets/single.php:107
743
  msgid "More Info"
744
  msgstr ""
745
 
746
+ #: app/features/events.php:768 app/features/fes/form.php:465
747
  msgid "More Information"
748
  msgstr ""
749
 
750
+ #: app/features/events.php:770 app/features/fes/form.php:467
751
  msgid "Current Window"
752
  msgstr ""
753
 
754
+ #: app/features/events.php:771 app/features/fes/form.php:468
755
  msgid "New Window"
756
  msgstr ""
757
 
758
+ #: app/features/events.php:773 app/features/fes/form.php:470
759
  msgid ""
760
  "If you fill it, it will be shown in event details page as an optional link. "
761
  "Insert full link including http(s)://"
762
  msgstr ""
763
 
764
+ #: app/features/events.php:804
765
  msgid "Total booking limits"
766
  msgstr ""
767
 
768
+ #: app/features/events.php:809 app/features/events.php:901
769
+ #: app/features/events.php:971 app/modules/booking/default.php:82
770
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:99
771
  msgid "Unlimited"
772
  msgstr ""
773
 
774
+ #: app/features/events.php:811
775
  msgid "100"
776
  msgstr ""
777
 
778
+ #: app/features/events.php:829 app/libraries/book.php:60
779
+ #: app/libraries/main.php:4186 app/modules/booking/steps/tickets.php:38
780
  msgid "Tickets"
781
  msgstr ""
782
 
783
+ #: app/features/events.php:832
784
  msgid ""
785
  "You're translating an event so MEC will use the original event for tickets "
786
  "and booking. You can only translate the ticket name and description. Please "
787
  "define exact tickets that you defined in the original event here."
788
  msgstr ""
789
 
790
+ #: app/features/events.php:843 app/features/events.php:913
791
  msgid "Ticket Name"
792
  msgstr ""
793
 
794
+ #: app/features/events.php:847 app/features/events.php:917
795
+ #: app/features/events.php:1894 app/features/events.php:1938
796
  #: app/features/ix.php:2328 app/features/ix.php:2369
797
  msgid "Start Time"
798
  msgstr ""
799
 
800
+ #: app/features/events.php:865 app/features/events.php:935
801
+ #: app/features/events.php:1894 app/features/events.php:1938
802
  #: app/features/ix.php:2328 app/features/ix.php:2369
803
  msgid "End Time"
804
  msgstr ""
805
 
806
+ #: app/features/events.php:888 app/features/events.php:958
807
+ #: app/features/events.php:1100 app/features/events.php:1122
808
+ #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1193
809
  msgid "Price"
810
  msgstr ""
811
 
812
+ #: app/features/events.php:889 app/features/events.php:959
813
  msgid "Insert 0 for free ticket. Only numbers please."
814
  msgstr ""
815
 
816
+ #: app/features/events.php:892 app/features/events.php:962
817
  msgid "Price Label"
818
  msgstr ""
819
 
820
+ #: app/features/events.php:893 app/features/events.php:963
821
  msgid "For showing on website. e.g. $15"
822
  msgstr ""
823
 
824
+ #: app/features/events.php:897 app/features/events.php:967
825
  msgid "Available Tickets"
826
  msgstr ""
827
 
828
+ #: app/features/events.php:999
829
  msgid "Fees"
830
  msgstr ""
831
 
832
+ #: app/features/events.php:1004 app/features/events.php:1085
833
+ #: app/features/events.php:1160
834
  msgid "Inherit from global options"
835
  msgstr ""
836
 
837
+ #: app/features/events.php:1015 app/features/events.php:1040
838
+ #: app/features/mec/settings.php:1104 app/features/mec/settings.php:1127
839
  msgid "Fee Title"
840
  msgstr ""
841
 
842
+ #: app/features/events.php:1019 app/features/events.php:1044
843
+ #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1131
844
  msgid "Amount"
845
  msgstr ""
846
 
847
+ #: app/features/events.php:1020 app/features/events.php:1045
848
+ #: app/features/mec/settings.php:1109 app/features/mec/settings.php:1132
849
  msgid ""
850
  "Fee amount, considered as fixed amount if you set the type to amount "
851
  "otherwise considered as percentage"
852
  msgstr ""
853
 
854
+ #: app/features/events.php:1024 app/features/events.php:1049
855
+ #: app/features/mec/settings.php:1113 app/features/mec/settings.php:1136
856
  msgid "Percent"
857
  msgstr ""
858
 
859
+ #: app/features/events.php:1025 app/features/events.php:1050
860
+ #: app/features/mec/settings.php:1114 app/features/mec/settings.php:1137
861
  msgid "Amount (Per Ticket)"
862
  msgstr ""
863
 
864
+ #: app/features/events.php:1026 app/features/events.php:1051
865
+ #: app/features/mec/settings.php:1115 app/features/mec/settings.php:1138
866
  msgid "Amount (Per Booking)"
867
  msgstr ""
868
 
869
+ #: app/features/events.php:1080 app/features/mec/settings.php:932
870
+ msgid "Ticket Variations / Options"
871
+ msgstr ""
872
+
873
+ #: app/features/events.php:1101 app/features/events.php:1123
874
+ #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1194
875
+ msgid "Option Price"
876
+ msgstr ""
877
+
878
+ #: app/features/events.php:1104 app/features/events.php:1126
879
+ #: app/features/mec/settings.php:1177 app/features/mec/settings.php:1197
880
+ msgid "Maximum Per Ticket"
881
+ msgstr ""
882
+
883
+ #: app/features/events.php:1105 app/features/events.php:1127
884
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1198
885
+ msgid "Maximum Per Ticket. Leave it blank for unlimited."
886
+ msgstr ""
887
+
888
+ #: app/features/events.php:1189 app/features/mec/regform.php:117
889
+ #: app/libraries/main.php:2038
890
  msgid "Text"
891
  msgstr ""
892
 
893
+ #: app/features/events.php:1191 app/features/mec/regform.php:119
894
  #: app/features/organizers.php:102 app/features/organizers.php:146
895
+ #: app/features/speakers.php:111 app/features/speakers.php:175
896
+ #: app/features/speakers.php:244 app/libraries/main.php:2096
897
  msgid "Tel"
898
  msgstr ""
899
 
900
+ #: app/features/events.php:1192 app/features/mec/regform.php:120
901
+ #: app/libraries/main.php:2125
902
  msgid "Textarea"
903
  msgstr ""
904
 
905
+ #: app/features/events.php:1193 app/features/mec/regform.php:121
906
+ #: app/libraries/main.php:2178
907
  msgid "Checkboxes"
908
  msgstr ""
909
 
910
+ #: app/features/events.php:1194 app/features/mec/regform.php:122
911
+ #: app/libraries/main.php:2222
912
  msgid "Radio Buttons"
913
  msgstr ""
914
 
915
+ #: app/features/events.php:1195 app/features/mec/meta_boxes/search_form.php:34
916
  #: app/features/mec/meta_boxes/search_form.php:41
917
  #: app/features/mec/meta_boxes/search_form.php:48
918
  #: app/features/mec/meta_boxes/search_form.php:55
928
  #: app/features/mec/meta_boxes/search_form.php:149
929
  #: app/features/mec/meta_boxes/search_form.php:156
930
  #: app/features/mec/meta_boxes/search_form.php:175
931
+ #: app/features/mec/meta_boxes/search_form.php:182
932
  #: app/features/mec/meta_boxes/search_form.php:201
933
  #: app/features/mec/meta_boxes/search_form.php:208
934
  #: app/features/mec/meta_boxes/search_form.php:215
935
  #: app/features/mec/meta_boxes/search_form.php:222
936
+ #: app/features/mec/meta_boxes/search_form.php:229
937
  #: app/features/mec/meta_boxes/search_form.php:248
938
  #: app/features/mec/meta_boxes/search_form.php:255
939
  #: app/features/mec/meta_boxes/search_form.php:262
940
  #: app/features/mec/meta_boxes/search_form.php:269
941
+ #: app/features/mec/meta_boxes/search_form.php:276
942
  #: app/features/mec/meta_boxes/search_form.php:295
943
  #: app/features/mec/meta_boxes/search_form.php:302
944
  #: app/features/mec/meta_boxes/search_form.php:309
945
+ #: app/features/mec/meta_boxes/search_form.php:316
946
  #: app/features/mec/meta_boxes/search_form.php:335
947
  #: app/features/mec/meta_boxes/search_form.php:342
948
  #: app/features/mec/meta_boxes/search_form.php:349
949
  #: app/features/mec/meta_boxes/search_form.php:356
950
+ #: app/features/mec/meta_boxes/search_form.php:363
951
  #: app/features/mec/meta_boxes/search_form.php:382
952
  #: app/features/mec/meta_boxes/search_form.php:389
953
  #: app/features/mec/meta_boxes/search_form.php:396
954
  #: app/features/mec/meta_boxes/search_form.php:403
955
+ #: app/features/mec/meta_boxes/search_form.php:410
956
  #: app/features/mec/meta_boxes/search_form.php:429
957
  #: app/features/mec/meta_boxes/search_form.php:436
958
  #: app/features/mec/meta_boxes/search_form.php:443
959
  #: app/features/mec/meta_boxes/search_form.php:450
960
+ #: app/features/mec/meta_boxes/search_form.php:457
961
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2266
962
  msgid "Dropdown"
963
  msgstr ""
964
 
965
+ #: app/features/events.php:1196 app/features/mec/regform.php:124
966
+ #: app/libraries/main.php:2313
967
  msgid "Agreement"
968
  msgstr ""
969
 
970
+ #: app/features/events.php:1197 app/features/mec/regform.php:125
971
+ #: app/libraries/main.php:2154
972
  msgid "Paragraph"
973
  msgstr ""
974
 
975
+ #: app/features/events.php:1658 app/features/events.php:1673
976
+ #: app/features/events.php:1687
977
  #, php-format
978
  msgid "Show all %s"
979
  msgstr ""
980
 
981
+ #: app/features/events.php:1658
982
  msgid "labels"
983
  msgstr ""
984
 
985
+ #: app/features/events.php:1673
986
  msgid "locations"
987
  msgstr ""
988
 
989
+ #: app/features/events.php:1687
990
  msgid "organizers"
991
  msgstr ""
992
 
993
+ #: app/features/events.php:1713 app/features/events.php:1894
994
+ #: app/features/events.php:1938 app/features/ix.php:2328
995
  #: app/features/ix.php:2369 app/features/locations.php:58
996
  #: app/features/locations.php:229 app/features/locations.php:281
997
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:106
998
+ #: app/features/mec/meta_boxes/display_options.php:659
999
  #: app/features/mec/meta_boxes/search_form.php:38
1000
  #: app/features/mec/meta_boxes/search_form.php:85
1001
  #: app/features/mec/meta_boxes/search_form.php:132
1002
+ #: app/features/mec/meta_boxes/search_form.php:205
1003
+ #: app/features/mec/meta_boxes/search_form.php:252
1004
+ #: app/features/mec/meta_boxes/search_form.php:299
1005
+ #: app/features/mec/meta_boxes/search_form.php:339
1006
+ #: app/features/mec/meta_boxes/search_form.php:386
1007
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1576
1008
+ #: app/libraries/main.php:4155 app/libraries/skins.php:738
1009
+ #: app/skins/single/default.php:140 app/skins/single/default.php:345
1010
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1011
+ #: app/skins/single/modern.php:81
1012
  msgid "Location"
1013
  msgstr ""
1014
 
1015
+ #: app/features/events.php:1714 app/features/events.php:1894
1016
+ #: app/features/events.php:1938 app/features/ix.php:2328
1017
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:113
1018
+ #: app/features/mec/meta_boxes/display_options.php:660
1019
  #: app/features/mec/meta_boxes/search_form.php:45
1020
  #: app/features/mec/meta_boxes/search_form.php:92
1021
  #: app/features/mec/meta_boxes/search_form.php:139
1022
+ #: app/features/mec/meta_boxes/search_form.php:212
1023
+ #: app/features/mec/meta_boxes/search_form.php:259
1024
+ #: app/features/mec/meta_boxes/search_form.php:306
1025
+ #: app/features/mec/meta_boxes/search_form.php:346
1026
+ #: app/features/mec/meta_boxes/search_form.php:393
1027
+ #: app/features/mec/meta_boxes/search_form.php:440
1028
  #: app/features/organizers.php:58 app/features/organizers.php:199
1029
  #: app/features/organizers.php:255 app/features/organizers.php:257
1030
+ #: app/libraries/main.php:4157 app/libraries/skins.php:764
1031
+ #: app/skins/single/default.php:180 app/skins/single/default.php:385
1032
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1033
  #: app/skins/single/modern.php:21
1034
  msgid "Organizer"
1035
  msgstr ""
1036
 
1037
+ #: app/features/events.php:1718
1038
  msgid "Repeat"
1039
  msgstr ""
1040
 
1041
+ #: app/features/events.php:1719
1042
  msgid "Author"
1043
  msgstr ""
1044
 
1045
+ #: app/features/events.php:1829 app/features/events.php:1830
1046
  msgid "iCal Export"
1047
  msgstr ""
1048
 
1049
+ #: app/features/events.php:1832 app/features/events.php:1833
1050
  msgid "CSV Export"
1051
  msgstr ""
1052
 
1053
+ #: app/features/events.php:1835 app/features/events.php:1836
1054
  msgid "MS Excel Export"
1055
  msgstr ""
1056
 
1057
+ #: app/features/events.php:1838 app/features/events.php:1839
1058
  msgid "XML Export"
1059
  msgstr ""
1060
 
1061
+ #: app/features/events.php:1841 app/features/events.php:1842
1062
  msgid "JSON Export"
1063
  msgstr ""
1064
 
1065
+ #: app/features/events.php:1844 app/features/events.php:1845
1066
  msgid "Duplicate"
1067
  msgstr ""
1068
 
1069
+ #: app/features/events.php:1894 app/features/events.php:1938
1070
  #: app/features/ix.php:2328 app/features/ix.php:2369
1071
+ #: app/features/labels.php:176 app/features/locations.php:228
1072
+ #: app/features/organizers.php:198 app/features/speakers.php:241
1073
  msgid "ID"
1074
  msgstr ""
1075
 
1076
+ #: app/features/events.php:1894 app/features/events.php:1938
1077
  #: app/features/ix.php:2328 app/features/ix.php:2369
1078
  msgid "Link"
1079
  msgstr ""
1080
 
1081
+ #: app/features/events.php:1894 app/features/events.php:1938
1082
  #, php-format
1083
  msgid "%s Tel"
1084
  msgstr ""
1085
 
1086
+ #: app/features/events.php:1894 app/features/events.php:1938
1087
  #, php-format
1088
  msgid "%s Email"
1089
  msgstr ""
1126
  msgid "Captcha is invalid! Please try again."
1127
  msgstr ""
1128
 
1129
+ #: app/features/fes.php:264
1130
  msgid "Please fill event title field!"
1131
  msgstr ""
1132
 
1133
+ #: app/features/fes.php:795
1134
  msgid "The event submitted. It will publish as soon as possible."
1135
  msgstr ""
1136
 
1137
+ #: app/features/fes.php:796
1138
  msgid "The event published."
1139
  msgstr ""
1140
 
1146
  msgid "Note to reviewer"
1147
  msgstr ""
1148
 
1149
+ #: app/features/fes/form.php:416 app/features/fes/form.php:626
1150
  msgid "Submit"
1151
  msgstr ""
1152
 
1162
  msgid "eg. John Smith"
1163
  msgstr ""
1164
 
1165
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:866
1166
  msgid "Featured Image"
1167
  msgstr ""
1168
 
1171
  msgstr ""
1172
 
1173
  #: app/features/fes/form.php:543 app/features/labels.php:61
1174
+ #: app/features/labels.php:220 app/features/mec.php:199
1175
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4152
1176
+ #: app/skins/single/default.php:119 app/skins/single/default.php:324
1177
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:197
1178
  msgid "Labels"
1179
  msgstr ""
1180
 
1181
+ #: app/features/fes/form.php:588 app/features/mec.php:197
1182
  #: app/features/mec/meta_boxes/filter.php:138
1183
  msgid "Tags"
1184
  msgstr ""
1335
  "This will export all of your website events' data into your desired format."
1336
  msgstr ""
1337
 
1338
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:667
1339
  msgid "iCal"
1340
  msgstr ""
1341
 
1437
  msgid "Add to Google Calendar"
1438
  msgstr ""
1439
 
1440
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1354
1441
  msgid "Checking ..."
1442
  msgstr ""
1443
 
1479
  msgid "ICS Feed"
1480
  msgstr ""
1481
 
1482
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:548
1483
+ #: app/features/mec/settings.php:698 app/features/mec/settings.php:716
1484
+ #: app/features/mec/settings.php:981 app/features/mec/settings.php:1071
1485
+ #: app/features/mec/settings.php:1088 app/features/mec/settings.php:1153
1486
  #, php-format
1487
  msgid "%s is required to use this feature."
1488
  msgstr ""
1489
 
1490
  #: app/features/ix/import.php:45 app/features/ix/sync.php:21
1491
+ #: app/features/mec/meta_boxes/display_options.php:224
1492
+ #: app/features/mec/meta_boxes/display_options.php:379
1493
+ #: app/features/mec/meta_boxes/display_options.php:469
1494
+ #: app/features/mec/meta_boxes/display_options.php:576
1495
+ #: app/features/mec/meta_boxes/display_options.php:626
1496
+ #: app/features/mec/meta_boxes/display_options.php:764
1497
+ #: app/features/mec/settings.php:548 app/features/mec/settings.php:698
1498
+ #: app/features/mec/settings.php:716 app/features/mec/settings.php:981
1499
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1088
1500
+ #: app/features/mec/settings.php:1153 app/features/mec/settings.php:1278
1501
+ #: app/libraries/skins.php:248
1502
  msgid "Pro version of Modern Events Calendar"
1503
  msgstr ""
1504
 
1595
  msgstr ""
1596
 
1597
  #: app/features/ix/sync.php:21
1598
+ #: app/features/mec/meta_boxes/display_options.php:626
1599
  #, php-format
1600
  msgid "%s is required to use synchronization feature."
1601
  msgstr ""
1693
  msgstr ""
1694
 
1695
  #: app/features/labels.php:60
1696
+ #: app/features/mec/meta_boxes/display_options.php:658
1697
  #: app/features/mec/meta_boxes/search_form.php:52
1698
  #: app/features/mec/meta_boxes/search_form.php:99
1699
  #: app/features/mec/meta_boxes/search_form.php:146
1700
+ #: app/features/mec/meta_boxes/search_form.php:219
1701
+ #: app/features/mec/meta_boxes/search_form.php:266
1702
+ #: app/features/mec/meta_boxes/search_form.php:313
1703
+ #: app/features/mec/meta_boxes/search_form.php:353
1704
+ #: app/features/mec/meta_boxes/search_form.php:400
1705
+ #: app/features/mec/meta_boxes/search_form.php:447 app/libraries/skins.php:790
1706
  msgid "Label"
1707
  msgstr ""
1708
 
1709
+ #: app/features/labels.php:102 app/features/labels.php:133
1710
+ #: app/features/labels.php:178
1711
  msgid "Color"
1712
  msgstr ""
1713
 
1714
+ #: app/features/labels.php:106 app/features/labels.php:135
1715
  msgid "Select label color"
1716
  msgstr ""
1717
 
1718
+ #: app/features/labels.php:111 app/features/labels.php:138
1719
+ #: app/features/mec/meta_boxes/display_options.php:32
1720
+ #: app/features/mec/meta_boxes/display_options.php:127
1721
+ #: app/features/mec/meta_boxes/display_options.php:229
1722
+ #: app/features/mec/meta_boxes/display_options.php:384
1723
+ #: app/features/mec/meta_boxes/display_options.php:428
1724
+ #: app/features/mec/meta_boxes/display_options.php:581
1725
+ #: app/features/mec/meta_boxes/display_options.php:682
1726
+ #: app/features/mec/meta_boxes/display_options.php:721
1727
+ #: app/features/mec/meta_boxes/display_options.php:789
1728
+ #: app/features/mec/meta_boxes/display_options.php:849
1729
+ msgid "Style"
1730
+ msgstr ""
1731
+
1732
+ #: app/features/labels.php:115 app/features/labels.php:140
1733
+ msgid "Normal"
1734
+ msgstr ""
1735
+
1736
+ #: app/features/labels.php:116 app/features/labels.php:141
1737
+ #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
1738
+ #: app/skins/carousel/render.php:29 app/skins/countdown/tpl.php:24
1739
+ #: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:22
1740
+ #: app/skins/grid/render.php:49 app/skins/list/render.php:35
1741
+ #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
1742
+ #: app/skins/monthly_view/calendar_clean.php:81
1743
+ #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:48
1744
+ #: app/skins/timetable/render.php:32 app/skins/timetable/render.php:95
1745
+ #: app/skins/weekly_view/render.php:30 app/skins/yearly_view/render.php:47
1746
+ msgid "Featured"
1747
+ msgstr ""
1748
+
1749
+ #: app/features/labels.php:117 app/features/labels.php:142
1750
+ #: app/skins/agenda/render.php:41 app/skins/available_spot/tpl.php:35
1751
+ #: app/skins/carousel/render.php:33 app/skins/countdown/tpl.php:28
1752
+ #: app/skins/cover/tpl.php:31 app/skins/daily_view/render.php:26
1753
+ #: app/skins/grid/render.php:53 app/skins/list/render.php:39
1754
+ #: app/skins/masonry/render.php:32 app/skins/monthly_view/calendar.php:84
1755
+ #: app/skins/monthly_view/calendar_clean.php:85
1756
+ #: app/skins/monthly_view/calendar_novel.php:81 app/skins/slider/render.php:52
1757
+ #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
1758
+ #: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:51
1759
+ msgid "Canceled"
1760
+ msgstr ""
1761
+
1762
+ #: app/features/labels.php:119 app/features/labels.php:144
1763
+ msgid "You can show featured and canceled events by a different style!"
1764
+ msgstr ""
1765
+
1766
+ #: app/features/labels.php:179 app/features/locations.php:231
1767
+ #: app/features/organizers.php:201 app/features/speakers.php:245
1768
+ #: app/modules/booking/steps/tickets.php:36
1769
  msgid "Count"
1770
  msgstr ""
1771
 
1772
+ #: app/features/labels.php:180 app/features/locations.php:232
1773
  #: app/features/organizers.php:202
1774
  msgid "Slug"
1775
  msgstr ""
1776
 
1777
+ #: app/features/labels.php:220 app/features/locations.php:281
1778
  #, php-format
1779
  msgid "Event %s"
1780
  msgstr ""
1781
 
1782
+ #: app/features/locations.php:59 app/features/mec.php:200
1783
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4154
1784
  msgid "Locations"
1785
  msgstr ""
1786
 
1813
 
1814
  #: app/features/locations.php:137 app/features/locations.php:179
1815
  #: app/features/organizers.php:126 app/features/organizers.php:158
1816
+ #: app/features/speakers.php:151 app/features/speakers.php:195
1817
  msgid "Thumbnail"
1818
  msgstr ""
1819
 
1820
  #: app/features/locations.php:142 app/features/locations.php:182
1821
  #: app/features/organizers.php:131 app/features/organizers.php:161
1822
+ #: app/features/speakers.php:156 app/features/speakers.php:198
1823
  msgid "Upload/Add image"
1824
  msgstr ""
1825
 
1827
  #: app/features/locations.php:322 app/features/locations.php:329
1828
  #: app/features/organizers.php:132 app/features/organizers.php:162
1829
  #: app/features/organizers.php:288 app/features/organizers.php:295
1830
+ #: app/features/speakers.php:157 app/features/speakers.php:199
1831
  msgid "Remove image"
1832
  msgstr ""
1833
 
1851
  msgid "eg. City Hall"
1852
  msgstr ""
1853
 
1854
+ #: app/features/locations.php:298 app/features/mec/settings.php:896
1855
+ #: app/widgets/single.php:115
1856
  msgid "Event Location"
1857
  msgstr ""
1858
 
1874
  msgid "Don't show map in single event page"
1875
  msgstr ""
1876
 
1877
+ #: app/features/mec.php:201 app/features/mec/meta_boxes/filter.php:104
1878
+ #: app/features/organizers.php:59 app/libraries/main.php:4156
1879
  msgid "Organizers"
1880
  msgstr ""
1881
 
1882
+ #: app/features/mec.php:209 app/features/mec.php:223
1883
+ #: app/features/mec/dashboard.php:99
1884
  msgid "Shortcodes"
1885
  msgstr ""
1886
 
1887
+ #: app/features/mec.php:210
1888
  msgid "MEC - Settings"
1889
  msgstr ""
1890
 
1891
+ #: app/features/mec.php:225
1892
  msgid "Add Shortcode"
1893
  msgstr ""
1894
 
1895
+ #: app/features/mec.php:226
1896
  msgid "Add New Shortcode"
1897
  msgstr ""
1898
 
1899
+ #: app/features/mec.php:227
1900
  msgid "No shortcodes found!"
1901
  msgstr ""
1902
 
1903
+ #: app/features/mec.php:228
1904
  msgid "All Shortcodes"
1905
  msgstr ""
1906
 
1907
+ #: app/features/mec.php:229
1908
  msgid "Edit shortcodes"
1909
  msgstr ""
1910
 
1911
+ #: app/features/mec.php:230
1912
  msgid "No shortcodes found in Trash!"
1913
  msgstr ""
1914
 
1915
+ #: app/features/mec.php:277
1916
  msgid "Display Options"
1917
  msgstr ""
1918
 
1919
+ #: app/features/mec.php:278
1920
  msgid "Filter Options"
1921
  msgstr ""
1922
 
1923
+ #: app/features/mec.php:280
1924
  msgid "Search Form"
1925
  msgstr ""
1926
 
1927
+ #: app/features/mec.php:568
1928
  msgid "Single Event Display Method"
1929
  msgstr ""
1930
 
1931
+ #: app/features/mec.php:573
1932
  msgid "Separate Window"
1933
  msgstr ""
1934
 
1935
+ #: app/features/mec.php:574
1936
  msgid "Modal 1"
1937
  msgstr ""
1938
 
1954
  msgid "Modern Event Calendar (Lite)"
1955
  msgstr ""
1956
 
1957
+ #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
1958
+ msgid "Rate the plugin ★★★★★"
1959
+ msgstr ""
1960
+
1961
+ #: app/features/mec/dashboard.php:73
1962
  msgid "Version"
1963
  msgstr ""
1964
 
1965
+ #: app/features/mec/dashboard.php:82
1966
  #, php-format
1967
  msgid ""
1968
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1970
  "Spots, etc you should %s to the Pro version."
1971
  msgstr ""
1972
 
1973
+ #: app/features/mec/dashboard.php:82
1974
  msgid "lite"
1975
  msgstr ""
1976
 
1977
+ #: app/features/mec/dashboard.php:82
1978
  msgid "upgrade"
1979
  msgstr ""
1980
 
1981
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:91
1982
  msgid "Documentation"
1983
  msgstr ""
1984
 
1985
+ #: app/features/mec/dashboard.php:124 app/features/mec/support.php:95
1986
  msgid ""
1987
  "Our documentation is simple and functional with full details and cover all "
1988
  "essential aspects from beginning to the most advanced parts."
1989
  msgstr ""
1990
 
1991
+ #: app/features/mec/dashboard.php:126 app/features/mec/support.php:98
1992
  msgid "DOCUMENTATION"
1993
  msgstr ""
1994
 
1995
+ #: app/features/mec/dashboard.php:135 app/features/mec/support.php:107
1996
  msgid "Support Forum"
1997
  msgstr ""
1998
 
1999
+ #: app/features/mec/dashboard.php:139 app/features/mec/support.php:111
2000
  msgid ""
2001
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2002
  "If you want to use this service you need to upgrade your plugin to Pro "
2003
  "version. Click on the following button."
2004
  msgstr ""
2005
 
2006
+ #: app/features/mec/dashboard.php:141 app/features/mec/support.php:113
2007
  msgid ""
2008
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2009
  "If you have any issues please don't hesitate to contact us, we will reply as "
2010
  "soon as possible."
2011
  msgstr ""
2012
 
2013
+ #: app/features/mec/dashboard.php:145 app/features/mec/support.php:117
2014
  msgid "GO PREMIUM"
2015
  msgstr ""
2016
 
2017
+ #: app/features/mec/dashboard.php:147 app/features/mec/support.php:119
2018
  msgid "OPEN A TICKET"
2019
  msgstr ""
2020
 
2021
+ #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:395
2022
  msgid "Upcoming Events"
2023
  msgstr ""
2024
 
2025
+ #: app/features/mec/dashboard.php:184
2026
  msgid "Popular Gateways"
2027
  msgstr ""
2028
 
2029
+ #: app/features/mec/dashboard.php:235
2030
  msgid "Total Bookings"
2031
  msgstr ""
2032
 
2033
+ #: app/features/mec/dashboard.php:262
2034
  msgid "This Month"
2035
  msgstr ""
2036
 
2037
+ #: app/features/mec/dashboard.php:263
2038
  msgid "Last Month"
2039
  msgstr ""
2040
 
2041
+ #: app/features/mec/dashboard.php:264
2042
  msgid "This Year"
2043
  msgstr ""
2044
 
2045
+ #: app/features/mec/dashboard.php:265
2046
  msgid "Last Year"
2047
  msgstr ""
2048
 
2049
+ #: app/features/mec/dashboard.php:277
2050
  msgid "Bar"
2051
  msgstr ""
2052
 
2053
+ #: app/features/mec/dashboard.php:278
2054
  msgid "Line"
2055
  msgstr ""
2056
 
2057
+ #: app/features/mec/dashboard.php:280
2058
  msgid "Filter"
2059
  msgstr ""
2060
 
2061
+ #: app/features/mec/dashboard.php:296
2062
  #, php-format
2063
  msgid "Total Sells (%s)"
2064
  msgstr ""
2065
 
2066
+ #: app/features/mec/dashboard.php:317
2067
  msgid "Change Log"
2068
  msgstr ""
2069
 
2070
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2071
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2072
+ #: app/features/mec/settings.php:222 app/features/mec/styles.php:52
2073
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2074
  msgid "Styling Options"
2075
  msgstr ""
2076
 
2077
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2078
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2079
+ #: app/features/mec/settings.php:229 app/features/mec/styles.php:59
2080
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2081
  msgid "Custom CSS"
2082
  msgstr ""
2083
 
2084
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2085
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2086
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:236
2087
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2088
  #: app/features/mec/support.php:64
2089
  msgid "Messages"
2091
 
2092
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2093
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2094
+ #: app/features/mec/settings.php:243 app/features/mec/styles.php:73
2095
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2096
  #: app/features/mec/support.php:84
2097
  msgid "Support"
2104
  #: app/features/mec/notifications.php:425
2105
  #: app/features/mec/notifications.php:433 app/features/mec/regform.php:130
2106
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2107
+ #: app/features/mec/settings.php:251 app/features/mec/settings.php:1316
2108
+ #: app/features/mec/settings.php:1324 app/features/mec/settings.php:1368
2109
+ #: app/features/mec/settings.php:1381 app/features/mec/styles.php:96
2110
  #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2111
  #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2112
  #: app/features/mec/styling.php:335
2115
 
2116
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2117
  #: app/features/mec/notifications.php:413 app/features/mec/regform.php:190
2118
+ #: app/features/mec/settings.php:1349 app/features/mec/styles.php:123
2119
  #: app/features/mec/styling.php:313
2120
  msgid "Saved"
2121
  msgstr ""
2122
 
2123
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2124
  #: app/features/mec/notifications.php:414 app/features/mec/regform.php:191
2125
+ #: app/features/mec/settings.php:1350 app/features/mec/styles.php:124
2126
  #: app/features/mec/styling.php:314
2127
  msgid "Settings Saved!"
2128
  msgstr ""
2139
  msgid "Skin"
2140
  msgstr ""
2141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2142
  #: app/features/mec/meta_boxes/display_options.php:34
2143
+ #: app/features/mec/meta_boxes/display_options.php:129
2144
+ #: app/features/mec/meta_boxes/display_options.php:430
2145
+ #: app/features/mec/meta_boxes/display_options.php:684
2146
  msgid "Classic"
2147
  msgstr ""
2148
 
2149
  #: app/features/mec/meta_boxes/display_options.php:35
2150
+ #: app/features/mec/meta_boxes/display_options.php:131
2151
  msgid "Minimal"
2152
  msgstr ""
2153
 
2154
  #: app/features/mec/meta_boxes/display_options.php:36
2155
+ #: app/features/mec/meta_boxes/display_options.php:132
2156
+ #: app/features/mec/meta_boxes/display_options.php:386
2157
+ #: app/features/mec/meta_boxes/display_options.php:432
2158
+ #: app/features/mec/meta_boxes/display_options.php:583
2159
+ #: app/features/mec/meta_boxes/display_options.php:686
2160
  msgid "Modern"
2161
  msgstr ""
2162
 
2169
  msgstr ""
2170
 
2171
  #: app/features/mec/meta_boxes/display_options.php:44
2172
+ #: app/features/mec/meta_boxes/display_options.php:141
2173
+ #: app/features/mec/meta_boxes/display_options.php:237
2174
+ #: app/features/mec/meta_boxes/display_options.php:476
2175
+ #: app/features/mec/meta_boxes/display_options.php:509
2176
+ #: app/features/mec/meta_boxes/display_options.php:633
2177
+ #: app/features/mec/meta_boxes/display_options.php:799
2178
+ #: app/features/mec/meta_boxes/display_options.php:861
2179
  msgid "Today"
2180
  msgstr ""
2181
 
2182
  #: app/features/mec/meta_boxes/display_options.php:45
2183
+ #: app/features/mec/meta_boxes/display_options.php:142
2184
+ #: app/features/mec/meta_boxes/display_options.php:238
2185
+ #: app/features/mec/meta_boxes/display_options.php:477
2186
+ #: app/features/mec/meta_boxes/display_options.php:510
2187
+ #: app/features/mec/meta_boxes/display_options.php:634
2188
+ #: app/features/mec/meta_boxes/display_options.php:800
2189
+ #: app/features/mec/meta_boxes/display_options.php:862
2190
  msgid "Tomorrow"
2191
  msgstr ""
2192
 
2193
  #: app/features/mec/meta_boxes/display_options.php:46
2194
+ #: app/features/mec/meta_boxes/display_options.php:143
2195
+ #: app/features/mec/meta_boxes/display_options.php:239
2196
+ #: app/features/mec/meta_boxes/display_options.php:286
2197
+ #: app/features/mec/meta_boxes/display_options.php:439
2198
+ #: app/features/mec/meta_boxes/display_options.php:478
2199
+ #: app/features/mec/meta_boxes/display_options.php:511
2200
+ #: app/features/mec/meta_boxes/display_options.php:546
2201
+ #: app/features/mec/meta_boxes/display_options.php:592
2202
+ #: app/features/mec/meta_boxes/display_options.php:635
2203
+ #: app/features/mec/meta_boxes/display_options.php:801
2204
+ #: app/features/mec/meta_boxes/display_options.php:863
2205
  msgid "Start of Current Month"
2206
  msgstr ""
2207
 
2208
  #: app/features/mec/meta_boxes/display_options.php:47
2209
+ #: app/features/mec/meta_boxes/display_options.php:144
2210
+ #: app/features/mec/meta_boxes/display_options.php:240
2211
+ #: app/features/mec/meta_boxes/display_options.php:287
2212
+ #: app/features/mec/meta_boxes/display_options.php:440
2213
+ #: app/features/mec/meta_boxes/display_options.php:479
2214
+ #: app/features/mec/meta_boxes/display_options.php:512
2215
+ #: app/features/mec/meta_boxes/display_options.php:547
2216
+ #: app/features/mec/meta_boxes/display_options.php:593
2217
+ #: app/features/mec/meta_boxes/display_options.php:636
2218
+ #: app/features/mec/meta_boxes/display_options.php:802
2219
+ #: app/features/mec/meta_boxes/display_options.php:864
2220
  msgid "Start of Next Month"
2221
  msgstr ""
2222
 
2223
  #: app/features/mec/meta_boxes/display_options.php:48
2224
+ #: app/features/mec/meta_boxes/display_options.php:145
2225
+ #: app/features/mec/meta_boxes/display_options.php:241
2226
+ #: app/features/mec/meta_boxes/display_options.php:288
2227
+ #: app/features/mec/meta_boxes/display_options.php:394
2228
+ #: app/features/mec/meta_boxes/display_options.php:441
2229
+ #: app/features/mec/meta_boxes/display_options.php:480
2230
+ #: app/features/mec/meta_boxes/display_options.php:513
2231
+ #: app/features/mec/meta_boxes/display_options.php:548
2232
+ #: app/features/mec/meta_boxes/display_options.php:594
2233
+ #: app/features/mec/meta_boxes/display_options.php:637
2234
+ #: app/features/mec/meta_boxes/display_options.php:803
2235
+ #: app/features/mec/meta_boxes/display_options.php:865
2236
  msgid "On a certain date"
2237
  msgstr ""
2238
 
2239
  #: app/features/mec/meta_boxes/display_options.php:51
2240
+ #: app/features/mec/meta_boxes/display_options.php:148
2241
+ #: app/features/mec/meta_boxes/display_options.php:244
2242
+ #: app/features/mec/meta_boxes/display_options.php:291
2243
+ #: app/features/mec/meta_boxes/display_options.php:397
2244
+ #: app/features/mec/meta_boxes/display_options.php:444
2245
+ #: app/features/mec/meta_boxes/display_options.php:483
2246
+ #: app/features/mec/meta_boxes/display_options.php:517
2247
+ #: app/features/mec/meta_boxes/display_options.php:551
2248
+ #: app/features/mec/meta_boxes/display_options.php:597
2249
+ #: app/features/mec/meta_boxes/display_options.php:640
2250
+ #: app/features/mec/meta_boxes/display_options.php:806
2251
+ #: app/features/mec/meta_boxes/display_options.php:868
2252
  #, php-format
2253
  msgid "eg. %s"
2254
  msgstr ""
2258
  #: app/features/mec/meta_boxes/display_options.php:67
2259
  #: app/features/mec/meta_boxes/display_options.php:74
2260
  #: app/features/mec/meta_boxes/display_options.php:79
2261
+ #: app/features/mec/meta_boxes/display_options.php:152
2262
+ #: app/features/mec/meta_boxes/display_options.php:157
2263
+ #: app/features/mec/meta_boxes/display_options.php:163
2264
+ #: app/features/mec/meta_boxes/display_options.php:169
2265
+ #: app/features/mec/meta_boxes/display_options.php:176
2266
+ #: app/features/mec/meta_boxes/display_options.php:181
2267
+ #: app/features/mec/meta_boxes/display_options.php:188
2268
+ #: app/features/mec/meta_boxes/display_options.php:248
2269
+ #: app/features/mec/meta_boxes/display_options.php:401
2270
+ #: app/features/mec/meta_boxes/display_options.php:644
2271
+ #: app/features/mec/meta_boxes/display_options.php:690
2272
+ #: app/features/mec/meta_boxes/display_options.php:697
2273
+ #: app/features/mec/meta_boxes/display_options.php:703
2274
+ #: app/features/mec/meta_boxes/display_options.php:729
2275
+ #: app/features/mec/meta_boxes/display_options.php:734
 
2276
  #: app/features/mec/meta_boxes/display_options.php:739
2277
+ #: app/features/mec/meta_boxes/display_options.php:769
2278
+ #: app/features/mec/meta_boxes/display_options.php:810
2279
+ #: app/features/mec/meta_boxes/display_options.php:817
2280
+ #: app/features/mec/meta_boxes/display_options.php:822
2281
+ #: app/features/mec/meta_boxes/display_options.php:872
2282
+ #: app/features/mec/meta_boxes/display_options.php:879
2283
+ #: app/features/mec/meta_boxes/display_options.php:886
2284
+ #: app/features/mec/meta_boxes/display_options.php:893
2285
+ #: app/features/mec/meta_boxes/display_options.php:900
2286
  msgid "Date Formats"
2287
  msgstr ""
2288
 
2289
  #: app/features/mec/meta_boxes/display_options.php:57
2290
+ #: app/features/mec/meta_boxes/display_options.php:178
2291
  msgid "Default value is \"M d Y\""
2292
  msgstr ""
2293
 
2296
  msgstr ""
2297
 
2298
  #: app/features/mec/meta_boxes/display_options.php:71
2299
+ #: app/features/mec/meta_boxes/display_options.php:173
2300
+ #: app/features/mec/meta_boxes/display_options.php:185
2301
+ #: app/features/mec/meta_boxes/display_options.php:876
2302
+ #: app/features/mec/meta_boxes/display_options.php:883
2303
+ #: app/features/mec/meta_boxes/display_options.php:890
2304
+ #: app/features/mec/meta_boxes/display_options.php:897
2305
+ #: app/features/mec/meta_boxes/display_options.php:904
2306
  msgid "Default values are d, F and l"
2307
  msgstr ""
2308
 
2311
  msgstr ""
2312
 
2313
  #: app/features/mec/meta_boxes/display_options.php:82
2314
+ #: app/features/mec/meta_boxes/display_options.php:160
2315
  msgid "Default values are d and F"
2316
  msgstr ""
2317
 
2318
  #: app/features/mec/meta_boxes/display_options.php:85
2319
+ #: app/features/mec/meta_boxes/display_options.php:204
2320
+ #: app/features/mec/meta_boxes/display_options.php:254
2321
+ #: app/features/mec/meta_boxes/display_options.php:650
2322
+ #: app/features/mec/meta_boxes/display_options.php:836
2323
+ #: app/features/mec/meta_boxes/display_options.php:907
2324
  msgid "Limit"
2325
  msgstr ""
2326
 
2327
  #: app/features/mec/meta_boxes/display_options.php:86
2328
+ #: app/features/mec/meta_boxes/display_options.php:205
2329
+ #: app/features/mec/meta_boxes/display_options.php:255
2330
+ #: app/features/mec/meta_boxes/display_options.php:408
2331
+ #: app/features/mec/meta_boxes/display_options.php:449
2332
+ #: app/features/mec/meta_boxes/display_options.php:522
2333
+ #: app/features/mec/meta_boxes/display_options.php:556
2334
+ #: app/features/mec/meta_boxes/display_options.php:602
2335
+ #: app/features/mec/meta_boxes/display_options.php:837
2336
+ #: app/features/mec/meta_boxes/display_options.php:908
2337
  msgid "eg. 6"
2338
  msgstr ""
2339
 
2340
  #: app/features/mec/meta_boxes/display_options.php:90
2341
+ #: app/features/mec/meta_boxes/display_options.php:209
2342
+ #: app/features/mec/meta_boxes/display_options.php:259
2343
  msgid "Load More Button"
2344
  msgstr ""
2345
 
2346
  #: app/features/mec/meta_boxes/display_options.php:100
2347
+ #: app/features/mec/meta_boxes/display_options.php:269
2348
  msgid "Show Month Divider"
2349
  msgstr ""
2350
 
2351
+ #: app/features/mec/meta_boxes/display_options.php:113
2352
+ msgid "Toggle for Month Divider"
2353
+ msgstr ""
2354
+
2355
+ #: app/features/mec/meta_boxes/display_options.php:130
2356
+ #: app/features/mec/meta_boxes/display_options.php:231
2357
+ #: app/features/mec/meta_boxes/display_options.php:307
2358
+ #: app/features/mec/meta_boxes/display_options.php:431
2359
+ #: app/features/mec/meta_boxes/display_options.php:584
2360
+ #: app/features/mec/meta_boxes/display_options.php:685
2361
  msgid "Clean"
2362
  msgstr ""
2363
 
2364
+ #: app/features/mec/meta_boxes/display_options.php:133
2365
  msgid "Simple"
2366
  msgstr ""
2367
 
2368
+ #: app/features/mec/meta_boxes/display_options.php:134
2369
  msgid "Colorful"
2370
  msgstr ""
2371
 
2372
+ #: app/features/mec/meta_boxes/display_options.php:135
2373
+ #: app/features/mec/meta_boxes/display_options.php:308
2374
+ #: app/features/mec/meta_boxes/display_options.php:433
2375
  msgid "Novel"
2376
  msgstr ""
2377
 
2378
+ #: app/features/mec/meta_boxes/display_options.php:154
2379
+ #: app/features/mec/meta_boxes/display_options.php:190
2380
  msgid "Default value is \"d F Y\""
2381
  msgstr ""
2382
 
2383
+ #: app/features/mec/meta_boxes/display_options.php:166
2384
  msgid "Default values are d and M"
2385
  msgstr ""
2386
 
2387
+ #: app/features/mec/meta_boxes/display_options.php:193
2388
+ #: app/features/mec/meta_boxes/display_options.php:827
2389
  msgid "Count in row"
2390
  msgstr ""
2391
 
2392
+ #: app/features/mec/meta_boxes/display_options.php:224
2393
+ #: app/features/mec/meta_boxes/display_options.php:379
2394
+ #: app/features/mec/meta_boxes/display_options.php:469
2395
+ #: app/features/mec/meta_boxes/display_options.php:576
2396
+ #: app/features/mec/meta_boxes/display_options.php:764
2397
+ #: app/libraries/skins.php:248
2398
  #, php-format
2399
  msgid "%s is required to use this skin."
2400
  msgstr ""
2401
 
2402
+ #: app/features/mec/meta_boxes/display_options.php:251
2403
+ #: app/features/mec/meta_boxes/display_options.php:404
2404
  msgid "Default values are l and F j"
2405
  msgstr ""
2406
 
2407
+ #: app/features/mec/meta_boxes/display_options.php:295
2408
  msgid "Default View"
2409
  msgstr ""
2410
 
2411
+ #: app/features/mec/meta_boxes/display_options.php:297
2412
+ #: app/features/mec/meta_boxes/display_options.php:313
2413
+ #: app/libraries/main.php:324 app/libraries/main.php:1162
2414
  msgid "List View"
2415
  msgstr ""
2416
 
2417
+ #: app/features/mec/meta_boxes/display_options.php:298
2418
+ #: app/features/mec/meta_boxes/display_options.php:323
2419
+ #: app/libraries/main.php:328 app/libraries/main.php:1156
2420
  msgid "Yearly View"
2421
  msgstr ""
2422
 
2423
+ #: app/features/mec/meta_boxes/display_options.php:299
2424
+ #: app/features/mec/meta_boxes/display_options.php:333
2425
  msgid "Monthly/Calendar View"
2426
  msgstr ""
2427
 
2428
+ #: app/features/mec/meta_boxes/display_options.php:300
2429
+ #: app/features/mec/meta_boxes/display_options.php:343
2430
+ #: app/libraries/main.php:331 app/libraries/main.php:1158
2431
  msgid "Weekly View"
2432
  msgstr ""
2433
 
2434
+ #: app/features/mec/meta_boxes/display_options.php:301
2435
+ #: app/features/mec/meta_boxes/display_options.php:353
2436
+ #: app/libraries/main.php:330 app/libraries/main.php:1159
2437
  msgid "Daily View"
2438
  msgstr ""
2439
 
2440
+ #: app/features/mec/meta_boxes/display_options.php:305
2441
+ msgid "Monthly Style"
2442
+ msgstr ""
2443
+
2444
+ #: app/features/mec/meta_boxes/display_options.php:361
2445
  msgid "The price shows only in List View."
2446
  msgstr ""
2447
 
2448
+ #: app/features/mec/meta_boxes/display_options.php:364
2449
  msgid "Display Event Price"
2450
  msgstr ""
2451
 
2452
+ #: app/features/mec/meta_boxes/display_options.php:392
2453
  msgid "Start of Current Year"
2454
  msgstr ""
2455
 
2456
+ #: app/features/mec/meta_boxes/display_options.php:393
2457
  msgid "Start of Next Year"
2458
  msgstr ""
2459
 
2460
+ #: app/features/mec/meta_boxes/display_options.php:407
2461
+ #: app/features/mec/meta_boxes/display_options.php:448
2462
+ #: app/features/mec/meta_boxes/display_options.php:521
2463
+ #: app/features/mec/meta_boxes/display_options.php:555
2464
+ #: app/features/mec/meta_boxes/display_options.php:601
2465
  msgid "Events per day"
2466
  msgstr ""
2467
 
2468
+ #: app/features/mec/meta_boxes/display_options.php:412
2469
+ #: app/features/mec/meta_boxes/display_options.php:453
2470
+ #: app/features/mec/meta_boxes/display_options.php:526
2471
+ #: app/features/mec/meta_boxes/display_options.php:560
2472
+ #: app/features/mec/meta_boxes/display_options.php:607
2473
  msgid "Next/Previous Buttons"
2474
  msgstr ""
2475
 
2476
+ #: app/features/mec/meta_boxes/display_options.php:420
2477
  msgid "For showing next/previous year navigation."
2478
  msgstr ""
2479
 
2480
+ #: app/features/mec/meta_boxes/display_options.php:461
2481
+ #: app/features/mec/meta_boxes/display_options.php:534
2482
+ #: app/features/mec/meta_boxes/display_options.php:568
2483
+ #: app/features/mec/meta_boxes/display_options.php:615
2484
  msgid "For showing next/previous month navigation."
2485
  msgstr ""
2486
 
2487
+ #: app/features/mec/meta_boxes/display_options.php:487
2488
  msgid "Maximum events"
2489
  msgstr ""
2490