Modern Events Calendar Lite - Version 3.5.0

Version Description

  • Added: Facebook events importer
  • Added: Activation box in welcome page and removed activation tab from MEC settings
  • Added: Ability to define date period for custom days
  • Added: Event Schema markup to single page and shortcodes
  • Added: Custom Archive Skin feature
  • Added: Custom Category Skin feature
  • Added: Carousel skin type 4
  • Removed: old support page and added new one
  • Updated: spanish language from lite version repository
  • Fixed: Modal booking
  • Fixed: link for image in countdown view type 3
  • Fixed: Checkout button style
Download this release

Release Info

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

Code changes from version 3.4.6 to 3.5.0

Files changed (60) hide show
  1. app/features/events.php +32 -14
  2. app/features/ix.php +12 -8
  3. app/features/ix/export_g_calendar.php +1 -1
  4. app/features/ix/import_f_calendar.php +8 -1
  5. app/features/mec.php +82 -14
  6. app/features/mec/dashboard.php +68 -39
  7. app/features/mec/gateways.php +2 -2
  8. app/features/mec/ie.php +2 -2
  9. app/features/mec/messages.php +2 -2
  10. app/features/mec/meta_boxes/display_options.php +11 -3
  11. app/features/mec/notifications.php +2 -2
  12. app/features/mec/regform.php +2 -2
  13. app/features/mec/settings.php +143 -55
  14. app/features/mec/styles.php +2 -2
  15. app/features/mec/styling.php +2 -2
  16. app/features/mec/support-page.php +291 -0
  17. app/features/mec/support.php +2 -2
  18. app/features/update.php +39 -0
  19. app/libraries/envato.php +3 -3
  20. app/libraries/factory.php +1 -1
  21. app/libraries/main.php +40 -4
  22. app/libraries/render.php +40 -15
  23. app/libraries/skins.php +3 -3
  24. app/skins/agenda/render.php +34 -2
  25. app/skins/available_spot/tpl.php +35 -1
  26. app/skins/carousel.php +7 -0
  27. app/skins/carousel/render.php +64 -0
  28. app/skins/countdown/tpl.php +35 -2
  29. app/skins/cover/tpl.php +34 -0
  30. app/skins/daily_view/render.php +34 -0
  31. app/skins/grid/render.php +36 -1
  32. app/skins/list/render.php +34 -0
  33. app/skins/masonry/render.php +34 -0
  34. app/skins/monthly_view/calendar.php +42 -1
  35. app/skins/monthly_view/calendar_clean.php +42 -1
  36. app/skins/monthly_view/calendar_novel.php +44 -0
  37. app/skins/monthly_view/calendar_simple.php +43 -0
  38. app/skins/single/default.php +40 -4
  39. app/skins/single/modern.php +39 -3
  40. app/skins/slider/render.php +34 -0
  41. app/skins/timetable/render.php +34 -0
  42. app/skins/weekly_view/render.php +34 -0
  43. app/skins/yearly_view/render.php +34 -0
  44. assets/css/backend.css +253 -10
  45. assets/css/backend.min.css +2 -2
  46. assets/css/frontend.css +30 -4
  47. assets/css/frontend.min.css +1 -1
  48. assets/img/dp-dsb-support.jpg +0 -0
  49. assets/js/backend.js +46 -0
  50. assets/js/events.js +9 -3
  51. assets/js/frontend.js +41 -5
  52. assets/sql/install.sql +20 -9
  53. assets/sql/tables.sql +20 -9
  54. changelog.txt +15 -1
  55. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  56. languages/modern-events-calendar-lite-de_DE.po +1257 -828
  57. languages/modern-events-calendar-lite-en_US.mo +0 -0
  58. languages/modern-events-calendar-lite-en_US.po +1132 -806
  59. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  60. languages/modern-events-calendar-lite-es_ES.po +416 -419
app/features/events.php CHANGED
@@ -504,7 +504,7 @@ class MEC_feature_events extends MEC_base
504
  </div>
505
  <div class="mec-form-row" id="mec_repeat_certain_weekdays_container">
506
  <label class="mec-col-3"><?php _e('Week Days', 'modern-events-calendar-lite'); ?></label>
507
- <label><input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="1" <?php echo (in_array(1, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Monday', 'modern-events-calendar-lite'); ?></label>
508
  <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="2" <?php echo (in_array(2, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Tuesday', 'modern-events-calendar-lite'); ?></label>
509
  <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="3" <?php echo (in_array(3, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Wednesday', 'modern-events-calendar-lite'); ?></label>
510
  <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="4" <?php echo (in_array(4, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Thursday', 'modern-events-calendar-lite'); ?></label>
@@ -515,7 +515,8 @@ class MEC_feature_events extends MEC_base
515
  <div class="mec-form-row" id="mec_exceptions_in_days_container">
516
  <div class="mec-form-row">
517
  <div class="mec-col-6">
518
- <input type="text" id="mec_exceptions_in_days_date" value="" placeholder="<?php _e('Date', 'modern-events-calendar-lite'); ?>" class="mec_date_picker" />
 
519
  <button class="button" type="button" id="mec_add_in_days"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
520
  <a class="mec-tooltip" title="<?php esc_attr_e('Add certain days to event occurrence dates.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
521
  </div>
@@ -524,7 +525,7 @@ class MEC_feature_events extends MEC_base
524
  <?php $i = 1; foreach($in_days as $in_day): ?>
525
  <div class="mec-form-row" id="mec_in_days_row<?php echo $i; ?>">
526
  <input type="hidden" name="mec[in_days][<?php echo $i; ?>]" value="<?php echo $in_day; ?>" />
527
- <span class="mec-in-days-day"><?php echo $in_day; ?></span>
528
  <span class="mec-not-in-days-remove" onclick="mec_in_days_remove(<?php echo $i; ?>);">x</span>
529
  </div>
530
  <?php $i++; endforeach; ?>
@@ -533,7 +534,7 @@ class MEC_feature_events extends MEC_base
533
  <div class="mec-util-hidden" id="mec_new_in_days_raw">
534
  <div class="mec-form-row" id="mec_in_days_row:i:">
535
  <input type="hidden" name="mec[in_days][:i:]" value=":val:" />
536
- <span class="mec-in-days-day">:val:</span>
537
  <span class="mec-not-in-days-remove" onclick="mec_in_days_remove(:i:);">x</span>
538
  </div>
539
  </div>
@@ -1569,22 +1570,39 @@ class MEC_feature_events extends MEC_base
1569
  $weekday = '*';
1570
  }
1571
 
1572
- // "In Days" and "Not In Days"
1573
- $in_days = '';
1574
- $not_in_days = '';
1575
-
1576
  $in_days_arr = (isset($_mec['in_days']) and is_array($_mec['in_days']) and count($_mec['in_days'])) ? array_unique($_mec['in_days']) : array();
1577
  $not_in_days_arr = (isset($_mec['not_in_days']) and is_array($_mec['not_in_days']) and count($_mec['not_in_days'])) ? array_unique($_mec['not_in_days']) : array();
1578
-
1579
- if(count($in_days_arr)) foreach($in_days_arr as $key=>$in_day_arr) if(is_numeric($key)) $in_days .= $in_day_arr.',';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1580
  if(count($not_in_days_arr)) foreach($not_in_days_arr as $key=>$not_in_day_arr) if(is_numeric($key)) $not_in_days .= $not_in_day_arr.',';
1581
-
1582
  $in_days = trim($in_days, ', ');
1583
  $not_in_days = trim($not_in_days, ', ');
1584
-
1585
  update_post_meta($post_id, 'mec_in_days', $in_days);
1586
  update_post_meta($post_id, 'mec_not_in_days', $not_in_days);
1587
-
1588
  // Repeat End Date
1589
  if($repeat_end == 'never') $repeat_end_date = '0000-00-00';
1590
  elseif($repeat_end == 'date') $repeat_end_date = $repeat_end_at_date;
@@ -1611,7 +1629,7 @@ class MEC_feature_events extends MEC_base
1611
  $event['weekdays'] = $weekdays;
1612
  $event['days'] = $in_days;
1613
  $event['not_in_days'] = $not_in_days;
1614
-
1615
  // Update MEC Events Table
1616
  $mec_event_id = $this->db->select("SELECT `id` FROM `#__mec_events` WHERE `post_id`='$post_id'", 'loadResult');
1617
 
504
  </div>
505
  <div class="mec-form-row" id="mec_repeat_certain_weekdays_container">
506
  <label class="mec-col-3"><?php _e('Week Days', 'modern-events-calendar-lite'); ?></label>
507
+ <label> <input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="1" <?php echo (in_array(1, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Monday', 'modern-events-calendar-lite'); ?></label>
508
  <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="2" <?php echo (in_array(2, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Tuesday', 'modern-events-calendar-lite'); ?></label>
509
  <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="3" <?php echo (in_array(3, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Wednesday', 'modern-events-calendar-lite'); ?></label>
510
  <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]" value="4" <?php echo (in_array(4, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Thursday', 'modern-events-calendar-lite'); ?></label>
515
  <div class="mec-form-row" id="mec_exceptions_in_days_container">
516
  <div class="mec-form-row">
517
  <div class="mec-col-6">
518
+ <input type="text" id="mec_exceptions_in_days_start_date" value="" placeholder="<?php _e('Start', 'modern-events-calendar-lite'); ?>" class="mec_date_picker" />
519
+ <input type="text" id="mec_exceptions_in_days_end_date" value="" placeholder="<?php _e('End', 'modern-events-calendar-lite'); ?>" class="mec_date_picker" />
520
  <button class="button" type="button" id="mec_add_in_days"><?php _e('Add', 'modern-events-calendar-lite'); ?></button>
521
  <a class="mec-tooltip" title="<?php esc_attr_e('Add certain days to event occurrence dates.', 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
522
  </div>
525
  <?php $i = 1; foreach($in_days as $in_day): ?>
526
  <div class="mec-form-row" id="mec_in_days_row<?php echo $i; ?>">
527
  <input type="hidden" name="mec[in_days][<?php echo $i; ?>]" value="<?php echo $in_day; ?>" />
528
+ <span class="mec-in-days-day"><?php echo str_replace(':', ' - ', $in_day); ?></span>
529
  <span class="mec-not-in-days-remove" onclick="mec_in_days_remove(<?php echo $i; ?>);">x</span>
530
  </div>
531
  <?php $i++; endforeach; ?>
534
  <div class="mec-util-hidden" id="mec_new_in_days_raw">
535
  <div class="mec-form-row" id="mec_in_days_row:i:">
536
  <input type="hidden" name="mec[in_days][:i:]" value=":val:" />
537
+ <span class="mec-in-days-day">:label:</span>
538
  <span class="mec-not-in-days-remove" onclick="mec_in_days_remove(:i:);">x</span>
539
  </div>
540
  </div>
1570
  $weekday = '*';
1571
  }
1572
 
 
 
 
 
1573
  $in_days_arr = (isset($_mec['in_days']) and is_array($_mec['in_days']) and count($_mec['in_days'])) ? array_unique($_mec['in_days']) : array();
1574
  $not_in_days_arr = (isset($_mec['not_in_days']) and is_array($_mec['not_in_days']) and count($_mec['not_in_days'])) ? array_unique($_mec['not_in_days']) : array();
1575
+
1576
+ // Clear MEC Dates Table
1577
+ $this->db->q("DELETE FROM `#__mec_dates` WHERE `post_id`='$post_id'");
1578
+
1579
+ $in_days = '';
1580
+ if(count($in_days_arr))
1581
+ {
1582
+ foreach($in_days_arr as $key=>$in_day_arr)
1583
+ {
1584
+ if(!is_numeric($key)) continue;
1585
+
1586
+ $in_days .= $in_day_arr.',';
1587
+
1588
+ $ex = explode(':', $in_day_arr);
1589
+
1590
+ $in_day_start = $ex[0];
1591
+ $in_day_end = $ex[1];
1592
+
1593
+ $this->db->q("INSERT INTO `#__mec_dates` (`post_id`,`dstart`,`dend`,`type`) VALUES ('$post_id','$in_day_start','$in_day_end','include')");
1594
+ }
1595
+ }
1596
+
1597
+ $not_in_days = '';
1598
  if(count($not_in_days_arr)) foreach($not_in_days_arr as $key=>$not_in_day_arr) if(is_numeric($key)) $not_in_days .= $not_in_day_arr.',';
1599
+
1600
  $in_days = trim($in_days, ', ');
1601
  $not_in_days = trim($not_in_days, ', ');
1602
+
1603
  update_post_meta($post_id, 'mec_in_days', $in_days);
1604
  update_post_meta($post_id, 'mec_not_in_days', $not_in_days);
1605
+
1606
  // Repeat End Date
1607
  if($repeat_end == 'never') $repeat_end_date = '0000-00-00';
1608
  elseif($repeat_end == 'date') $repeat_end_date = $repeat_end_at_date;
1629
  $event['weekdays'] = $weekdays;
1630
  $event['days'] = $in_days;
1631
  $event['not_in_days'] = $not_in_days;
1632
+
1633
  // Update MEC Events Table
1634
  $mec_event_id = $this->db->select("SELECT `id` FROM `#__mec_events` WHERE `post_id`='$post_id'", 'loadResult');
1635
 
app/features/ix.php CHANGED
@@ -19,7 +19,7 @@ class MEC_feature_ix extends MEC_base
19
  * Facebook App Access Token
20
  * @var string
21
  */
22
- private $fb_access_token = '1819770188280256|GyNKicqC8aT4Z7GVz_PptY-7kQQ';
23
 
24
  /**
25
  * Constructor method
@@ -3142,18 +3142,20 @@ class MEC_feature_ix extends MEC_base
3142
  public function f_calendar_import_start()
3143
  {
3144
  $fb_page_link = isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : NULL;
 
 
3145
  if(!trim($fb_page_link)) return array('success'=>0, 'message'=>__("Please insert your Facebook page's link.", 'modern-events-calendar-lite'));
3146
 
3147
  // Save options
3148
  $this->main->save_ix_options(array('facebook_import_page_link'=>$fb_page_link));
 
3149
 
3150
  $fb_page = $this->f_calendar_import_get_page($fb_page_link);
3151
 
3152
  $fb_page_id = isset($fb_page['id']) ? $fb_page['id'] : 0;
3153
  if(!$fb_page_id) return array('success'=>0, 'message'=>__("We couldn't recognize your Facebook page. Please check it and provide us a valid Facebook page link.", 'modern-events-calendar-lite'));
3154
-
3155
  $events = array();
3156
- $next_page = 'https://graph.facebook.com/v2.8/'.$fb_page_id.'/events/?access_token='.$this->fb_access_token;
3157
 
3158
  do
3159
  {
@@ -3182,6 +3184,7 @@ class MEC_feature_ix extends MEC_base
3182
  if(!count($f_events)) return array('success'=>0, 'message'=>__('Please select some events to import!', 'modern-events-calendar-lite'));
3183
 
3184
  $fb_page_link = isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : NULL;
 
3185
  if(!trim($fb_page_link)) return array('success'=>0, 'message'=>__("Please insert your facebook page's link.", 'modern-events-calendar-lite'));
3186
 
3187
  $fb_page = $this->f_calendar_import_get_page($fb_page_link);
@@ -3199,7 +3202,7 @@ class MEC_feature_ix extends MEC_base
3199
  $post_ids = array();
3200
  foreach($f_events as $f_event_id)
3201
  {
3202
- $events_result = $this->main->get_web_page('https://graph.facebook.com/v2.8/'.$f_event_id.'?access_token='.$this->fb_access_token);
3203
  $event = json_decode($events_result, true);
3204
 
3205
  // An error Occurred
@@ -3221,8 +3224,8 @@ class MEC_feature_ix extends MEC_base
3221
  (
3222
  'name'=>trim($location_name),
3223
  'address'=>$location_address,
3224
- 'latitude'=>$location['location']['latitude'],
3225
- 'longitude'=>$location['location']['longitude'],
3226
  ));
3227
  }
3228
 
@@ -3316,7 +3319,7 @@ class MEC_feature_ix extends MEC_base
3316
  if($location_id) wp_set_object_terms($post_id, (int) $location_id, 'mec_location');
3317
 
3318
  // Set the Featured Image
3319
- $photos_results = $this->main->get_web_page('https://graph.facebook.com/v2.8/'.$f_event_id.'/photos?access_token='.$this->fb_access_token);
3320
  $photos = json_decode($photos_results, true);
3321
 
3322
  if(!has_post_thumbnail($post_id) and isset($photos['data']) and is_array($photos['data']) and count($photos['data']))
@@ -3337,7 +3340,8 @@ class MEC_feature_ix extends MEC_base
3337
 
3338
  public function f_calendar_import_get_page($link)
3339
  {
3340
- $fb_page_result = $this->main->get_web_page('https://graph.facebook.com/v2.8/?access_token='.$this->fb_access_token.'&id='.$link);
 
3341
  return json_decode($fb_page_result, true);
3342
  }
3343
  }
19
  * Facebook App Access Token
20
  * @var string
21
  */
22
+ private $fb_access_token = '';
23
 
24
  /**
25
  * Constructor method
3142
  public function f_calendar_import_start()
3143
  {
3144
  $fb_page_link = isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : NULL;
3145
+ $this->fb_access_token = isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : NULL;
3146
+
3147
  if(!trim($fb_page_link)) return array('success'=>0, 'message'=>__("Please insert your Facebook page's link.", 'modern-events-calendar-lite'));
3148
 
3149
  // Save options
3150
  $this->main->save_ix_options(array('facebook_import_page_link'=>$fb_page_link));
3151
+ $this->main->save_ix_options(array('facebook_app_token'=>$this->fb_access_token));
3152
 
3153
  $fb_page = $this->f_calendar_import_get_page($fb_page_link);
3154
 
3155
  $fb_page_id = isset($fb_page['id']) ? $fb_page['id'] : 0;
3156
  if(!$fb_page_id) return array('success'=>0, 'message'=>__("We couldn't recognize your Facebook page. Please check it and provide us a valid Facebook page link.", 'modern-events-calendar-lite'));
 
3157
  $events = array();
3158
+ $next_page = 'https://graph.facebook.com/v3.2/'.$fb_page_id.'/events/?access_token='.$this->fb_access_token;
3159
 
3160
  do
3161
  {
3184
  if(!count($f_events)) return array('success'=>0, 'message'=>__('Please select some events to import!', 'modern-events-calendar-lite'));
3185
 
3186
  $fb_page_link = isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : NULL;
3187
+ $this->fb_access_token = isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : NULL;
3188
  if(!trim($fb_page_link)) return array('success'=>0, 'message'=>__("Please insert your facebook page's link.", 'modern-events-calendar-lite'));
3189
 
3190
  $fb_page = $this->f_calendar_import_get_page($fb_page_link);
3202
  $post_ids = array();
3203
  foreach($f_events as $f_event_id)
3204
  {
3205
+ $events_result = $this->main->get_web_page('https://graph.facebook.com/v3.2/'.$f_event_id.'?access_token='.$this->fb_access_token);
3206
  $event = json_decode($events_result, true);
3207
 
3208
  // An error Occurred
3224
  (
3225
  'name'=>trim($location_name),
3226
  'address'=>$location_address,
3227
+ 'latitude'=>!empty($location['location']['latitude']) ? $location['location']['latitude'] : '' ,
3228
+ 'longitude'=>!empty($location['location']['longitude']) ? $location['location']['longitude'] : '',
3229
  ));
3230
  }
3231
 
3319
  if($location_id) wp_set_object_terms($post_id, (int) $location_id, 'mec_location');
3320
 
3321
  // Set the Featured Image
3322
+ $photos_results = $this->main->get_web_page('https://graph.facebook.com/v3.2/'.$f_event_id.'/photos?access_token='.$this->fb_access_token);
3323
  $photos = json_decode($photos_results, true);
3324
 
3325
  if(!has_post_thumbnail($post_id) and isset($photos['data']) and is_array($photos['data']) and count($photos['data']))
3340
 
3341
  public function f_calendar_import_get_page($link)
3342
  {
3343
+ $this->fb_access_token = isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : NULL;
3344
+ $fb_page_result = $this->main->get_web_page('https://graph.facebook.com/v3.2/?access_token='.$this->fb_access_token.'&id='.$link);
3345
  return json_decode($fb_page_result, true);
3346
  }
3347
  }
app/features/ix/export_g_calendar.php CHANGED
@@ -6,7 +6,7 @@ $events = $this->main->get_events('-1');
6
  $ix_options = $this->main->get_ix_options();
7
 
8
  // Start the export process if token is exists
9
- if($ix_options['google_export_token']) $this->action = 'google-calendar-export-start';
10
  ?>
11
  <div class="wrap" id="mec-wrap">
12
  <h1><?php _e('MEC Import / Export', 'modern-events-calendar-lite'); ?></h1>
6
  $ix_options = $this->main->get_ix_options();
7
 
8
  // Start the export process if token is exists
9
+ if(isset( $ix_options['google_export_token'] ) && $ix_options['google_export_token']) $this->action = 'google-calendar-export-start';
10
  ?>
11
  <div class="wrap" id="mec-wrap">
12
  <h1><?php _e('MEC Import / Export', 'modern-events-calendar-lite'); ?></h1>
app/features/ix/import_f_calendar.php CHANGED
@@ -24,7 +24,13 @@ $ix_options = $this->main->get_ix_options();
24
  <div class="mec-facebook-import">
25
  <form id="mec_facebook_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
26
  <h3><?php _e('Import from Facebook Calendar', 'modern-events-calendar-lite'); ?></h3>
27
- <p class="description"><?php _e('Import all of your Facebook events into MEC.', 'modern-events-calendar-lite'); ?></p>
 
 
 
 
 
 
28
  <div class="mec-form-row">
29
  <label class="mec-col-3" for="mec_ix_facebook_import_page_link"><?php _e('Facebook Page Link', 'modern-events-calendar-lite'); ?></label>
30
  <div class="mec-col-4">
@@ -72,6 +78,7 @@ $ix_options = $this->main->get_ix_options();
72
  </div>
73
  <input type="hidden" name="mec-ix-action" value="facebook-calendar-import-do" />
74
  <input type="hidden" name="ix[facebook_import_page_link]" value="<?php echo (isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : ''); ?>" />
 
75
  <button id="mec_ix_facebook_import_do_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Import', 'modern-events-calendar-lite'); ?></button>
76
  </div>
77
  </form>
24
  <div class="mec-facebook-import">
25
  <form id="mec_facebook_import_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
26
  <h3><?php _e('Import from Facebook Calendar', 'modern-events-calendar-lite'); ?></h3>
27
+ <p class="description"><?php _e('Import all of your Facebook events into MEC.', 'modern-events-calendar-lite'); ?> <a href="https://webnus.net/dox/modern-events-calendar/import-facebook-events/" target="_blank"><?php _e('Documentation', 'modern-events-calendar-lite'); ?></a></p>
28
+ <div class="mec-form-row">
29
+ <label class="mec-col-3" for="mec_ix_facebook_app_token"><?php _e('Facebook Page Access Token', 'modern-events-calendar-lite'); ?></label>
30
+ <div class="mec-col-4">
31
+ <input type="text" id="mec_ix_facebook_app_token" name="ix[facebook_app_token]" value="<?php echo (isset($ix_options['facebook_app_token']) ? $ix_options['facebook_app_token'] : ''); ?>" />
32
+ </div>
33
+ </div>
34
  <div class="mec-form-row">
35
  <label class="mec-col-3" for="mec_ix_facebook_import_page_link"><?php _e('Facebook Page Link', 'modern-events-calendar-lite'); ?></label>
36
  <div class="mec-col-4">
78
  </div>
79
  <input type="hidden" name="mec-ix-action" value="facebook-calendar-import-do" />
80
  <input type="hidden" name="ix[facebook_import_page_link]" value="<?php echo (isset($this->ix['facebook_import_page_link']) ? $this->ix['facebook_import_page_link'] : ''); ?>" />
81
+ <input type="hidden" name="ix[facebook_app_token]" value="<?php echo (isset($this->ix['facebook_app_token']) ? $this->ix['facebook_app_token'] : ''); ?>" />
82
  <button id="mec_ix_facebook_import_do_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Import', 'modern-events-calendar-lite'); ?></button>
83
  </div>
84
  </form>
app/features/mec.php CHANGED
@@ -59,7 +59,9 @@ class MEC_feature_mec extends MEC_base
59
  */
60
  public function init()
61
  {
 
62
  $this->factory->action('admin_menu', array($this, 'menus'));
 
63
  $this->factory->action('init', array($this, 'register_post_type'));
64
  $this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
65
 
@@ -106,8 +108,47 @@ class MEC_feature_mec extends MEC_base
106
  $this->factory->action('wp_ajax_import_settings', array($this, 'import_settings'));
107
  $this->factory->action('wp_ajax_nopriv_import_settings', array($this, 'import_settings'));
108
 
 
 
 
109
  }
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  /* Download MEC settings */
112
  public function download_settings()
113
  {
@@ -115,11 +156,6 @@ class MEC_feature_mec extends MEC_base
115
  {
116
  exit();
117
  }
118
- // $all_options = wp_load_alloptions();
119
- // $my_options = array();
120
- // foreach( $all_options as $name => $value ) {
121
- // if(stristr($name, 'mec_options')) $my_options[$name] = $value;
122
- // }
123
  $content = get_option('mec_options');
124
  $content = json_encode($content, true);
125
  header( 'Content-type: application/txt' );
@@ -135,7 +171,7 @@ class MEC_feature_mec extends MEC_base
135
  /* Download MEC settings */
136
  public function import_settings()
137
  {
138
- if ( !wp_verify_nonce( $_REQUEST['nonce'], "mec_settings_import"))
139
  {
140
  exit();
141
  }
@@ -238,6 +274,15 @@ class MEC_feature_mec extends MEC_base
238
  return $submenu_file;
239
  }
240
 
 
 
 
 
 
 
 
 
 
241
  /**
242
  * Add the calendars menu
243
  * @author Webnus <info@webnus.biz>
@@ -452,6 +497,29 @@ class MEC_feature_mec extends MEC_base
452
  include $path;
453
  echo $output = ob_get_clean();
454
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
 
456
  /**
457
  * Show content settings menu
@@ -464,7 +532,7 @@ class MEC_feature_mec extends MEC_base
464
 
465
  if($tab == 'MEC-customcss') $this->styles();
466
  elseif($tab == 'MEC-ie') $this->import_export();
467
- elseif($tab == 'MEC-support') $this->support();
468
  elseif($tab == 'MEC-reg-form') $this->regform();
469
  elseif($tab == 'MEC-gateways') $this->gateways();
470
  elseif($tab == 'MEC-notifications') $this->notifications();
@@ -534,14 +602,14 @@ class MEC_feature_mec extends MEC_base
534
  * @author Webnus <info@webnus.biz>
535
  * @return void
536
  */
537
- public function support()
538
- {
539
- $path = MEC::import('app.features.mec.support', true, true);
540
 
541
- ob_start();
542
- include $path;
543
- echo $output = ob_get_clean();
544
- }
545
 
546
  /**
547
  * Show content of registration form tab
59
  */
60
  public function init()
61
  {
62
+
63
  $this->factory->action('admin_menu', array($this, 'menus'));
64
+ $this->factory->action('admin_menu', array($this, 'support_menu'), 21);
65
  $this->factory->action('init', array($this, 'register_post_type'));
66
  $this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
67
 
108
  $this->factory->action('wp_ajax_import_settings', array($this, 'import_settings'));
109
  $this->factory->action('wp_ajax_nopriv_import_settings', array($this, 'import_settings'));
110
 
111
+ $this->factory->action('wp_ajax_activate_license', array($this, 'activate_license'));
112
+ $this->factory->action('wp_ajax_nopriv_activate_license', array($this, 'activate_license'));
113
+
114
  }
115
 
116
+ /* Activate License */
117
+ public function activate_license()
118
+ {
119
+ if ( !wp_verify_nonce( $_REQUEST['nonce'], "mec_settings_nonce"))
120
+ {
121
+ exit();
122
+ }
123
+ $options = get_option('mec_options');
124
+
125
+ $options['product_name'] = $_REQUEST['content']['LicenseTypeJson'];
126
+ $options['purchase_code'] = $_REQUEST['content']['PurchaseCodeJson'];
127
+ update_option( 'mec_options' , $options);
128
+
129
+ $verify = NULL;
130
+ if($this->getPRO())
131
+ {
132
+ $envato = $this->getEnvato();
133
+ $verify = $envato->get_MEC_info('dl');
134
+ }
135
+
136
+ if(!is_null($verify))
137
+ {
138
+ $LicenseStatus = 'success';
139
+ }
140
+ else
141
+ {
142
+ $LicenseStatus = __('Activation faild. Please check your purchase code or license type.<br><b>Note: Your purchase code should match your licesne type.</b>' , 'modern-events-calendar-lite') . '<a style="text-decoration: underline;
143
+ padding-left: 7px;" href="https://webnus.ticksy.com/article/14445/" target="_blank">' . __('Troubleshooting' , 'modern-events-calendar-lite') . '</a>';
144
+ }
145
+
146
+ echo $LicenseStatus;
147
+
148
+ wp_die();
149
+ }
150
+
151
+
152
  /* Download MEC settings */
153
  public function download_settings()
154
  {
156
  {
157
  exit();
158
  }
 
 
 
 
 
159
  $content = get_option('mec_options');
160
  $content = json_encode($content, true);
161
  header( 'Content-type: application/txt' );
171
  /* Download MEC settings */
172
  public function import_settings()
173
  {
174
+ if ( !wp_verify_nonce( $_REQUEST['nonce'], "mec_settings_nonce"))
175
  {
176
  exit();
177
  }
274
  return $submenu_file;
275
  }
276
 
277
+ /**
278
+ * Add the support menu
279
+ * @author Webnus <info@webnus.biz>
280
+ */
281
+ public function support_menu()
282
+ {
283
+ add_submenu_page('mec-intro', __('MEC - Support', 'modern-events-calendar-lite'), __('Support', 'modern-events-calendar-lite'), 'manage_options', 'MEC-support', array($this, 'support_page'));
284
+ }
285
+
286
  /**
287
  * Add the calendars menu
288
  * @author Webnus <info@webnus.biz>
497
  include $path;
498
  echo $output = ob_get_clean();
499
  }
500
+
501
+ /**
502
+ * Show support page
503
+ * @author Webnus <info@webnus.biz>
504
+ * @return void
505
+ */
506
+ public function display_support()
507
+ {
508
+ $path = MEC::import('app.features.mec.support-page', true, true);
509
+ ob_start();
510
+ include $path;
511
+ echo $output = ob_get_clean();
512
+ }
513
+
514
+ /**
515
+ * support page
516
+ * @author Webnus <info@webnus.biz>
517
+ * @return void
518
+ */
519
+ public function support_page()
520
+ {
521
+ $this->display_support();
522
+ }
523
 
524
  /**
525
  * Show content settings menu
532
 
533
  if($tab == 'MEC-customcss') $this->styles();
534
  elseif($tab == 'MEC-ie') $this->import_export();
535
+ //elseif($tab == 'MEC-support') $this->support();
536
  elseif($tab == 'MEC-reg-form') $this->regform();
537
  elseif($tab == 'MEC-gateways') $this->gateways();
538
  elseif($tab == 'MEC-notifications') $this->notifications();
602
  * @author Webnus <info@webnus.biz>
603
  * @return void
604
  */
605
+ // public function support()
606
+ // {
607
+ // $path = MEC::import('app.features.mec.support', true, true);
608
 
609
+ // ob_start();
610
+ // include $path;
611
+ // echo $output = ob_get_clean();
612
+ // }
613
 
614
  /**
615
  * Show content of registration form tab
app/features/mec/dashboard.php CHANGED
@@ -25,7 +25,8 @@ $user_organizer_count_l = wp_count_terms('mec_organizer', array(
25
  'parent'=>0
26
  ));
27
 
28
- $version = NULL;
 
29
  if($this->getPRO())
30
  {
31
  // Get MEC New Update
@@ -33,6 +34,7 @@ if($this->getPRO())
33
 
34
  $v = $envato->get_MEC_info('version');
35
  $version = isset($v->version) ? $v->version : NULL;
 
36
  }
37
 
38
  // MEC Database
@@ -85,6 +87,69 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
85
  <?php endif; ?>
86
 
87
  <div class="w-row">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  <?php if(current_user_can('read')): ?>
89
  <div class="w-col-sm-3">
90
  <div class="w-box doc">
@@ -103,54 +168,18 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
103
  <div class="w-col-sm-3">
104
  <div class="w-box doc">
105
  <div class="w-box-child mec-count-child">
106
- <p><?php echo '<p class="mec_dash_count">'.$user_location_count_l.'</p> '.__('Location', 'modern-events-calendar-lite'); ?></p>
107
  </div>
108
  </div>
109
  </div>
110
  <div class="w-col-sm-3">
111
  <div class="w-box doc">
112
  <div class="w-box-child mec-count-child">
113
- <p><?php echo '<p class="mec_dash_count">'.$user_organizer_count_l.'</p> '. __('Organizer', 'modern-events-calendar-lite'); ?></p>
114
  </div>
115
  </div>
116
  </div>
117
  <?php endif; ?>
118
- <div class="w-col-sm-<?php echo ($box_support ? '6' : '12'); ?>">
119
- <div class="w-box doc">
120
- <div class="w-box-head">
121
- <?php _e('Documentation', 'modern-events-calendar-lite'); ?>
122
- </div>
123
- <div class="w-box-content">
124
- <p><?php echo esc_html__('Our documentation is simple and functional with full details and cover all essential aspects from beginning to the most advanced parts.', 'modern-events-calendar-lite'); ?></p>
125
- <div class="w-button">
126
- <a href="http://webnus.net/dox/modern-events-calendar/" target="_blank"><?php echo esc_html__('DOCUMENTATION', 'modern-events-calendar-lite'); ?></a>
127
- </div>
128
- </div>
129
- </div>
130
- </div>
131
- <?php if($box_support): ?>
132
- <div class="w-col-sm-6">
133
- <div class="w-box support">
134
- <div class="w-box-head">
135
- <?php echo esc_html__('Support Forum', 'modern-events-calendar-lite'); ?>
136
- </div>
137
- <div class="w-box-content">
138
- <?php if(!$this->getPRO()): ?>
139
- <p><?php echo esc_html__("Webnus is elite and trusted author with high percentage of satisfied user. If you want to use this service you need to upgrade your plugin to Pro version. Click on the following button.", 'modern-events-calendar-lite'); ?></p>
140
- <?php else: ?>
141
- <p><?php echo esc_html__("Webnus is elite and trusted author with high percentage of satisfied user. If you have any issues please don't hesitate to contact us, we will reply as soon as possible.", 'modern-events-calendar-lite'); ?></p>
142
- <?php endif; ?>
143
- <div class="w-button">
144
- <?php if(!$this->getPRO()): ?>
145
- <a href="https://webnus.net/pricing/#plugins" target="_blank"><?php echo esc_html__('GO PREMIUM', 'modern-events-calendar-lite'); ?></a>
146
- <?php else: ?>
147
- <a href="https://webnus.ticksy.com/" target="_blank"><?php echo esc_html__('OPEN A TICKET', 'modern-events-calendar-lite'); ?></a>
148
- <?php endif; ?>
149
- </div>
150
- </div>
151
- </div>
152
- </div>
153
- <?php endif; ?>
154
  </div>
155
  <?php if($box_stats): ?>
156
  <div class="w-row">
25
  'parent'=>0
26
  ));
27
 
28
+ $version = $verify = NULL;
29
+
30
  if($this->getPRO())
31
  {
32
  // Get MEC New Update
34
 
35
  $v = $envato->get_MEC_info('version');
36
  $version = isset($v->version) ? $v->version : NULL;
37
+ $verify = $envato->get_MEC_info('dl');
38
  }
39
 
40
  // MEC Database
87
  <?php endif; ?>
88
 
89
  <div class="w-row">
90
+ <?php if($this->getPRO()) : ?>
91
+ <div class="w-col-sm-12">
92
+ <div class="w-box mec-activation">
93
+ <div class="w-box-head">
94
+ <?php _e('MEC Activate', 'modern-events-calendar-lite'); ?>
95
+ </div>
96
+ <div class="w-box-content">
97
+ <p><?php echo esc_html__('In order to use all plugin features and options, please enter your purchase code.', 'modern-events-calendar-lite'); ?></p>
98
+ <div class="box-mec-avtivation">
99
+ <?php
100
+ $mec_options = get_option('mec_options');
101
+ $one_license = $five_license = $ten_license = $product_license = '';
102
+ if ( !empty($mec_options) && isset($mec_options['product_name']) ):
103
+ if ( $mec_options['product_name'] == '1 License for MEC Plugin' )
104
+ {
105
+ $one_license = 'checked';
106
+ }
107
+ elseif ( $mec_options['product_name'] == '5 License for MEC Plugin' )
108
+ {
109
+ $five_license = 'checked';
110
+ }
111
+ elseif ( $mec_options['product_name'] == '10 License for MEC Plugin' )
112
+ {
113
+ $ten_license = 'checked';
114
+ }
115
+ if ( $mec_options['product_name'] != '' )
116
+ {
117
+ $product_license = $mec_options['purchase_code'];
118
+ }
119
+ endif;
120
+ ?>
121
+ <form id="MECActivation" action="#" method="post">
122
+ <div class="LicenseType">
123
+ <input type="radio" id="OneLicense" name="MECLicense" value="1 License for MEC Plugin" class="<?php echo esc_html($one_license); ?>" />
124
+ <label for="OneLicense"><span></span>1 License</label>
125
+ <input type="radio" id="FiveLicense" value="5 License for MEC Plugin" name="MECLicense" class="<?php echo esc_html($five_license); ?>" />
126
+ <label for="FiveLicense"><span></span>5 License</label>
127
+ <input type="radio" id="TenLicense" value="10 License for MEC Plugin" name="MECLicense" class="<?php echo esc_html($ten_license); ?>" />
128
+ <label for="TenLicense"><span></span>10 License</label>
129
+ </div>
130
+ <div class="LicenseField">
131
+ <input type="password" placeholder="Put your purchase code here" name="MECPurchaseCode" value="<?php echo esc_html($product_license); ?>">
132
+ <input type="submit">
133
+ <?php
134
+ $license_status = '';
135
+ if(!empty($mec_options['purchase_code']) && !is_null($verify))
136
+ {
137
+ $license_status = 'PurchaseSuccess';
138
+ }
139
+ elseif ( !empty($mec_options['purchase_code']) && is_null($verify) )
140
+ {
141
+ $license_status = 'PurchaseError';
142
+ }
143
+ ?>
144
+ <div class="MECPurchaseStatus <?php echo esc_html($license_status); ?>"></div>
145
+ </div>
146
+ <div class="MECLicenseMessage"></div>
147
+ </form>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ <?php endif; ?>
153
  <?php if(current_user_can('read')): ?>
154
  <div class="w-col-sm-3">
155
  <div class="w-box doc">
168
  <div class="w-col-sm-3">
169
  <div class="w-box doc">
170
  <div class="w-box-child mec-count-child">
171
+ <p><?php echo '<p class="mec_dash_count">'.$user_location_count_l.'</p> '.__('Locations', 'modern-events-calendar-lite'); ?></p>
172
  </div>
173
  </div>
174
  </div>
175
  <div class="w-col-sm-3">
176
  <div class="w-box doc">
177
  <div class="w-box-child mec-count-child">
178
+ <p><?php echo '<p class="mec_dash_count">'.$user_organizer_count_l.'</p> '. __('Organizers', 'modern-events-calendar-lite'); ?></p>
179
  </div>
180
  </div>
181
  </div>
182
  <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  </div>
184
  <?php if($box_stats): ?>
185
  <div class="w-row">
app/features/mec/gateways.php CHANGED
@@ -78,12 +78,12 @@ $gateways = $this->main->get_gateways();
78
  </a>
79
  </li>
80
 
81
- <li class="wns-be-group-menu-li">
82
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
83
  <i class="mec-sl-support"></i>
84
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
85
  </a>
86
- </li>
87
 
88
  </ul>
89
  </div>
78
  </a>
79
  </li>
80
 
81
+ <!-- <li class="wns-be-group-menu-li">
82
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
83
  <i class="mec-sl-support"></i>
84
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
85
  </a>
86
+ </li> -->
87
 
88
  </ul>
89
  </div>
app/features/mec/ie.php CHANGED
@@ -74,12 +74,12 @@ defined('MECEXEC') or die();
74
  </a>
75
  </li>
76
 
77
- <li class="wns-be-group-menu-li">
78
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
79
  <i class="mec-sl-support"></i>
80
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
81
  </a>
82
- </li>
83
 
84
  </ul>
85
  </div>
74
  </a>
75
  </li>
76
 
77
+ <!-- <li class="wns-be-group-menu-li">
78
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
79
  <i class="mec-sl-support"></i>
80
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
81
  </a>
82
+ </li> -->
83
 
84
  </ul>
85
  </div>
app/features/mec/messages.php CHANGED
@@ -78,12 +78,12 @@ $values = $this->main->get_messages_options();
78
  </a>
79
  </li>
80
 
81
- <li class="wns-be-group-menu-li">
82
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
83
  <i class="mec-sl-support"></i>
84
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
85
  </a>
86
- </li>
87
 
88
  </ul>
89
  </div>
78
  </a>
79
  </li>
80
 
81
+ <!-- <li class="wns-be-group-menu-li">
82
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
83
  <i class="mec-sl-support"></i>
84
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
85
  </a>
86
+ </li> -->
87
 
88
  </ul>
89
  </div>
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -16,7 +16,7 @@ $events = $this->main->get_events();
16
  <div class="mec-meta-box-fields" id="mec_meta_box_calendar_skin_options">
17
  <div class="mec-form-row">
18
  <label class="mec-col-4" for="mec_skin"><?php _e('Skin', 'modern-events-calendar-lite'); ?></label>
19
- <select class="mec-col-4" name="mec[skin]" id="mec_skin">
20
  <?php foreach($skins as $skin=>$name): ?>
21
  <option value="<?php echo $skin; ?>" <?php if($selected_skin == $skin) echo 'selected="selected"'; ?>><?php echo $name; ?></option>
22
  <?php endforeach; ?>
@@ -789,10 +789,11 @@ $events = $this->main->get_events();
789
  <?php $sk_options_carousel = isset($sk_options['carousel']) ? $sk_options['carousel'] : array(); ?>
790
  <div class="mec-form-row">
791
  <label class="mec-col-4" for="mec_skin_carousel_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
792
- <select class="mec-col-4" name="mec[sk-options][carousel][style]" id="mec_skin_carousel_style" onchange="mec_skin_style_changed('carousel', this.value);">
793
  <option value="type1" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type1') echo 'selected="selected"'; ?>><?php _e('Type 1', 'modern-events-calendar-lite'); ?></option>
794
  <option value="type2" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type2') echo 'selected="selected"'; ?>><?php _e('Type 2', 'modern-events-calendar-lite'); ?></option>
795
  <option value="type3" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type3') echo 'selected="selected"'; ?>><?php _e('Type 3', 'modern-events-calendar-lite'); ?></option>
 
796
  </select>
797
  </div>
798
  <div class="mec-form-row">
@@ -843,7 +844,14 @@ $events = $this->main->get_events();
843
  <input class="mec-col-4" type="number" name="mec[sk-options][carousel][autoplay]" id="mec_skin_carousel_autoplay" placeholder="<?php _e('eg. 3000 default is 3 second', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_carousel['autoplay']) && $sk_options_carousel['autoplay'] != '' ) echo $sk_options_carousel['autoplay']; ?>" />
844
  </div>
845
  </div>
846
-
 
 
 
 
 
 
 
847
  <!-- Slider View -->
848
  <div class="mec-skin-options-container mec-util-hidden" id="mec_slider_skin_options_container">
849
  <?php $sk_options_slider = isset($sk_options['slider']) ? $sk_options['slider'] : array(); ?>
16
  <div class="mec-meta-box-fields" id="mec_meta_box_calendar_skin_options">
17
  <div class="mec-form-row">
18
  <label class="mec-col-4" for="mec_skin"><?php _e('Skin', 'modern-events-calendar-lite'); ?></label>
19
+ <select class="mec-col-4" name="mec[skin]" id="mec_skin" onchange="if( jQuery('#mec_skin').val() != 'carousel' ){ jQuery('.mec-carousel-archive-link').hide();jQuery('.mec-carousel-head-text').hide();}">
20
  <?php foreach($skins as $skin=>$name): ?>
21
  <option value="<?php echo $skin; ?>" <?php if($selected_skin == $skin) echo 'selected="selected"'; ?>><?php echo $name; ?></option>
22
  <?php endforeach; ?>
789
  <?php $sk_options_carousel = isset($sk_options['carousel']) ? $sk_options['carousel'] : array(); ?>
790
  <div class="mec-form-row">
791
  <label class="mec-col-4" for="mec_skin_carousel_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
792
+ <select class="mec-col-4" name="mec[sk-options][carousel][style]" id="mec_skin_carousel_style" onchange="mec_skin_style_changed('carousel', this.value); if(this.value == 'type4'){ jQuery('.mec-carousel-archive-link').show();jQuery('.mec-carousel-head-text').show();} else { jQuery('.mec-carousel-archive-link').hide(); jQuery('.mec-carousel-head-text').hide(); }">
793
  <option value="type1" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type1') echo 'selected="selected"'; ?>><?php _e('Type 1', 'modern-events-calendar-lite'); ?></option>
794
  <option value="type2" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type2') echo 'selected="selected"'; ?>><?php _e('Type 2', 'modern-events-calendar-lite'); ?></option>
795
  <option value="type3" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type3') echo 'selected="selected"'; ?>><?php _e('Type 3', 'modern-events-calendar-lite'); ?></option>
796
+ <option value="type4" <?php if(isset($sk_options_carousel['style']) and $sk_options_carousel['style'] == 'type4') echo 'selected="selected"'; ?>><?php _e('Type 4', 'modern-events-calendar-lite'); ?></option>
797
  </select>
798
  </div>
799
  <div class="mec-form-row">
844
  <input class="mec-col-4" type="number" name="mec[sk-options][carousel][autoplay]" id="mec_skin_carousel_autoplay" placeholder="<?php _e('eg. 3000 default is 3 second', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_carousel['autoplay']) && $sk_options_carousel['autoplay'] != '' ) echo $sk_options_carousel['autoplay']; ?>" />
845
  </div>
846
  </div>
847
+ <div class="mec-form-row mec-carousel-archive-link">
848
+ <label class="mec-col-4" for="mec_skin_carousel_archive_link"><?php _e('Archive Link', 'modern-events-calendar-lite'); ?></label>
849
+ <input type="text" class="mec-col-4" name="mec[sk-options][carousel][archive_link]" id="mec_skin_carousel_archive_link" value="<?php echo ((isset($sk_options_carousel['archive_link']) and trim($sk_options_carousel['archive_link']) != '') ? $sk_options_carousel['archive_link'] : ''); ?>" />
850
+ </div>
851
+ <div class="mec-form-row mec-carousel-head-text">
852
+ <label class="mec-col-4" for="mec_skin_carousel_head_text"><?php _e('Head Text', 'modern-events-calendar-lite'); ?></label>
853
+ <input type="text" class="mec-col-4" name="mec[sk-options][carousel][head_text]" id="mec_skin_carousel_head_text" value="<?php echo ((isset($sk_options_carousel['head_text']) and trim($sk_options_carousel['head_text']) != '') ? $sk_options_carousel['head_text'] : ''); ?>" />
854
+ </div>
855
  <!-- Slider View -->
856
  <div class="mec-skin-options-container mec-util-hidden" id="mec_slider_skin_options_container">
857
  <?php $sk_options_slider = isset($sk_options['slider']) ? $sk_options['slider'] : array(); ?>
app/features/mec/notifications.php CHANGED
@@ -77,12 +77,12 @@ $notifications = $this->main->get_notifications();
77
  </a>
78
  </li>
79
 
80
- <li class="wns-be-group-menu-li">
81
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
82
  <i class="mec-sl-support"></i>
83
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
84
  </a>
85
- </li>
86
 
87
  </ul>
88
  </div>
77
  </a>
78
  </li>
79
 
80
+ <!-- <li class="wns-be-group-menu-li">
81
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
82
  <i class="mec-sl-support"></i>
83
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
84
  </a>
85
+ </li> -->
86
 
87
  </ul>
88
  </div>
app/features/mec/regform.php CHANGED
@@ -76,12 +76,12 @@ $reg_fields = $this->main->get_reg_fields();
76
  </a>
77
  </li>
78
 
79
- <li class="wns-be-group-menu-li">
80
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
81
  <i class="mec-sl-support"></i>
82
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
83
  </a>
84
- </li>
85
 
86
  </ul>
87
  </div>
76
  </a>
77
  </li>
78
 
79
+ <!-- <li class="wns-be-group-menu-li">
80
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
81
  <i class="mec-sl-support"></i>
82
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
83
  </a>
84
+ </li> -->
85
 
86
  </ul>
87
  </div>
app/features/mec/settings.php CHANGED
@@ -5,6 +5,7 @@ defined('MECEXEC') or die();
5
  $settings = $this->main->get_settings();
6
  $socials = $this->main->get_social_networks();
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();
@@ -192,12 +193,6 @@ if($this->getPRO())
192
  </a>
193
  </li>
194
 
195
- <li id="" class="pr-be-group-menu-li">
196
- <a data-id= "avtivation_option" class="wns-be-group-tab-link-a WnTabLinks">
197
- <span class="pr-be-group-menu-title"><?php _e('MEC Activation', 'modern-events-calendar-lite'); ?></span>
198
- </a>
199
- </li>
200
-
201
  </ul>
202
  </li>
203
 
@@ -255,12 +250,12 @@ if($this->getPRO())
255
  </a>
256
  </li>
257
 
258
- <li class="wns-be-group-menu-li">
259
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
260
  <i class="mec-sl-support"></i>
261
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
262
  </a>
263
- </li>
264
 
265
  </ul>
266
  </div>
@@ -379,24 +374,139 @@ if($this->getPRO())
379
 
380
  <div class="mec-form-row">
381
  <label class="mec-col-3" for="mec_settings_default_skin_archive"><?php _e('Archive Page Skin', 'modern-events-calendar-lite'); ?></label>
382
- <div class="mec-col-4">
383
- <select id="mec_settings_default_skin_archive" name="mec[settings][default_skin_archive]">
384
  <?php foreach($archive_skins as $archive_skin): ?>
385
  <option value="<?php echo $archive_skin['skin']; ?>" <?php if(isset($settings['default_skin_archive']) and $archive_skin['skin'] == $settings['default_skin_archive']) echo 'selected="selected"'; ?>><?php echo $archive_skin['name']; ?></option>
386
  <?php endforeach; ?>
387
  </select>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  <a class="mec-tooltip" title="<?php esc_attr_e("Default value is Calendar/Monthly View", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
389
  </div>
390
  </div>
391
 
392
  <div class="mec-form-row">
393
  <label class="mec-col-3" for="mec_settings_default_skin_category"><?php _e('Category Page Skin', 'modern-events-calendar-lite'); ?></label>
394
- <div class="mec-col-4">
395
- <select id="mec_settings_default_skin_category" name="mec[settings][default_skin_category]">
396
- <?php foreach($archive_skins as $archive_skin): ?>
397
- <option value="<?php echo $archive_skin['skin']; ?>" <?php if(isset($settings['default_skin_category']) and $archive_skin['skin'] == $settings['default_skin_category']) echo 'selected="selected"'; if(!isset($settings['default_skin_category']) and $archive_skin['skin'] == 'list') echo 'selected="selected"'; ?>><?php echo $archive_skin['name']; ?></option>
398
  <?php endforeach; ?>
399
  </select>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  <a class="mec-tooltip" title="<?php esc_attr_e("Default value is List View", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
401
  </div>
402
  </div>
@@ -1291,46 +1401,6 @@ if($this->getPRO())
1291
  </div>
1292
  </div>
1293
 
1294
- <div id="avtivation_option" class="mec-options-fields">
1295
- <h4 class="mec-form-subtitle"><?php _e('MEC Activation', 'modern-events-calendar-lite'); ?></h4>
1296
-
1297
- <?php if(!$this->main->getPRO()): ?>
1298
- <div class="info-msg"><?php echo sprintf(__("%s is required to use this section.", '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>
1299
- <?php else: ?>
1300
- <div class="mec-form-row">
1301
- <label class="mec-col-3" for="mec_settings_purchase_code"><?php _e('Purchase Code', 'modern-events-calendar-lite'); ?></label>
1302
- <div class="mec-col-4">
1303
- <input type="text" name="mec[settings][purchase_code]" id="mec_settings_purchase_code" value="<?php echo (isset($settings['purchase_code']) ? $settings['purchase_code'] : ''); ?>" />
1304
- </div>
1305
- <?php if(!is_null($verify)): ?>
1306
- <span class="mec-purchase-verify mec-success"><?php _e('Verified', 'modern-events-calendar-lite'); ?></span>
1307
- <?php else: ?>
1308
- <span class="mec-purchase-verify mec-error"><?php _e('UnVerified', 'modern-events-calendar-lite'); ?></span>
1309
- <?php endif; ?>
1310
- <a class="mec-tooltip" title="<?php esc_attr_e("Please insert your purchase code validation. Read documentation for more information.", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1311
- </div>
1312
- <div class="mec-form-row">
1313
- <label class="mec-col-3" for="mec_settings_product_name"><?php _e('Product Name', 'modern-events-calendar-lite'); ?></label>
1314
- <div class="mec-col-4">
1315
- <select id="mec_settings_product_name" name="mec[settings][product_name]">
1316
- <option value="1 License for MEC Plugin" <?php echo ((isset($settings['product_name']) and $settings['product_name'] == "1 License for MEC Plugin") ? 'selected="selected"' : ''); ?> ><?php _e('1 License for MEC Plugin', 'modern-events-calendar-lite'); ?></option>
1317
- <option value="5 License for MEC Plugin" <?php echo ((isset($settings['product_name']) and $settings['product_name'] == "5 License for MEC Plugin") ? 'selected="selected"' : ''); ?> ><?php _e('5 License for MEC Plugin', 'modern-events-calendar-lite'); ?></option>
1318
- <option value="10 License for MEC Plugin" <?php echo ((isset($settings['product_name']) and $settings['product_name'] == "10 License for MEC Plugin") ? 'selected="selected"' : ''); ?> ><?php _e('10 License for MEC Plugin', 'modern-events-calendar-lite'); ?></option>
1319
- </select>
1320
- </div>
1321
- </div>
1322
- <!-- We will add this feature for remove purchase code from our database for next version -->
1323
- <?php if(!is_null($verify)): ?>
1324
- <!-- <div class="mec-form-row">
1325
- <label class="mec-col-3" for="mec_settings_purchase_code"><?php _e('MEC Deactivation', 'modern-events-calendar-lite'); ?></label>
1326
- <div class="mec-col-4">
1327
- <a target="_blank" class="remove-activation" href="http://webnus.co/api/remove?id=<?php echo $settings['purchase_code']; ?>"><?php _e('Deactivate', 'modern-events-calendar-lite'); ?></a>
1328
- </div>
1329
- <a class="mec-tooltip" title="<?php esc_attr_e("For deactivation first delete your purchase from above field then press save after that click on deactivate for deactivate this purchase code from this domain then you can activate another domain.", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
1330
- </div>-->
1331
- <?php endif; ?>
1332
- <?php endif; ?>
1333
- </div>
1334
  <div class="mec-options-fields">
1335
  <?php wp_nonce_field('mec_options_form'); ?>
1336
  <button style="display: none;" id="mec_settings_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
@@ -1350,7 +1420,7 @@ if($this->getPRO())
1350
 
1351
  <script type="text/javascript">
1352
  jQuery(document).ready(function()
1353
- {
1354
  jQuery('.WnTabLinks').each(function() {
1355
  var ContentId = jQuery(this).attr('data-id');
1356
  jQuery(this).click(function (){
@@ -1379,6 +1449,24 @@ jQuery(document).ready(function()
1379
  });
1380
  });
1381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1382
  jQuery("#mec_settings_form").on('submit', function(event)
1383
  {
1384
  event.preventDefault();
5
  $settings = $this->main->get_settings();
6
  $socials = $this->main->get_social_networks();
7
  $archive_skins = $this->main->get_archive_skins();
8
+ $category_skins = $this->main->get_category_skins();
9
 
10
  $fees = isset($settings['fees']) ? $settings['fees'] : array();
11
  $ticket_variations = isset($settings['ticket_variations']) ? $settings['ticket_variations'] : array();
193
  </a>
194
  </li>
195
 
 
 
 
 
 
 
196
  </ul>
197
  </li>
198
 
250
  </a>
251
  </li>
252
 
253
+ <!-- <li class="wns-be-group-menu-li">
254
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
255
  <i class="mec-sl-support"></i>
256
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
257
  </a>
258
+ </li> -->
259
 
260
  </ul>
261
  </div>
374
 
375
  <div class="mec-form-row">
376
  <label class="mec-col-3" for="mec_settings_default_skin_archive"><?php _e('Archive Page Skin', 'modern-events-calendar-lite'); ?></label>
377
+ <div class="mec-col-8">
378
+ <select id="mec_settings_default_skin_archive" name="mec[settings][default_skin_archive]" onchange="mec_archive_skin_style_changed(this.value);">
379
  <?php foreach($archive_skins as $archive_skin): ?>
380
  <option value="<?php echo $archive_skin['skin']; ?>" <?php if(isset($settings['default_skin_archive']) and $archive_skin['skin'] == $settings['default_skin_archive']) echo 'selected="selected"'; ?>><?php echo $archive_skin['name']; ?></option>
381
  <?php endforeach; ?>
382
  </select>
383
+ <span class="mec-archive-skins mec-archive-custom-skins">
384
+ <input type="text" placeholder="<?php esc_html_e('Put shortcode...', 'modern-events-calendar-lite'); ?>" id="mec_settings_custom_archive" name="mec[settings][custom_archive]" value='<?php echo ((isset($settings['custom_archive']) and trim($settings['custom_archive']) != '') ? $settings['custom_archive'] : ''); ?>' />
385
+ </span>
386
+ <span class="mec-archive-skins mec-archive-full_calendar-skins">
387
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
388
+ </span>
389
+ <span class="mec-archive-skins mec-archive-yearly_view-skins">
390
+ <input type="text" placeholder="<?php esc_html_e('Modern Style', 'modern-events-calendar-lite'); ?>" disabled />
391
+ </span>
392
+ <span class="mec-archive-skins mec-archive-monthly_view-skins">
393
+ <select id="mec_settings_monthly_view_skin_archive" name="mec[settings][monthly_view_archive_skin]">
394
+ <option value="classic" <?php if(isset($settings['monthly_view_archive_skin']) && $settings['monthly_view_archive_skin'] == 'classic') echo 'selected="selected"'; ?>><?php echo esc_html__('Classic' , 'modern-events-calendar-lite'); ?></option>
395
+ <option value="clean" <?php if(isset($settings['monthly_view_archive_skin']) && $settings['monthly_view_archive_skin'] == 'clean') echo 'selected="selected"'; ?>><?php echo esc_html__('Clean' , 'modern-events-calendar-lite'); ?></option>
396
+ <option value="modern" <?php if(isset($settings['monthly_view_archive_skin']) && $settings['monthly_view_archive_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
397
+ <option value="novel" <?php if(isset($settings['monthly_view_archive_skin']) && $settings['monthly_view_archive_skin'] == 'novel') echo 'selected="selected"'; ?>><?php echo esc_html__('Novel' , 'modern-events-calendar-lite'); ?></option>
398
+ <option value="simple" <?php if(isset($settings['monthly_view_archive_skin']) && $settings['monthly_view_archive_skin'] == 'simple') echo 'selected="selected"'; ?>><?php echo esc_html__('Simple' , 'modern-events-calendar-lite'); ?></option>
399
+ </select>
400
+ </span>
401
+ <span class="mec-archive-skins mec-archive-weekly_view-skins">
402
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
403
+ </span>
404
+ <span class="mec-archive-skins mec-archive-daily_view-skins">
405
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
406
+ </span>
407
+ <span class="mec-archive-skins mec-archive-timetable-skins">
408
+ <select id="mec_settings_timetable_skin_archive" name="mec[settings][timetable_archive_skin]">
409
+ <option value="modern" <?php if(isset($settings['timetable_archive_skin']) && $settings['timetable_archive_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
410
+ <option value="clean" <?php if(isset($settings['timetable_archive_skin']) && $settings['timetable_archive_skin'] == 'clean') echo 'selected="selected"'; ?>><?php echo esc_html__('Clean' , 'modern-events-calendar-lite'); ?></option>
411
+ </select>
412
+ </span>
413
+ <span class="mec-archive-skins mec-archive-masonry-skins">
414
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
415
+ </span>
416
+ <span class="mec-archive-skins mec-archive-list-skins">
417
+ <select id="mec_settings_list_skin_archive" name="mec[settings][list_archive_skin]">
418
+ <option value="classic" <?php if(isset($settings['list_archive_skin']) && $settings['list_archive_skin'] == 'classic') echo 'selected="selected"'; ?>><?php echo esc_html__('Classic' , 'modern-events-calendar-lite'); ?></option>
419
+ <option value="minimal" <?php if(isset($settings['list_archive_skin']) && $settings['list_archive_skin'] == 'minimal') echo 'selected="selected"'; ?>><?php echo esc_html__('Minimal' , 'modern-events-calendar-lite'); ?></option>
420
+ <option value="modern" <?php if(isset($settings['list_archive_skin']) && $settings['list_archive_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
421
+ <option value="standard" <?php if(isset($settings['list_archive_skin']) && $settings['list_archive_skin'] == 'standard') echo 'selected="selected"'; ?>><?php echo esc_html__('Standard' , 'modern-events-calendar-lite'); ?></option>
422
+ <option value="accordion" <?php if(isset($settings['list_archive_skin']) && $settings['list_archive_skin'] == 'accordion') echo 'selected="selected"'; ?>><?php echo esc_html__('Accordion' , 'modern-events-calendar-lite'); ?></option>
423
+ </select>
424
+ </span>
425
+ <span class="mec-archive-skins mec-archive-grid-skins">
426
+ <select id="mec_settings_grid_skin_archive" name="mec[settings][grid_archive_skin]">
427
+ <option value="classic" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'classic') echo 'selected="selected"'; ?>><?php echo esc_html__('Classic' , 'modern-events-calendar-lite'); ?></option>
428
+ <option value="clean" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'clean') echo 'selected="selected"'; ?>><?php echo esc_html__('Clean' , 'modern-events-calendar-lite'); ?></option>
429
+ <option value="minimal" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'minimal') echo 'selected="selected"'; ?>><?php echo esc_html__('Minimal' , 'modern-events-calendar-lite'); ?></option>
430
+ <option value="modern" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
431
+ <option value="simple" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'simple') echo 'selected="selected"'; ?>><?php echo esc_html__('Simple' , 'modern-events-calendar-lite'); ?></option>
432
+ <option value="colorful" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'colorful') echo 'selected="selected"'; ?>><?php echo esc_html__('colorful' , 'modern-events-calendar-lite'); ?></option>
433
+ <option value="novel" <?php if(isset($settings['grid_archive_skin']) && $settings['grid_archive_skin'] == 'novel') echo 'selected="selected"'; ?>><?php echo esc_html__('Novel' , 'modern-events-calendar-lite'); ?></option>
434
+ </select>
435
+ </span>
436
+ <span class="mec-archive-skins mec-archive-agenda-skins">
437
+ <input type="text" placeholder="<?php esc_html_e('Clean Style', 'modern-events-calendar-lite'); ?>" disabled />
438
+ </span>
439
+ <span class="mec-archive-skins mec-archive-map-skins">
440
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
441
+ </span>
442
  <a class="mec-tooltip" title="<?php esc_attr_e("Default value is Calendar/Monthly View", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
443
  </div>
444
  </div>
445
 
446
  <div class="mec-form-row">
447
  <label class="mec-col-3" for="mec_settings_default_skin_category"><?php _e('Category Page Skin', 'modern-events-calendar-lite'); ?></label>
448
+ <div class="mec-col-8">
449
+ <select id="mec_settings_default_skin_category" name="mec[settings][default_skin_category]" onchange="mec_category_skin_style_changed(this.value);">
450
+ <?php foreach($category_skins as $category_skin): ?>
451
+ <option value="<?php echo $category_skin['skin']; ?>" <?php if(isset($settings['default_skin_category']) and $category_skin['skin'] == $settings['default_skin_category']) echo 'selected="selected"'; if(!isset($settings['default_skin_category']) and $category_skin['skin'] == 'list') echo 'selected="selected"'; ?>><?php echo $category_skin['name']; ?></option>
452
  <?php endforeach; ?>
453
  </select>
454
+ <span class="mec-category-skins mec-category-full_calendar-skins">
455
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
456
+ </span>
457
+ <span class="mec-category-skins mec-category-yearly_view-skins">
458
+ <input type="text" placeholder="<?php esc_html_e('Modern Style', 'modern-events-calendar-lite'); ?>" disabled />
459
+ </span>
460
+ <span class="mec-category-skins mec-category-monthly_view-skins">
461
+ <select id="mec_settings_monthly_view_skin_category" name="mec[settings][monthly_view_category_skin]">
462
+ <option value="classic" <?php if(isset($settings['monthly_view_category_skin']) && $settings['monthly_view_category_skin'] == 'classic') echo 'selected="selected"'; ?>><?php echo esc_html__('Classic' , 'modern-events-calendar-lite'); ?></option>
463
+ <option value="clean" <?php if(isset($settings['monthly_view_category_skin']) && $settings['monthly_view_category_skin'] == 'clean') echo 'selected="selected"'; ?>><?php echo esc_html__('Clean' , 'modern-events-calendar-lite'); ?></option>
464
+ <option value="modern" <?php if(isset($settings['monthly_view_category_skin']) && $settings['monthly_view_category_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
465
+ <option value="novel" <?php if(isset($settings['monthly_view_category_skin']) && $settings['monthly_view_category_skin'] == 'novel') echo 'selected="selected"'; ?>><?php echo esc_html__('Novel' , 'modern-events-calendar-lite'); ?></option>
466
+ <option value="simple" <?php if(isset($settings['monthly_view_category_skin']) && $settings['monthly_view_category_skin'] == 'simple') echo 'selected="selected"'; ?>><?php echo esc_html__('Simple' , 'modern-events-calendar-lite'); ?></option>
467
+ </select>
468
+ </span>
469
+ <span class="mec-category-skins mec-category-weekly_view-skins">
470
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
471
+ </span>
472
+ <span class="mec-category-skins mec-category-daily_view-skins">
473
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
474
+ </span>
475
+ <span class="mec-category-skins mec-category-timetable-skins">
476
+ <select id="mec_settings_timetable_skin_category" name="mec[settings][timetable_category_skin]">
477
+ <option value="modern" <?php if(isset($settings['timetable_category_skin']) && $settings['timetable_category_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
478
+ <option value="clean" <?php if(isset($settings['timetable_category_skin']) && $settings['timetable_category_skin'] == 'clean') echo 'selected="selected"'; ?>><?php echo esc_html__('Clean' , 'modern-events-calendar-lite'); ?></option>
479
+ </select>
480
+ </span>
481
+ <span class="mec-category-skins mec-category-masonry-skins">
482
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
483
+ </span>
484
+ <span class="mec-category-skins mec-category-list-skins">
485
+ <select id="mec_settings_list_skin_category" name="mec[settings][list_category_skin]">
486
+ <option value="classic" <?php if(isset($settings['list_category_skin']) && $settings['list_category_skin'] == 'classic') echo 'selected="selected"'; ?>><?php echo esc_html__('Classic' , 'modern-events-calendar-lite'); ?></option>
487
+ <option value="minimal" <?php if(isset($settings['list_category_skin']) && $settings['list_category_skin'] == 'minimal') echo 'selected="selected"'; ?>><?php echo esc_html__('Minimal' , 'modern-events-calendar-lite'); ?></option>
488
+ <option value="modern" <?php if(isset($settings['list_category_skin']) && $settings['list_category_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
489
+ <option value="standard" <?php if(isset($settings['list_category_skin']) && $settings['list_category_skin'] == 'standard') echo 'selected="selected"'; ?>><?php echo esc_html__('Standard' , 'modern-events-calendar-lite'); ?></option>
490
+ <option value="accordion" <?php if(isset($settings['list_category_skin']) && $settings['list_category_skin'] == 'accordion') echo 'selected="selected"'; ?>><?php echo esc_html__('Accordion' , 'modern-events-calendar-lite'); ?></option>
491
+ </select>
492
+ </span>
493
+ <span class="mec-category-skins mec-category-grid-skins">
494
+ <select id="mec_settings_grid_skin_category" name="mec[settings][grid_category_skin]">
495
+ <option value="classic" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'classic') echo 'selected="selected"'; ?>><?php echo esc_html__('Classic' , 'modern-events-calendar-lite'); ?></option>
496
+ <option value="clean" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'clean') echo 'selected="selected"'; ?>><?php echo esc_html__('Clean' , 'modern-events-calendar-lite'); ?></option>
497
+ <option value="minimal" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'minimal') echo 'selected="selected"'; ?>><?php echo esc_html__('Minimal' , 'modern-events-calendar-lite'); ?></option>
498
+ <option value="modern" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'modern') echo 'selected="selected"'; ?>><?php echo esc_html__('Modern' , 'modern-events-calendar-lite'); ?></option>
499
+ <option value="simple" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'simple') echo 'selected="selected"'; ?>><?php echo esc_html__('Simple' , 'modern-events-calendar-lite'); ?></option>
500
+ <option value="colorful" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'colorful') echo 'selected="selected"'; ?>><?php echo esc_html__('colorful' , 'modern-events-calendar-lite'); ?></option>
501
+ <option value="novel" <?php if(isset($settings['grid_category_skin']) && $settings['grid_category_skin'] == 'novel') echo 'selected="selected"'; ?>><?php echo esc_html__('Novel' , 'modern-events-calendar-lite'); ?></option>
502
+ </select>
503
+ </span>
504
+ <span class="mec-category-skins mec-category-agenda-skins">
505
+ <input type="text" placeholder="<?php esc_html_e('Clean Style', 'modern-events-calendar-lite'); ?>" disabled />
506
+ </span>
507
+ <span class="mec-category-skins mec-category-map-skins">
508
+ <input type="text" placeholder="<?php esc_html_e('There is no skins', 'modern-events-calendar-lite'); ?>" disabled />
509
+ </span>
510
  <a class="mec-tooltip" title="<?php esc_attr_e("Default value is List View", 'modern-events-calendar-lite'); ?>"><i title="" class="dashicons-before dashicons-editor-help"></i></a>
511
  </div>
512
  </div>
1401
  </div>
1402
  </div>
1403
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1404
  <div class="mec-options-fields">
1405
  <?php wp_nonce_field('mec_options_form'); ?>
1406
  <button style="display: none;" id="mec_settings_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Save Changes', 'modern-events-calendar-lite'); ?></button>
1420
 
1421
  <script type="text/javascript">
1422
  jQuery(document).ready(function()
1423
+ {
1424
  jQuery('.WnTabLinks').each(function() {
1425
  var ContentId = jQuery(this).attr('data-id');
1426
  jQuery(this).click(function (){
1449
  });
1450
  });
1451
 
1452
+ var archive_value = jQuery('#mec_settings_default_skin_archive').val();
1453
+ function mec_archive_skin_style_changed(archive_value)
1454
+ {
1455
+ jQuery('.mec-archive-skins').hide();
1456
+ jQuery('.mec-archive-skins.mec-archive-'+archive_value+'-skins').show();
1457
+ }
1458
+ mec_archive_skin_style_changed(archive_value);
1459
+
1460
+ var category_value = jQuery('#mec_settings_default_skin_category').val();
1461
+ function mec_category_skin_style_changed(category_value)
1462
+ {
1463
+ jQuery('.mec-category-skins').hide();
1464
+ jQuery('.mec-category-skins.mec-category-'+category_value+'-skins').show();
1465
+ }
1466
+ mec_category_skin_style_changed(category_value);
1467
+
1468
+
1469
+
1470
  jQuery("#mec_settings_form").on('submit', function(event)
1471
  {
1472
  event.preventDefault();
app/features/mec/styles.php CHANGED
@@ -78,12 +78,12 @@ $styles = $this->main->get_styles();
78
  </a>
79
  </li>
80
 
81
- <li class="wns-be-group-menu-li">
82
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
83
  <i class="mec-sl-support"></i>
84
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
85
  </a>
86
- </li>
87
  </ul>
88
  </div>
89
 
78
  </a>
79
  </li>
80
 
81
+ <!-- <li class="wns-be-group-menu-li">
82
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
83
  <i class="mec-sl-support"></i>
84
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
85
  </a>
86
+ </li> -->
87
  </ul>
88
  </div>
89
 
app/features/mec/styling.php CHANGED
@@ -105,12 +105,12 @@ if(is_array($fonts))
105
  </a>
106
  </li>
107
 
108
- <li class="wns-be-group-menu-li">
109
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
110
  <i class="mec-sl-support"></i>
111
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
112
  </a>
113
- </li>
114
 
115
  </ul>
116
  </div>
105
  </a>
106
  </li>
107
 
108
+ <!-- <li class="wns-be-group-menu-li">
109
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
110
  <i class="mec-sl-support"></i>
111
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
112
  </a>
113
+ </li> -->
114
 
115
  </ul>
116
  </div>
app/features/mec/support-page.php ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
3
+ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
4
+ ?>
5
+ <div id="webnus-dashboard" class="wrap about-wrap">
6
+ <div class="welcome-head w-clearfix">
7
+ <div class="w-row">
8
+ <div class="w-col-sm-9">
9
+ <h1> <?php echo __('Support', 'modern-events-calendar-lite'); ?> </h1>
10
+ <div class="w-welcome">
11
+ <div class="support-page-links link-to-doc"><a href="https://webnus.net/dox/modern-events-calendar/" target="_blank"><?php esc_html_e('Documentation' , 'modern-events-calendar-lite'); ?></a></div>
12
+ <div class="support-page-links link-to-videos"><a href="https://webnus.net/dox/modern-events-calendar/video-tutorials/" target="_blank"><?php esc_html_e('All videos' , 'modern-events-calendar-lite'); ?></a></div>
13
+ <div class="support-page-links link-to-articles"><a href="https://webnus.ticksy.com/articles/100004962/" target="_blank"><?php esc_html_e('View all Articles' , 'modern-events-calendar-lite'); ?></a></div>
14
+ <p>
15
+ <?php esc_html_e('If you have any questions regarding Modern Events Calendar and how to use it, you can use the following four methods we have prepared in this page. The detailed documentations of MEC along with its instructional videos will help you have a great experience working with it.So, if you need futher instructions using the plugin, please first refer to the following to find your answers.' , 'modern-events-calendar-lite'); ?>
16
+ </p>
17
+ </div>
18
+ </div>
19
+ <div class="w-col-sm-3">
20
+ <img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/mec-logo-w.png'; ?>" />
21
+ <span class="w-theme-version"><?php echo __('Version', 'modern-events-calendar-lite'); ?> <?php echo MEC_VERSION; ?></span>
22
+ </div>
23
+ </div>
24
+ </div>
25
+ <div class="welcome-content w-clearfix extra">
26
+ <?php if(current_user_can('read')): ?>
27
+ <div class="w-row">
28
+ <div class="w-col-sm-12">
29
+ <div class="w-box support-page searchbox">
30
+ <div class="w-box-content">
31
+ <p><?php esc_html_e('Advice and answers from the Webnus Team'); ?></p>
32
+ <div class="search-form">
33
+ <form action="https://intercom.help/webnus" method="">
34
+ <input type="text" placeholder="<?php esc_html_e('Search...'); ?>" name="q">
35
+ <button><i class="mec-sl-magnifier"></i></button>
36
+ </form>
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ <div class="w-row">
43
+ <div class="w-col-sm-3">
44
+ <div class="w-box support-page videobox">
45
+ <div class="w-box-head">
46
+ <?php _e('Quick Setup', 'modern-events-calendar-lite'); ?>
47
+ </div>
48
+ <div class="w-box-content">
49
+ <ul>
50
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Download the Plugin', 'modern-events-calendar-lite'); ?></li>
51
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Install and Activate the Plugin', 'modern-events-calendar-lite'); ?></li>
52
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Add a New Event', 'modern-events-calendar-lite'); ?></li>
53
+ </ul>
54
+ <div class="w-button">
55
+ <a href="https://youtu.be/ZDzcAEtdkC0" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ <div class="w-col-sm-3">
61
+ <div class="w-box support-page videobox">
62
+ <div class="w-box-head">
63
+ <?php _e('Activate License', 'modern-events-calendar-lite'); ?>
64
+ </div>
65
+ <div class="w-box-content">
66
+ <ul>
67
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Login to Dashboard', 'modern-events-calendar-lite'); ?></li>
68
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Get the License Key', 'modern-events-calendar-lite'); ?></li>
69
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Activate the plugin', 'modern-events-calendar-lite'); ?></li>
70
+ </ul>
71
+ <div class="w-button">
72
+ <a href="https://youtu.be/V8DAZXuVxrQ" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ </div>
77
+ <div class="w-col-sm-3">
78
+ <div class="w-box support-page videobox">
79
+ <div class="w-box-head">
80
+ <?php _e('New Event', 'modern-events-calendar-lite'); ?>
81
+ </div>
82
+ <div class="w-box-content">
83
+ <ul>
84
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Add New Events, Date and Time', 'modern-events-calendar-lite'); ?></li>
85
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Tags, Categories, Organizer, Location', 'modern-events-calendar-lite'); ?></li>
86
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Hourly Schedule, Set Up Shortcodes', 'modern-events-calendar-lite'); ?></li>
87
+ </ul>
88
+ <div class="w-button">
89
+ <a href="https://youtu.be/cnVy2YzDMOk" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ <div class="w-col-sm-3">
95
+ <div class="w-box support-page videobox">
96
+ <div class="w-box-head">
97
+ <?php _e('Enable Booking', 'modern-events-calendar-lite'); ?>
98
+ </div>
99
+ <div class="w-box-content">
100
+ <ul>
101
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Enable Booking', 'modern-events-calendar-lite'); ?></li>
102
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Customize the Booking Form', 'modern-events-calendar-lite'); ?></li>
103
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Set Up a Payment Gateway', 'modern-events-calendar-lite'); ?></li>
104
+ </ul>
105
+ <div class="w-button">
106
+ <a href="https://youtu.be/7X58lpjFDh8" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </div>
111
+ </div>
112
+
113
+ <div class="w-row">
114
+ <div class="w-col-sm-3">
115
+ <div class="w-box support-page videobox">
116
+ <div class="w-box-head">
117
+ <?php _e('Add booking form to event', 'modern-events-calendar-lite'); ?>
118
+ </div>
119
+ <div class="w-box-content">
120
+ <ul>
121
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Enable Booking from Settings', 'modern-events-calendar-lite'); ?></li>
122
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Set Up a Booking Form', 'modern-events-calendar-lite'); ?></li>
123
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Customize the Booking Form', 'modern-events-calendar-lite'); ?></li>
124
+ </ul>
125
+ <div class="w-button">
126
+ <a href="https://youtu.be/difbDGz6blU" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ <div class="w-col-sm-3">
132
+ <div class="w-box support-page videobox">
133
+ <div class="w-box-head">
134
+ <?php _e('Create Shortcodes', 'modern-events-calendar-lite'); ?>
135
+ </div>
136
+ <div class="w-box-content">
137
+ <ul>
138
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Create a New Shortcode', 'modern-events-calendar-lite'); ?></li>
139
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Customize Shortcodes', 'modern-events-calendar-lite'); ?></li>
140
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Use Filters in Shortcodes', 'modern-events-calendar-lite'); ?></li>
141
+ </ul>
142
+ <div class="w-button">
143
+ <a href="https://youtu.be/iRIBZZlYq54" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ <div class="w-col-sm-3">
149
+ <div class="w-box support-page videobox">
150
+ <div class="w-box-head">
151
+ <?php _e('WooCommerce gateways', 'modern-events-calendar-lite'); ?>
152
+ </div>
153
+ <div class="w-box-content">
154
+ <ul>
155
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Install and Activate WooCommerce', 'modern-events-calendar-lite'); ?></li>
156
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Integrate with MEC', 'modern-events-calendar-lite'); ?></li>
157
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Set Up WooCommerce Gateway', 'modern-events-calendar-lite'); ?></li>
158
+ </ul>
159
+ <div class="w-button">
160
+ <a href="https://youtu.be/ZI9aWMtwYWE" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ <div class="w-col-sm-3">
166
+ <div class="w-box support-page videobox">
167
+ <div class="w-box-head">
168
+ <?php _e('Settings', 'modern-events-calendar-lite'); ?>
169
+ </div>
170
+ <div class="w-box-content">
171
+ <ul>
172
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('An Overview of the Settings', 'modern-events-calendar-lite'); ?></li>
173
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Set Up Different Settings', 'modern-events-calendar-lite'); ?></li>
174
+ <li><i class="mec-sl-arrow-right-circle"></i><?php echo esc_html__('Use Different Options', 'modern-events-calendar-lite'); ?></li>
175
+ </ul>
176
+ <div class="w-button">
177
+ <a href="https://youtu.be/mdXWngl4Lso" data-lity><i class="mec-sl-control-play"></i><?php echo esc_html__('Watch Video', 'modern-events-calendar-lite'); ?></a>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <div class="w-row">
185
+ <div class="w-col-sm-6">
186
+ <div class="w-box support-page faq-box">
187
+ <div class="w-box-head">
188
+ <?php _e('FAQ', 'modern-events-calendar-lite'); ?>
189
+ </div>
190
+ <div class="w-box-content">
191
+ <div class="mec-faq-accordion">
192
+ <div class="mec-faq-accordion-trigger"><a href="" class="active"><?php echo esc_html__('How should I update plugin?', 'modern-events-calendar-lite'); ?></a></div>
193
+ <div class="mec-faq-accordion-content active">
194
+ <?php echo sprintf(__('You have two options:<br>
195
+ 1- Uploading the plugin file using FTP. For more information, please <a href="%s" target="_blank">click here</a>.<br>
196
+ 2- Using the auto-update feature which needs the adding of the purchase code in the corresponding section in the plugin. For more information, please <a href="%s" target="_blank">click here</a>.', 'modern-events-calendar-lite') , 'https://webnus.net/dox/modern-events-calendar/how-to-update-manually-plugin/', 'https://webnus.net/dox/modern-events-calendar/how-to-auto-update-plugin/' ); ?>
197
+ </div>
198
+
199
+ <div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Do I lose all my data or customization if I update MEC?', 'modern-events-calendar-lite'); ?></a></div>
200
+ <div class="mec-faq-accordion-content"><?php esc_html_e('If you’ve added a file to the main folder of MEC, this file will be removed after the update. Therefore, please do get a full back up before proceeding with the update process.', 'modern-events-calendar-lite'); ?>
201
+ </div>
202
+
203
+ <div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I customize the event pages?', 'modern-events-calendar-lite'); ?></a></div>
204
+ <div class="mec-faq-accordion-content">
205
+ <?php echo sprintf(__('Yes, it is possible. In order to see the related documentations, please <a href="%s" target="_blank">click here</a>.', 'modern-events-calendar-lite') , 'https://webnus.net/dox/modern-events-calendar/mec-theme-integration-guide/' ); ?>
206
+ </div>
207
+
208
+ <div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Does MEC have default languages or it needs to be translated?', 'modern-events-calendar-lite'); ?></a></div>
209
+ <div class="mec-faq-accordion-content">
210
+ <?php echo sprintf(__('Yes, for some of the languages MEC has the translation file as default. However, since these translations have been done by the users, they may be incomplete, hence updating them might be required. For more information, please <a href="%s" target="_blank">click here</a>.', 'modern-events-calendar-lite') , 'https://webnus.net/dox/modern-events-calendar/translate-mec/' ); ?>
211
+ </div>
212
+
213
+ <div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I have more than one calendar in one website?', 'modern-events-calendar-lite'); ?></a></div>
214
+ <div class="mec-faq-accordion-content"><?php esc_html_e( 'Unfortunately, MEC does not support more than 1 calendar in a single website, however, it will be added in its upcoming updates.' , 'modern-events-calendar-lite' ); ?></div>
215
+
216
+ <div class="mec-faq-accordion-trigger"><a href=""><?php echo esc_html__('Can I import/export from/to MEC?', 'modern-events-calendar-lite'); ?></a></div>
217
+ <div class="mec-faq-accordion-content"><?php esc_html_e( 'Yes, you can get an XML export from MEC data or import the file you\'ve exported to MEC. Also, if you are using one of the following plugins (The event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then you can easily transfer your events to MEC.', 'modern-events-calendar-lite' ); ?></div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ <div class="w-col-sm-6">
223
+ <div class="w-box support-page articles-box">
224
+ <div class="w-box-head">
225
+ <?php _e('Articles', 'modern-events-calendar-lite'); ?>
226
+ </div>
227
+ <div class="w-box-content">
228
+ <a href="https://webnus.ticksy.com/article/13645/" target="_blank"><?php esc_html_e('MEC And Integrate With WooCommerce' , 'modern-events-calendar-lite'); ?></a>
229
+ <a href="https://webnus.ticksy.com/article/13642/" target="_blank"><?php esc_html_e('Create Events With Your Page Builder' , 'modern-events-calendar-lite'); ?></a>
230
+ <a href="https://webnus.ticksy.com/article/9621/" target="_blank"><?php esc_html_e('Why can\'t I use HTML tags?' , 'modern-events-calendar-lite'); ?></a>
231
+ <a href="https://webnus.ticksy.com/article/13484/" target="_blank"><?php esc_html_e('Setup Date Option On Shortcodes' , 'modern-events-calendar-lite'); ?></a>
232
+ <a href="https://webnus.ticksy.com/article/8604/" target="_blank"><?php esc_html_e('I want to export booking, what should I do?' , 'modern-events-calendar-lite'); ?></a>
233
+ <a href="https://webnus.ticksy.com/article/8601/" target="_blank"><?php esc_html_e('I Can\'t Export iCal' , 'modern-events-calendar-lite'); ?></a>
234
+ <a href="https://webnus.ticksy.com/article/8600/" target="_blank"><?php esc_html_e('Booking Module Not Working' , 'modern-events-calendar-lite'); ?></a>
235
+ <a href="https://webnus.ticksy.com/article/8598/" target="_blank"><?php esc_html_e('Translate MEC' , 'modern-events-calendar-lite'); ?></a>
236
+ <a href="https://webnus.ticksy.com/article/8602/" target="_blank"><?php esc_html_e('No Event Found!' , 'modern-events-calendar-lite'); ?></a>
237
+ <a href="https://webnus.ticksy.com/article/10488/" target="_blank"><?php esc_html_e('MEC Theme Integration Guide' , 'modern-events-calendar-lite'); ?></a>
238
+ <a href="https://webnus.ticksy.com/article/8603/" target="_blank"><?php esc_html_e('Can I Override MEC Template ?' , 'modern-events-calendar-lite'); ?></a>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ <?php if($this->getPRO()) : ?>
244
+ <div class="w-row">
245
+ <div class="w-col-sm-12">
246
+ <div class="w-box support-page mec-ticksy">
247
+ <div class="w-box-content">
248
+ <p><?php esc_html_e('Webnus is an elite and trusted author with a high percentage of satisfied users. If you have any issues please don\'t hesitate to contact us, we will reply as soon as possible.' , 'modern-events-calendar-lite'); ?></p>
249
+ <a href="https://webnus.ticksy.com/" target="_blank"><?php esc_html_e('Go to support forum','modern-events-calendar-lite'); ?></a>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ <?php endif; ?>
255
+ <?php endif; ?>
256
+ </div>
257
+ </div>
258
+ <script>
259
+ (function($) {
260
+
261
+ var allPanels = $('.mec-faq-accordion > .mec-faq-accordion-content');
262
+ $('.mec-faq-accordion>.mec-faq-accordion-content.active').show();
263
+
264
+ $('.mec-faq-accordion > .mec-faq-accordion-trigger > a').click(function() {
265
+ $this = $(this);
266
+ $target = $this.parent().next();
267
+
268
+ if(!$target.hasClass('active')){
269
+ allPanels.removeClass('active').slideUp();
270
+ $target.addClass('active').slideDown();
271
+ $('.mec-faq-accordion > .mec-faq-accordion-trigger > a').removeClass('active')
272
+ $this.addClass('active');
273
+ } else {
274
+ $this.removeClass('active');
275
+ $target.removeClass('active').slideUp();
276
+ }
277
+ return false;
278
+ });
279
+
280
+ })(jQuery);
281
+ </script>
282
+ <?php if($this->getPRO()) : ?>
283
+ <script>
284
+ var APP_ID = "w23d92wv";
285
+
286
+ window.intercomSettings = {
287
+ app_id: APP_ID
288
+ };
289
+ </script>
290
+ <script>(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',w.intercomSettings);}else{var d=document;var i=function(){i.c(arguments);};i.q=[];i.c=function(args){i.q.push(args);};w.Intercom=i;var l=function(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/' + APP_ID;var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);};if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();</script>
291
+ <?php endif; ?>
app/features/mec/support.php CHANGED
@@ -74,12 +74,12 @@ defined('MECEXEC') or die();
74
  </a>
75
  </li>
76
 
77
- <li class="wns-be-group-menu-li active">
78
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
79
  <i class="mec-sl-support"></i>
80
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
81
  </a>
82
- </li>
83
 
84
  </ul>
85
  </div>
74
  </a>
75
  </li>
76
 
77
+ <!-- <li class="wns-be-group-menu-li active">
78
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-support'); ?>" id="" class="wns-be-group-tab-link-a">
79
  <i class="mec-sl-support"></i>
80
  <span class="wns-be-group-menu-title"><?php _e('Support', 'modern-events-calendar-lite'); ?></span>
81
  </a>
82
+ </li> -->
83
 
84
  </ul>
85
  </div>
app/features/update.php CHANGED
@@ -46,6 +46,7 @@ class MEC_feature_update extends MEC_base
46
  if(version_compare($version, '2.2.0', '<')) $this->version220();
47
  if(version_compare($version, '2.9.0', '<')) $this->version290();
48
  if(version_compare($version, '3.2.0', '<')) $this->version320();
 
49
 
50
  // Update to latest version to prevent running the code twice
51
  update_option('mec_version', $this->main->get_version());
@@ -155,4 +156,42 @@ class MEC_feature_update extends MEC_base
155
  $this->db->q("ALTER TABLE `#__mec_events` CHANGE `weekdays` `weekdays` VARCHAR(80);");
156
  $this->db->q("ALTER TABLE `#__mec_events` ADD INDEX( `start`, `end`, `repeat`, `rinterval`, `year`, `month`, `day`, `week`, `weekday`, `weekdays`, `time_start`, `time_end`);");
157
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  }
46
  if(version_compare($version, '2.2.0', '<')) $this->version220();
47
  if(version_compare($version, '2.9.0', '<')) $this->version290();
48
  if(version_compare($version, '3.2.0', '<')) $this->version320();
49
+ if(version_compare($version, '3.5.0', '<')) $this->version350();
50
 
51
  // Update to latest version to prevent running the code twice
52
  update_option('mec_version', $this->main->get_version());
156
  $this->db->q("ALTER TABLE `#__mec_events` CHANGE `weekdays` `weekdays` VARCHAR(80);");
157
  $this->db->q("ALTER TABLE `#__mec_events` ADD INDEX( `start`, `end`, `repeat`, `rinterval`, `year`, `month`, `day`, `week`, `weekday`, `weekdays`, `time_start`, `time_end`);");
158
  }
159
+
160
+ public function version350()
161
+ {
162
+ $this->db->q("CREATE TABLE IF NOT EXISTS `#__mec_dates` (
163
+ `id` int(10) UNSIGNED NOT NULL,
164
+ `post_id` int(10) NOT NULL,
165
+ `dstart` date NOT NULL,
166
+ `dend` date NOT NULL,
167
+ `type` enum('include','exclude') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'include'
168
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;");
169
+
170
+ $this->db->q("ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `type` (`type`);");
171
+ $this->db->q("ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;");
172
+
173
+ $custom_days = $this->db->select("SELECT * FROM `#__mec_events` WHERE `days`!=''", 'loadAssocList');
174
+ foreach($custom_days as $custom_day)
175
+ {
176
+ $days = explode(',', trim($custom_day['days'], ', '));
177
+
178
+ $new_days_str = '';
179
+ foreach($days as $day)
180
+ {
181
+ if(!trim($day)) continue;
182
+
183
+ $start = $day;
184
+ $end = $day;
185
+
186
+ $this->db->q("INSERT INTO `#__mec_dates` (`post_id`,`dstart`,`dend`,`type`) VALUES ('".$custom_day['post_id']."','$start','$end','include')");
187
+
188
+ $new_days_str .= $start.':'.$end.',';
189
+ }
190
+
191
+ $new_days_str = trim($new_days_str, ', ');
192
+
193
+ $this->db->q("UPDATE `#__mec_events` SET `days`='".$new_days_str."' WHERE `post_id`='".$custom_day['post_id']."'");
194
+ update_post_meta($custom_day['post_id'], 'mec_in_days', $new_days_str);
195
+ }
196
+ }
197
  }
app/libraries/envato.php CHANGED
@@ -69,11 +69,11 @@ class MEC_envato extends MEC_base
69
  $this->factory = $this->getFactory();
70
 
71
  // MEC Settings
72
- $this->settings = $this->main->get_settings();
73
 
74
  // Set user purchase code
75
- $this->set_purchase_code(isset($this->settings['purchase_code']) ? $this->settings['purchase_code'] : '');
76
- $this->set_product_name(isset($this->settings['product_name']) ? $this->settings['product_name'] : '');
77
 
78
  // Plugin Slug
79
  list($slice1, $slice2) = explode('/', $this->plugin_slug);
69
  $this->factory = $this->getFactory();
70
 
71
  // MEC Settings
72
+ $options = get_option('mec_options');
73
 
74
  // Set user purchase code
75
+ $this->set_purchase_code(isset($options['purchase_code']) ? $options['purchase_code'] : '');
76
+ $this->set_product_name(isset($options['product_name']) ? $options['product_name'] : '');
77
 
78
  // Plugin Slug
79
  list($slice1, $slice2) = explode('/', $this->plugin_slug);
app/libraries/factory.php CHANGED
@@ -238,7 +238,7 @@ class MEC_factory extends MEC_base
238
  wp_localize_script( 'mec-backend-script', 'mec_admin_localize',
239
  array(
240
  'ajax_url' => admin_url( 'admin-ajax.php' ),
241
- 'ajax_nonce' => wp_create_nonce('mec_settings_import'),
242
  )
243
  );
244
  wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'));
238
  wp_localize_script( 'mec-backend-script', 'mec_admin_localize',
239
  array(
240
  'ajax_url' => admin_url( 'admin-ajax.php' ),
241
+ 'ajax_nonce' => wp_create_nonce('mec_settings_nonce'),
242
  )
243
  );
244
  wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'));
app/libraries/main.php CHANGED
@@ -702,6 +702,8 @@ class MEC_main extends MEC_base
702
  if(isset($filtered['settings']) and isset($filtered['settings']['slug'])) $filtered['settings']['slug'] = strtolower(str_replace(' ', '-', $filtered['settings']['slug']));
703
  if(isset($filtered['category_slug']) and isset($filtered['settings']['category_slug'])) $filtered['settings']['category_slug'] = strtolower(str_replace(' ', '-', $filtered['settings']['category_slug']));
704
 
 
 
705
  // Merge new options with previous options
706
  $final = array_merge($current, $filtered);
707
 
@@ -1195,10 +1197,35 @@ class MEC_main extends MEC_base
1195
  array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
1196
  array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
1197
  array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
 
1198
  );
1199
 
1200
  return apply_filters('mec_archive_skins', $archive_skins);
1201
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1202
 
1203
  /**
1204
  * Get events posts
@@ -3131,14 +3158,14 @@ class MEC_main extends MEC_base
3131
  $start_timestamp = strtotime($start['date']);
3132
  $end_timestamp = strtotime($end['date']);
3133
 
3134
- if($start_timestamp >= $end_timestamp) return date_i18n($format, $start_timestamp);
3135
  elseif($start_timestamp < $end_timestamp)
3136
  {
3137
  $start_date = date_i18n($format, $start_timestamp);
3138
  $end_date = date_i18n($format, $end_timestamp);
3139
 
3140
- if($start_date == $end_date) return $start_date;
3141
- else return date_i18n($format, $start_timestamp).'<span class="mec-end-date-label">'.$separator.date_i18n($format, $end_timestamp).'</span>';
3142
  }
3143
  }
3144
 
@@ -3158,7 +3185,11 @@ class MEC_main extends MEC_base
3158
  $event_period_days = $event_period ? $event_period->days : 0;
3159
 
3160
  $finish_date = array('date'=>$event->mec->end, 'hour'=>$event->meta['mec_date']['end']['hour'], 'minutes'=>$event->meta['mec_date']['end']['minutes'], 'ampm'=>$event->meta['mec_date']['end']['ampm']);
3161
-
 
 
 
 
3162
  // Event Passed
3163
  $past = $this->is_past($finish_date['date'], $date);
3164
 
@@ -3167,6 +3198,11 @@ class MEC_main extends MEC_base
3167
  {
3168
  return isset($end_date['date']) ? $end_date['date'] : $date;
3169
  }
 
 
 
 
 
3170
  // Past Event
3171
  elseif($past)
3172
  {
702
  if(isset($filtered['settings']) and isset($filtered['settings']['slug'])) $filtered['settings']['slug'] = strtolower(str_replace(' ', '-', $filtered['settings']['slug']));
703
  if(isset($filtered['category_slug']) and isset($filtered['settings']['category_slug'])) $filtered['settings']['category_slug'] = strtolower(str_replace(' ', '-', $filtered['settings']['category_slug']));
704
 
705
+ $filtered['settings']['custom_archive'] = isset($filtered['settings']['custom_archive']) ? str_replace('\"','"',$filtered['settings']['custom_archive']) : '';
706
+
707
  // Merge new options with previous options
708
  $final = array_merge($current, $filtered);
709
 
1197
  array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
1198
  array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
1199
  array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
1200
+ array('skin'=>'custom', 'name'=>__('Custom Shortcode', 'modern-events-calendar-lite')),
1201
  );
1202
 
1203
  return apply_filters('mec_archive_skins', $archive_skins);
1204
  }
1205
+
1206
+ /**
1207
+ * Get available skins for archive page
1208
+ * @author Webnus <info@webnus.biz>
1209
+ * @return array
1210
+ */
1211
+ public function get_category_skins()
1212
+ {
1213
+ $category_skins = array(
1214
+ array('skin'=>'full_calendar', 'name'=>__('Full Calendar', 'modern-events-calendar-lite')),
1215
+ array('skin'=>'yearly_view', 'name'=>__('Yearly View', 'modern-events-calendar-lite')),
1216
+ array('skin'=>'monthly_view', 'name'=>__('Calendar/Monthly View', 'modern-events-calendar-lite')),
1217
+ array('skin'=>'weekly_view', 'name'=>__('Weekly View', 'modern-events-calendar-lite')),
1218
+ array('skin'=>'daily_view', 'name'=>__('Daily View', 'modern-events-calendar-lite')),
1219
+ array('skin'=>'timetable', 'name'=>__('Timetable View', 'modern-events-calendar-lite')),
1220
+ array('skin'=>'masonry', 'name'=>__('Masonry View', 'modern-events-calendar-lite')),
1221
+ array('skin'=>'list', 'name'=>__('List View', 'modern-events-calendar-lite')),
1222
+ array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
1223
+ array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
1224
+ array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
1225
+ );
1226
+
1227
+ return apply_filters('mec_category_skins', $category_skins);
1228
+ }
1229
 
1230
  /**
1231
  * Get events posts
3158
  $start_timestamp = strtotime($start['date']);
3159
  $end_timestamp = strtotime($end['date']);
3160
 
3161
+ if($start_timestamp >= $end_timestamp) return '<span class="mec-start-date-label" itemprop="startDate">' . date_i18n($format, $start_timestamp) . '</span>';
3162
  elseif($start_timestamp < $end_timestamp)
3163
  {
3164
  $start_date = date_i18n($format, $start_timestamp);
3165
  $end_date = date_i18n($format, $end_timestamp);
3166
 
3167
+ if($start_date == $end_date) return '<span class="mec-start-date-label" itemprop="startDate">' . $start_date . '</span>';
3168
+ else return '<span class="mec-start-date-label" itemprop="startDate">' . date_i18n($format, $start_timestamp).'</span><span class="mec-end-date-label" itemprop="endDate">'.$separator.date_i18n($format, $end_timestamp).'</span>';
3169
  }
3170
  }
3171
 
3185
  $event_period_days = $event_period ? $event_period->days : 0;
3186
 
3187
  $finish_date = array('date'=>$event->mec->end, 'hour'=>$event->meta['mec_date']['end']['hour'], 'minutes'=>$event->meta['mec_date']['end']['minutes'], 'ampm'=>$event->meta['mec_date']['end']['ampm']);
3188
+
3189
+ // Custom Dates
3190
+ $db = $this->getDB();
3191
+ $custom_date = $db->select("SELECT `dend` FROM `#__mec_dates` WHERE `post_id`='".$event->ID."' AND `type`='include' AND `dstart`<='".$date."' AND `dend`>='".$date."' ORDER BY `id` DESC LIMIT 1", 'loadResult');
3192
+
3193
  // Event Passed
3194
  $past = $this->is_past($finish_date['date'], $date);
3195
 
3198
  {
3199
  return isset($end_date['date']) ? $end_date['date'] : $date;
3200
  }
3201
+ // Custom Days
3202
+ elseif($custom_date)
3203
+ {
3204
+ return $custom_date;
3205
+ }
3206
  // Past Event
3207
  elseif($past)
3208
  {
app/libraries/render.php CHANGED
@@ -195,6 +195,18 @@ class MEC_render extends MEC_base
195
 
196
  return $this->skin($skin, $atts);
197
  }
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
  /**
200
  * Do the grid skin and returns its output
@@ -232,22 +244,29 @@ class MEC_render extends MEC_base
232
  */
233
  public function vdefault($atts = array())
234
  {
 
 
 
 
 
235
  if(!isset($this->settings['default_skin_archive']) or (isset($this->settings['default_skin_archive']) and trim($this->settings['default_skin_archive']) == ''))
236
  {
237
- return $this->vmonth($atts);
238
  }
239
-
240
- if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth($atts);
 
241
  elseif($this->settings['default_skin_archive'] == 'full_calendar') $content = $this->vfull($atts);
242
  elseif($this->settings['default_skin_archive'] == 'yearly_view') $content = $this->vyear($atts);
243
  elseif($this->settings['default_skin_archive'] == 'weekly_view') $content = $this->vweek($atts);
244
  elseif($this->settings['default_skin_archive'] == 'daily_view') $content = $this->vday($atts);
245
- elseif($this->settings['default_skin_archive'] == 'timetable') $content = $this->vtimetable($atts);
246
  elseif($this->settings['default_skin_archive'] == 'masonry') $content = $this->vmasonry($atts);
247
- elseif($this->settings['default_skin_archive'] == 'list') $content = $this->vlist($atts);
248
- elseif($this->settings['default_skin_archive'] == 'grid') $content = $this->vgrid($atts);
249
  elseif($this->settings['default_skin_archive'] == 'agenda') $content = $this->vagenda($atts);
250
  elseif($this->settings['default_skin_archive'] == 'map') $content = $this->vmap($atts);
 
251
  else $content = apply_filters('mec_default_skin_content', '');
252
 
253
  return $content;
@@ -288,13 +307,20 @@ class MEC_render extends MEC_base
288
  // Show Only Expired Events
289
  if(isset($this->settings['category_events_method']) and $this->settings['category_events_method'] == 2) $atts['show_only_past_events'] = 1;
290
 
 
 
 
 
 
291
  if($skin == 'full_calendar') $content = $this->vfull($atts);
292
  elseif($skin == 'yearly_view') $content = $this->vyear($atts);
293
- elseif($skin == 'monthly_view') $content = $this->vmonth($atts);
 
 
294
  elseif($skin == 'weekly_view') $content = $this->vweek($atts);
295
  elseif($skin == 'daily_view') $content = $this->vday($atts);
296
- elseif($skin == 'list') $content = $this->vlist(array_merge($atts, array('sk-options'=>array('list'=>array('style'=>'standard')))));
297
- elseif($skin == 'grid') $content = $this->vgrid($atts);
298
  elseif($skin == 'agenda') $content = $this->vagenda($atts);
299
  elseif($skin == 'map') $content = $this->vmap($atts);
300
  else $content = apply_filters('mec_default_skin_content', '');
@@ -755,8 +781,7 @@ class MEC_render extends MEC_base
755
  }
756
  elseif($repeat_type == 'custom_days')
757
  {
758
- $custom_days = explode(',', trim($event->mec->days, ', '));
759
- sort($custom_days);
760
 
761
  $found = 0;
762
  if(strtotime($event->mec->start) >= strtotime($today) and !in_array($event->mec->start, $exceptional_days))
@@ -778,11 +803,11 @@ class MEC_render extends MEC_base
778
  if($found >= $maximum) break;
779
 
780
  // Date is past
781
- if(strtotime($custom_day) < strtotime($today)) continue;
782
 
783
- if(!in_array($custom_day, $exceptional_days)) $dates[] = array(
784
- 'start'=>array('date'=>$custom_day, 'hour'=>$event->meta['mec_date']['start']['hour'], 'minutes'=>$event->meta['mec_date']['start']['minutes'], 'ampm'=>$event->meta['mec_date']['start']['ampm']),
785
- 'end'=>array('date'=>$custom_day, 'hour'=>$event->meta['mec_date']['end']['hour'], 'minutes'=>$event->meta['mec_date']['end']['minutes'], 'ampm'=>$event->meta['mec_date']['end']['ampm']),
786
  'allday'=>$allday,
787
  'hide_time'=>$hide_time,
788
  'past'=>0
195
 
196
  return $this->skin($skin, $atts);
197
  }
198
+
199
+ /**
200
+ * Do the custom skin and returns its output
201
+ * @author Webnus <info@webnus.biz>
202
+ * @param array $atts
203
+ * @return string
204
+ */
205
+ public function vcustom($atts)
206
+ {
207
+ if (isset($this->settings['custom_archive']) && !empty($this->settings['custom_archive']))
208
+ echo do_shortcode( $this->settings['custom_archive'] );
209
+ }
210
 
211
  /**
212
  * Do the grid skin and returns its output
244
  */
245
  public function vdefault($atts = array())
246
  {
247
+ $monthly_skin = (isset($this->settings['monthly_view_archive_skin']) and trim($this->settings['monthly_view_archive_skin']) != '') ? $this->settings['monthly_view_archive_skin'] : 'classic';
248
+ $list_skin = (isset($this->settings['list_archive_skin']) and trim($this->settings['list_archive_skin']) != '') ? $this->settings['list_archive_skin'] : 'standard';
249
+ $grid_skin = (isset($this->settings['grid_archive_skin']) and trim($this->settings['grid_archive_skin']) != '') ? $this->settings['grid_archive_skin'] : 'classic';
250
+ $timetable_skin = (isset($this->settings['timetable_archive_skin']) and trim($this->settings['timetable_archive_skin']) != '') ? $this->settings['timetable_archive_skin'] : 'modern';
251
+
252
  if(!isset($this->settings['default_skin_archive']) or (isset($this->settings['default_skin_archive']) and trim($this->settings['default_skin_archive']) == ''))
253
  {
254
+ return $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
255
  }
256
+
257
+
258
+ if($this->settings['default_skin_archive'] == 'monthly_view') $content = $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
259
  elseif($this->settings['default_skin_archive'] == 'full_calendar') $content = $this->vfull($atts);
260
  elseif($this->settings['default_skin_archive'] == 'yearly_view') $content = $this->vyear($atts);
261
  elseif($this->settings['default_skin_archive'] == 'weekly_view') $content = $this->vweek($atts);
262
  elseif($this->settings['default_skin_archive'] == 'daily_view') $content = $this->vday($atts);
263
+ elseif($this->settings['default_skin_archive'] == 'timetable') $content = $this->vtimetable(array_merge($atts, array('sk-options'=>array('timetable'=>array('style'=>$timetable_skin)))));
264
  elseif($this->settings['default_skin_archive'] == 'masonry') $content = $this->vmasonry($atts);
265
+ elseif($this->settings['default_skin_archive'] == 'list') $content = $this->vlist(array_merge($atts, array('sk-options'=>array('list'=>array('style'=>$list_skin)))));
266
+ elseif($this->settings['default_skin_archive'] == 'grid') $content = $this->vgrid(array_merge($atts, array('sk-options'=>array('grid'=>array('style'=>$grid_skin)))));
267
  elseif($this->settings['default_skin_archive'] == 'agenda') $content = $this->vagenda($atts);
268
  elseif($this->settings['default_skin_archive'] == 'map') $content = $this->vmap($atts);
269
+ elseif($this->settings['default_skin_archive'] == 'custom') $content = $this->vcustom($atts);
270
  else $content = apply_filters('mec_default_skin_content', '');
271
 
272
  return $content;
307
  // Show Only Expired Events
308
  if(isset($this->settings['category_events_method']) and $this->settings['category_events_method'] == 2) $atts['show_only_past_events'] = 1;
309
 
310
+ $monthly_skin = (isset($this->settings['monthly_view_category_skin']) and trim($this->settings['monthly_view_category_skin']) != '') ? $this->settings['monthly_view_category_skin'] : 'classic';
311
+ $list_skin = (isset($this->settings['list_category_skin']) and trim($this->settings['list_category_skin']) != '') ? $this->settings['list_category_skin'] : 'standard';
312
+ $grid_skin = (isset($this->settings['grid_category_skin']) and trim($this->settings['grid_category_skin']) != '') ? $this->settings['grid_category_skin'] : 'classic';
313
+ $timetable_skin = (isset($this->settings['timetable_category_skin']) and trim($this->settings['timetable_category_skin']) != '') ? $this->settings['timetable_category_skin'] : 'modern';
314
+
315
  if($skin == 'full_calendar') $content = $this->vfull($atts);
316
  elseif($skin == 'yearly_view') $content = $this->vyear($atts);
317
+ elseif($skin == 'masonry') $content = $this->vmasonry($atts);
318
+ elseif($skin == 'timetable') $content = $this->vtimetable(array_merge($atts, array('sk-options'=>array('timetable'=>array('style'=>$timetable_skin)))));
319
+ elseif($skin == 'monthly_view') $content = $this->vmonth(array_merge($atts, array('sk-options'=>array('monthly_view'=>array('style'=>$monthly_skin)))));
320
  elseif($skin == 'weekly_view') $content = $this->vweek($atts);
321
  elseif($skin == 'daily_view') $content = $this->vday($atts);
322
+ elseif($skin == 'list') $content = $this->vlist(array_merge($atts, array('sk-options'=>array('list'=>array('style'=>$list_skin)))));
323
+ elseif($skin == 'grid') $content = $this->vgrid(array_merge($atts, array('sk-options'=>array('grid'=>array('style'=>$grid_skin)))));
324
  elseif($skin == 'agenda') $content = $this->vagenda($atts);
325
  elseif($skin == 'map') $content = $this->vmap($atts);
326
  else $content = apply_filters('mec_default_skin_content', '');
781
  }
782
  elseif($repeat_type == 'custom_days')
783
  {
784
+ $custom_days = $this->db->select("SELECT * FROM `#__mec_dates` WHERE `post_id`='$event_id' AND `type`='include' AND `dstart`>='$today' ORDER BY `dstart` ASC", 'loadAssocList');
 
785
 
786
  $found = 0;
787
  if(strtotime($event->mec->start) >= strtotime($today) and !in_array($event->mec->start, $exceptional_days))
803
  if($found >= $maximum) break;
804
 
805
  // Date is past
806
+ if(strtotime($custom_day['dstart']) < strtotime($today)) continue;
807
 
808
+ if(!in_array($custom_day['dstart'], $exceptional_days)) $dates[] = array(
809
+ 'start'=>array('date'=>$custom_day['dstart'], 'hour'=>$event->meta['mec_date']['start']['hour'], 'minutes'=>$event->meta['mec_date']['start']['minutes'], 'ampm'=>$event->meta['mec_date']['start']['ampm']),
810
+ 'end'=>array('date'=>$custom_day['dend'], 'hour'=>$event->meta['mec_date']['end']['hour'], 'minutes'=>$event->meta['mec_date']['end']['minutes'], 'ampm'=>$event->meta['mec_date']['end']['ampm']),
811
  'allday'=>$allday,
812
  'hide_time'=>$hide_time,
813
  'past'=>0
app/libraries/skins.php CHANGED
@@ -402,7 +402,7 @@ class MEC_skins extends MEC_base
402
  {
403
  if(is_string($wp_query->query_vars['post_type']) and $wp_query->query_vars['post_type'] == $this->main->get_main_post_type() and $wp_query->get('mec-init', false))
404
  {
405
- $join .= $this->db->_prefix(" LEFT JOIN `#__mec_events` AS mece ON #__posts.ID = mece.post_id ");
406
  }
407
 
408
  return $join;
@@ -422,7 +422,7 @@ class MEC_skins extends MEC_base
422
  {
423
  // Start and End date
424
  $date_query = "`start`<='".$wp_query->get('mec-today')."' AND (`end`='0000-00-00' OR `end`>='".$wp_query->get('mec-today')."')";
425
-
426
  // No recuring events
427
  if($this->multiple_days_method == 'first_day' or ($this->multiple_days_method == 'first_day_listgrid' and in_array($wp_query->get('mec-skin', ''), array('list', 'grid', 'slider', 'carousel')))) $rec_no = "`repeat`='0' AND `start`='".$wp_query->get('mec-today')."' AND (`end`='0000-00-00' OR `end`>='".$wp_query->get('mec-today')."')";
428
  else $rec_no = "`repeat`='0' AND ".$date_query;
@@ -444,7 +444,7 @@ class MEC_skins extends MEC_base
444
  $rec_days_in_main_date = "`repeat`='1' AND `days`!='' AND ".$date_query;
445
 
446
  // Days (In)
447
- $rec_days_in = "`days` LIKE '%".$wp_query->get('mec-today')."%'";
448
 
449
  // Days (Not In)
450
  $rec_days_not_in = "`not_in_days` NOT LIKE '%".$wp_query->get('mec-today')."%'";
402
  {
403
  if(is_string($wp_query->query_vars['post_type']) and $wp_query->query_vars['post_type'] == $this->main->get_main_post_type() and $wp_query->get('mec-init', false))
404
  {
405
+ $join .= $this->db->_prefix(" LEFT JOIN `#__mec_events` AS mece ON #__posts.ID = mece.post_id LEFT JOIN `#__mec_dates` AS mecd ON #__posts.ID = mecd.post_id");
406
  }
407
 
408
  return $join;
422
  {
423
  // Start and End date
424
  $date_query = "`start`<='".$wp_query->get('mec-today')."' AND (`end`='0000-00-00' OR `end`>='".$wp_query->get('mec-today')."')";
425
+
426
  // No recuring events
427
  if($this->multiple_days_method == 'first_day' or ($this->multiple_days_method == 'first_day_listgrid' and in_array($wp_query->get('mec-skin', ''), array('list', 'grid', 'slider', 'carousel')))) $rec_no = "`repeat`='0' AND `start`='".$wp_query->get('mec-today')."' AND (`end`='0000-00-00' OR `end`>='".$wp_query->get('mec-today')."')";
428
  else $rec_no = "`repeat`='0' AND ".$date_query;
444
  $rec_days_in_main_date = "`repeat`='1' AND `days`!='' AND ".$date_query;
445
 
446
  // Days (In)
447
+ $rec_days_in = "`dstart`='".$wp_query->get('mec-today')."' AND `dend`>='".$wp_query->get('mec-today')."'";
448
 
449
  // Days (Not In)
450
  $rec_days_not_in = "`not_in_days` NOT LIKE '%".$wp_query->get('mec-today')."%'";
app/skins/agenda/render.php CHANGED
@@ -9,7 +9,6 @@ $current_month_divider = $this->request->getVar('current_month_divider', 0);
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">
@@ -42,8 +41,41 @@ $current_month_divider = $this->request->getVar('current_month_divider', 0);
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>
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
  <div class="mec-events-agenda">
13
 
14
  <div class="mec-agenda-date-wrap">
41
  }
42
  }
43
  endif;
44
+ $speakers = '""';
45
+ if ( !empty($event->data->speakers))
46
+ {
47
+ $speakers= [];
48
+ foreach ($event->data->speakers as $key => $value) {
49
+ $speakers[] = array(
50
+ "@type" => "Person",
51
+ "name" => $value['name'],
52
+ "image" => $value['thumbnail'],
53
+ "sameAs" => $value['facebook'],
54
+ );
55
+ }
56
+ $speakers = json_encode($speakers);
57
+ }
58
  ?>
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context" : "http://schema.org",
62
+ "@type" : "Event",
63
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
64
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
65
+ "location" :
66
+ {
67
+ "@type" : "Place",
68
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
69
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
70
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
71
+ },
72
+ "performer": <?php echo $speakers; ?>,
73
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
74
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
75
+ "name" : "<?php esc_html_e($event->data->title); ?>",
76
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
77
+ }
78
+ </script>
79
  <?php if($this->style == 'clean'): ?>
80
  <div class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
81
  <i class="mec-sl-clock "></i>
app/skins/available_spot/tpl.php CHANGED
@@ -83,10 +83,44 @@ foreach($availability as $ticket_id=>$count)
83
  break;
84
  }
85
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  ?>
87
  <div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
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
 
83
  break;
84
  }
85
  }
86
+
87
+ $speakers = '""';
88
+ if ( !empty($event->data->speakers))
89
+ {
90
+ $speakers= [];
91
+ foreach ($event->data->speakers as $key => $value) {
92
+ $speakers[] = array(
93
+ "@type" => "Person",
94
+ "name" => $value['name'],
95
+ "image" => $value['thumbnail'],
96
+ "sameAs" => $value['facebook'],
97
+ );
98
+ }
99
+ $speakers = json_encode($speakers);
100
+ }
101
  ?>
102
  <div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
103
  <div class="mec-av-spot-wrap">
104
+ <script type="application/ld+json">
105
+ {
106
+ "@context" : "http://schema.org",
107
+ "@type" : "Event",
108
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
109
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
110
+ "location" :
111
+ {
112
+ "@type" : "Place",
113
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
114
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
115
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
116
+ },
117
+ "performer": <?php echo $speakers; ?>,
118
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
119
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
120
+ "name" : "<?php esc_html_e($event->data->title); ?>",
121
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
122
+ }
123
+ </script>
124
  <div class="mec-av-spot">
125
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
126
 
app/skins/carousel.php CHANGED
@@ -61,12 +61,19 @@ class MEC_skin_carousel extends MEC_skins
61
 
62
  // The style
63
  $this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'type1';
 
 
 
 
 
 
64
 
65
  // The auto play time
66
  $this->autoplay = (isset($this->skin_options['autoplay']) and trim($this->skin_options['autoplay'])) ? $this->skin_options['autoplay'] : 3000;
67
 
68
  // Override the style if the style forced by us in a widget etc
69
  if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
 
70
 
71
  // HTML class
72
  $this->html_class = '';
61
 
62
  // The style
63
  $this->style = isset($this->skin_options['style']) ? $this->skin_options['style'] : 'type1';
64
+
65
+ // The archive link
66
+ $this->archive_link = isset($this->skin_options['archive_link']) ? $this->skin_options['archive_link'] : '';
67
+
68
+ // The Head text
69
+ $this->head_text = isset($this->skin_options['head_text']) ? $this->skin_options['head_text'] : '';
70
 
71
  // The auto play time
72
  $this->autoplay = (isset($this->skin_options['autoplay']) and trim($this->skin_options['autoplay'])) ? $this->skin_options['autoplay'] : 3000;
73
 
74
  // Override the style if the style forced by us in a widget etc
75
  if(isset($this->atts['style']) and trim($this->atts['style']) != '') $this->style = $this->atts['style'];
76
+
77
 
78
  // HTML class
79
  $this->html_class = '';
app/skins/carousel/render.php CHANGED
@@ -8,6 +8,20 @@ $settings = $this->main->get_settings();
8
  ?>
9
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
10
  <div class="mec-event-carousel-<?php echo $this->style; ?>">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  <div class='mec-owl-crousel-skin-<?php echo ($this->style == 'type1' ? 'type1' : 'type2'); ?> mec-owl-carousel mec-owl-theme'>
12
  <?php
13
  foreach($this->events as $date):
@@ -19,6 +33,7 @@ $settings = $this->main->get_settings();
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)
@@ -34,8 +49,42 @@ $settings = $this->main->get_settings();
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">
@@ -104,6 +153,21 @@ $settings = $this->main->get_settings();
104
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" target="_self"><?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>
105
  </div>
106
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  <?php endif; ?>
108
  </article>
109
  <?php endforeach; ?>
8
  ?>
9
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
10
  <div class="mec-event-carousel-<?php echo $this->style; ?>">
11
+ <?php if($this->style == 'type4'): ?>
12
+ <div class="row mec-carousel-type4-head">
13
+ <div class="col-md-6 col-xs-6">
14
+ <div class="mec-carousel-type4-head-title">
15
+ <?php if(!empty( $this->head_text )) : ?><?php esc_html_e($this->head_text); ?><?php endif; ?>
16
+ </div>
17
+ </div>
18
+ <div class="col-md-6 col-xs-6">
19
+ <div class="mec-carousel-type4-head-link">
20
+ <?php if(!empty( $this->archive_link )) : ?><a class="mec-bg-color-hover" href="<?php echo esc_html($this->archive_link); ?>"><?php esc_html_e('View All' , 'modern-events-calendar-lite'); ?></a><?php endif; ?>
21
+ </div>
22
+ </div>
23
+ </div>
24
+ <?php endif; ?>
25
  <div class='mec-owl-crousel-skin-<?php echo ($this->style == 'type1' ? 'type1' : 'type2'); ?> mec-owl-carousel mec-owl-theme'>
26
  <?php
27
  foreach($this->events as $date):
33
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
34
  $organizer = isset($event->data->organizers[$event->data->meta['mec_organizer_id']])? $event->data->organizers[$event->data->meta['mec_organizer_id']] : array();
35
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
36
+ $event_date = (isset($event->date['start']) ? $event->date['start']['date'] : $event->data->meta['mec_start_date']);
37
  $label_style = '';
38
  if ( !empty($event->data->labels) ):
39
  foreach( $event->data->labels as $label)
49
  }
50
  }
51
  endif;
52
+ $speakers = '""';
53
+ if ( !empty($event->data->speakers))
54
+ {
55
+ $speakers= [];
56
+ foreach ($event->data->speakers as $key => $value) {
57
+ $speakers[] = array(
58
+ "@type" => "Person",
59
+ "name" => $value['name'],
60
+ "image" => $value['thumbnail'],
61
+ "sameAs" => $value['facebook'],
62
+ );
63
+ }
64
+ $speakers = json_encode($speakers);
65
+ }
66
  ?>
67
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
68
+ <script type="application/ld+json">
69
+ {
70
+ "@context" : "http://schema.org",
71
+ "@type" : "Event",
72
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
73
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
74
+ "location" :
75
+ {
76
+ "@type" : "Place",
77
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
78
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
79
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
80
+ },
81
+ "performer": <?php echo $speakers; ?>,
82
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
83
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
84
+ "name" : "<?php esc_html_e($event->data->title); ?>",
85
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
86
+ }
87
+ </script>
88
  <?php if($this->style == 'type1'): ?>
89
  <div class="event-carousel-type1-head clearfix">
90
  <div class="mec-event-date mec-color">
153
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" target="_self"><?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>
154
  </div>
155
  </div>
156
+ <?php elseif($this->style == 'type4'): ?>
157
+ <div class="event-carousel-type4-head clearfix">
158
+ <div class="mec-event-image">
159
+ <?php echo $event->data->thumbnails['full']; ?>
160
+ </div>
161
+ <div class="mec-event-overlay"></div>
162
+ <div class="mec-event-hover-carousel-type4">
163
+ <i class="mec-event-icon mec-bg-color mec-fa-calendar"></i>
164
+ <div class="mec-event-date">
165
+ <span class="mec-color"><?php echo date_i18n('F d', strtotime($event_date)); ?></span> <?php echo date_i18n('l', strtotime($event_date)); ?>
166
+ </div>
167
+ <h4 class="mec-event-title"><?php echo $event->data->title . $event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
168
+ <div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
169
+ </div>
170
+ </div>
171
  <?php endif; ?>
172
  </article>
173
  <?php endforeach; ?>
app/skins/countdown/tpl.php CHANGED
@@ -49,7 +49,20 @@ $gmt_offset = $this->main->get_gmt_offset();
49
  if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Safari') === false) $gmt_offset = ' : '.$gmt_offset;
50
  if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') == true)$gmt_offset = substr(trim($gmt_offset), 0 , 3);
51
  if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') == true) $gmt_offset = substr(trim($gmt_offset), 2 , 3);
52
-
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  // Generating javascript code of countdown module
54
  $javascript = '<script type="text/javascript">
55
  jQuery(document).ready(function()
@@ -73,6 +86,26 @@ $this->factory->params('footer', $javascript);
73
  .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after { border-color: transparent transparent transparent<?php echo $this->bg_color; ?>;}
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">
@@ -209,7 +242,7 @@ $this->factory->params('footer', $javascript);
209
  </div>
210
  <div class="mec-event-countdown-part2">
211
  <div class="mec-event-image">
212
- <?php echo $event->data->thumbnails['meccarouselthumb']; ?>
213
  </div>
214
  </div>
215
  </article>
49
  if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Safari') === false) $gmt_offset = ' : '.$gmt_offset;
50
  if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') == true)$gmt_offset = substr(trim($gmt_offset), 0 , 3);
51
  if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') == true) $gmt_offset = substr(trim($gmt_offset), 2 , 3);
52
+ $speakers = '""';
53
+ if ( !empty($event->data->speakers))
54
+ {
55
+ $speakers= [];
56
+ foreach ($event->data->speakers as $key => $value) {
57
+ $speakers[] = array(
58
+ "@type" => "Person",
59
+ "name" => $value['name'],
60
+ "image" => $value['thumbnail'],
61
+ "sameAs" => $value['facebook'],
62
+ );
63
+ }
64
+ $speakers = json_encode($speakers);
65
+ }
66
  // Generating javascript code of countdown module
67
  $javascript = '<script type="text/javascript">
68
  jQuery(document).ready(function()
86
  .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after { border-color: transparent transparent transparent<?php echo $this->bg_color; ?>;}
87
  </style>
88
  <div class="mec-wrap <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
89
+ <script type="application/ld+json">
90
+ {
91
+ "@context" : "http://schema.org",
92
+ "@type" : "Event",
93
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
94
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
95
+ "location" :
96
+ {
97
+ "@type" : "Place",
98
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
99
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
100
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
101
+ },
102
+ "performer": <?php echo $speakers; ?>,
103
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
104
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
105
+ "name" : "<?php esc_html_e($event->data->title); ?>",
106
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
107
+ }
108
+ </script>
109
  <?php if($this->style == 'style1'): ?>
110
  <article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
111
  <div class="mec-event-countdown-part1 col-md-4">
242
  </div>
243
  <div class="mec-event-countdown-part2">
244
  <div class="mec-event-image">
245
+ <a href="<?php echo $event_link; ?>"><?php echo $event->data->thumbnails['meccarouselthumb']; ?></a>
246
  </div>
247
  </div>
248
  </article>
app/skins/cover/tpl.php CHANGED
@@ -32,8 +32,42 @@ foreach( $event->data->labels as $label)
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">
32
  }
33
  }
34
  endif;
35
+ $speakers = '""';
36
+ if ( !empty($event->data->speakers))
37
+ {
38
+ $speakers= [];
39
+ foreach ($event->data->speakers as $key => $value) {
40
+ $speakers[] = array(
41
+ "@type" => "Person",
42
+ "name" => $value['name'],
43
+ "image" => $value['thumbnail'],
44
+ "sameAs" => $value['facebook'],
45
+ );
46
+ }
47
+ $speakers = json_encode($speakers);
48
+ }
49
  ?>
50
  <div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
51
+ <script type="application/ld+json">
52
+ {
53
+ "@context" : "http://schema.org",
54
+ "@type" : "Event",
55
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
56
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
57
+ "location" :
58
+ {
59
+ "@type" : "Place",
60
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
61
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
62
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
63
+ },
64
+ "performer": <?php echo $speakers; ?>,
65
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
66
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
67
+ "name" : "<?php esc_html_e($event->data->title); ?>",
68
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
69
+ }
70
+ </script>
71
  <?php if($this->style == 'modern' and $event_thumb_url): ?>
72
  <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;">
73
  <a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
app/skins/daily_view/render.php CHANGED
@@ -27,7 +27,41 @@ defined('MECEXEC') or die();
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; ?>
27
  }
28
  }
29
  endif;
30
+ $speakers = '""';
31
+ if ( !empty($event->data->speakers))
32
+ {
33
+ $speakers= [];
34
+ foreach ($event->data->speakers as $key => $value) {
35
+ $speakers[] = array(
36
+ "@type" => "Person",
37
+ "name" => $value['name'],
38
+ "image" => $value['thumbnail'],
39
+ "sameAs" => $value['facebook'],
40
+ );
41
+ }
42
+ $speakers = json_encode($speakers);
43
+ }
44
  ?>
45
+ <script type="application/ld+json">
46
+ {
47
+ "@context" : "http://schema.org",
48
+ "@type" : "Event",
49
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
50
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
51
+ "location" :
52
+ {
53
+ "@type" : "Place",
54
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
55
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
56
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
57
+ },
58
+ "performer": <?php echo $speakers; ?>,
59
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
60
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
61
+ "name" : "<?php esc_html_e($event->data->title); ?>",
62
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
63
+ }
64
+ </script>
65
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
66
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
67
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
app/skins/grid/render.php CHANGED
@@ -54,7 +54,42 @@ if($this->style == 'colorful')
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'): ?>
54
  }
55
  }
56
  endif;
57
+ $speakers = '""';
58
+ if ( !empty($event->data->speakers))
59
+ {
60
+ $speakers= [];
61
+ foreach ($event->data->speakers as $key => $value) {
62
+ $speakers[] = array(
63
+ "@type" => "Person",
64
+ "name" => $value['name'],
65
+ "image" => $value['thumbnail'],
66
+ "sameAs" => $value['facebook'],
67
+ );
68
+ }
69
+ $speakers = json_encode($speakers);
70
+ }
71
+ ?>
72
+ <script type="application/ld+json">
73
+ {
74
+ "@context" : "http://schema.org",
75
+ "@type" : "Event",
76
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
77
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
78
+ "location" :
79
+ {
80
+ "@type" : "Place",
81
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
82
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
83
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
84
+ },
85
+ "performer": <?php echo $speakers; ?>,
86
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
87
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
88
+ "name" : "<?php esc_html_e($event->data->title); ?>",
89
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
90
+ }
91
+ </script>
92
+ <?php
93
  echo '<article data-style="'.$label_style.'" class="mec-event-article mec-clear '.$this->get_event_classes($event).'"' . $colorful_bg_color . '>';
94
  ?>
95
  <?php if($this->style == 'modern'): ?>
app/skins/list/render.php CHANGED
@@ -41,7 +41,41 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
41
  }
42
  }
43
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  <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; ?>">
46
  <?php if($this->style == 'modern'): ?>
47
  <div class="col-md-2 col-sm-2">
41
  }
42
  }
43
  }
44
+ $speakers = '""';
45
+ if ( !empty($event->data->speakers))
46
+ {
47
+ $speakers= [];
48
+ foreach ($event->data->speakers as $key => $value) {
49
+ $speakers[] = array(
50
+ "@type" => "Person",
51
+ "name" => $value['name'],
52
+ "image" => $value['thumbnail'],
53
+ "sameAs" => $value['facebook'],
54
+ );
55
+ }
56
+ $speakers = json_encode($speakers);
57
+ }
58
  ?>
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context" : "http://schema.org",
62
+ "@type" : "Event",
63
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
64
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
65
+ "location" :
66
+ {
67
+ "@type" : "Place",
68
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
69
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
70
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
71
+ },
72
+ "performer": <?php echo $speakers; ?>,
73
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
74
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
75
+ "name" : "<?php esc_html_e($event->data->title); ?>",
76
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
77
+ }
78
+ </script>
79
  <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; ?>">
80
  <?php if($this->style == 'modern'): ?>
81
  <div class="col-md-2 col-sm-2">
app/skins/masonry/render.php CHANGED
@@ -33,7 +33,41 @@ $settings = $this->main->get_settings();
33
  }
34
  }
35
  endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  <div <?php if ( $this->masonry_like_grid == 1) echo 'data-sort-masonry="'.strtotime($event->date['start']['date']).'"'; ?> class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>">
38
  <div class="mec-masonry">
39
 
33
  }
34
  }
35
  endif;
36
+ $speakers = '""';
37
+ if ( !empty($event->data->speakers))
38
+ {
39
+ $speakers= [];
40
+ foreach ($event->data->speakers as $key => $value) {
41
+ $speakers[] = array(
42
+ "@type" => "Person",
43
+ "name" => $value['name'],
44
+ "image" => $value['thumbnail'],
45
+ "sameAs" => $value['facebook'],
46
+ );
47
+ }
48
+ $speakers = json_encode($speakers);
49
+ }
50
  ?>
51
+ <script type="application/ld+json">
52
+ {
53
+ "@context" : "http://schema.org",
54
+ "@type" : "Event",
55
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
56
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
57
+ "location" :
58
+ {
59
+ "@type" : "Place",
60
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
61
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
62
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
63
+ },
64
+ "performer": <?php echo $speakers; ?>,
65
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
66
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
67
+ "name" : "<?php esc_html_e($event->data->title); ?>",
68
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
69
+ }
70
+ </script>
71
  <div <?php if ( $this->masonry_like_grid == 1) echo 'data-sort-masonry="'.strtotime($event->date['start']['date']).'"'; ?> class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>">
72
  <div class="mec-masonry">
73
 
app/skins/monthly_view/calendar.php CHANGED
@@ -85,7 +85,48 @@ elseif($week_start == 5) // Friday
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>';
85
  }
86
  }
87
  endif;
88
+ $speakers = '""';
89
+ if ( !empty($event->data->speakers))
90
+ {
91
+ $speakers= [];
92
+ foreach ($event->data->speakers as $key => $value) {
93
+ $speakers[] = array(
94
+ "@type" => "Person",
95
+ "name" => $value['name'],
96
+ "image" => $value['thumbnail'],
97
+ "sameAs" => $value['facebook'],
98
+ );
99
+ }
100
+ $speakers = json_encode($speakers);
101
+ }
102
+ $startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
103
+ $endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
104
+ $location_name = isset($location['name']) ? $location['name'] : '' ;
105
+ $location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
106
+ $location_address = isset($location['address']) ? $location['address'] : '' ;
107
+ $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
108
+ $events_str .= '
109
+ <script type="application/ld+json">
110
+ {
111
+ "@context" : "http://schema.org",
112
+ "@type" : "Event",
113
+ "startDate" : "' . $startDate . '",
114
+ "endDate" : "' . $endDate . '",
115
+ "location" :
116
+ {
117
+ "@type" : "Place",
118
+ "name" : "' . $location_name . '",
119
+ "image" : "' . $location_image . '",
120
+ "address" : "' . $location_address . '"
121
+ },
122
+ "performer": '. $speakers . ',
123
+ "description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
124
+ "image" : "'. $image . '",
125
+ "name" : "' .esc_html($event->data->title) . '",
126
+ "url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
127
+ }
128
+ </script>
129
+ ';
130
  $events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event).'">';
131
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
132
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -86,7 +86,48 @@ elseif($week_start == 5) // Friday
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>';
86
  }
87
  }
88
  endif;
89
+ $speakers = '""';
90
+ if ( !empty($event->data->speakers))
91
+ {
92
+ $speakers= [];
93
+ foreach ($event->data->speakers as $key => $value) {
94
+ $speakers[] = array(
95
+ "@type" => "Person",
96
+ "name" => $value['name'],
97
+ "image" => $value['thumbnail'],
98
+ "sameAs" => $value['facebook'],
99
+ );
100
+ }
101
+ $speakers = json_encode($speakers);
102
+ }
103
+ $startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
104
+ $endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
105
+ $location_name = isset($location['name']) ? $location['name'] : '' ;
106
+ $location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
107
+ $location_address = isset($location['address']) ? $location['address'] : '' ;
108
+ $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
109
+ $events_str .= '
110
+ <script type="application/ld+json">
111
+ {
112
+ "@context" : "http://schema.org",
113
+ "@type" : "Event",
114
+ "startDate" : "' . $startDate . '",
115
+ "endDate" : "' . $endDate . '",
116
+ "location" :
117
+ {
118
+ "@type" : "Place",
119
+ "name" : "' . $location_name . '",
120
+ "image" : "' . $location_image . '",
121
+ "address" : "' . $location_address . '"
122
+ },
123
+ "performer": '. $speakers . ',
124
+ "description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
125
+ "image" : "'. $image . '",
126
+ "name" : "' .esc_html($event->data->title) . '",
127
+ "url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
128
+ }
129
+ </script>
130
+ ';
131
  $events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event).'">';
132
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
133
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
app/skins/monthly_view/calendar_novel.php CHANGED
@@ -63,6 +63,7 @@ elseif($week_start == 5) // Friday
63
  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>';
64
  foreach($events[$today] as $event)
65
  {
 
66
  $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
67
  $start_date = (isset($event->date['start']['date']) ? str_replace ( '-', '', $event->date['start']['date'] ) : '');
68
  $end_date = (isset($event->date['end']['date']) ? str_replace ( '-', '', $event->date['end']['date'] ) : '');
@@ -78,6 +79,49 @@ elseif($week_start == 5) // Friday
78
  }
79
  }
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  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).'">';
82
  echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
83
  echo '</div></a>';
63
  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>';
64
  foreach($events[$today] as $event)
65
  {
66
+ $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
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'] ) : '');
79
  }
80
  }
81
 
82
+ $speakers = '""';
83
+ if ( !empty($event->data->speakers))
84
+ {
85
+ $speakers= [];
86
+ foreach ($event->data->speakers as $key => $value) {
87
+ $speakers[] = array(
88
+ "@type" => "Person",
89
+ "name" => $value['name'],
90
+ "image" => $value['thumbnail'],
91
+ "sameAs" => $value['facebook'],
92
+ );
93
+ }
94
+ $speakers = json_encode($speakers);
95
+ }
96
+ $startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
97
+ $endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
98
+ $location_name = isset($location['name']) ? $location['name'] : '' ;
99
+ $location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
100
+ $location_address = isset($location['address']) ? $location['address'] : '' ;
101
+ $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
102
+ echo '
103
+ <script type="application/ld+json">
104
+ {
105
+ "@context" : "http://schema.org",
106
+ "@type" : "Event",
107
+ "startDate" : "' . $startDate . '",
108
+ "endDate" : "' . $endDate . '",
109
+ "location" :
110
+ {
111
+ "@type" : "Place",
112
+ "name" : "' . $location_name . '",
113
+ "image" : "' . $location_image . '",
114
+ "address" : "' . $location_address . '"
115
+ },
116
+ "performer": '. $speakers . ',
117
+ "description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
118
+ "image" : "'. $image . '",
119
+ "name" : "' .esc_html($event->data->title) . '",
120
+ "url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
121
+ }
122
+ </script>
123
+ ';
124
+
125
  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).'">';
126
  echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
127
  echo '</div></a>';
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -63,6 +63,7 @@ elseif($week_start == 5) // Friday
63
  echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
64
  foreach($events[$today] as $event)
65
  {
 
66
  $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
67
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
68
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
@@ -77,6 +78,48 @@ elseif($week_start == 5) // Friday
77
  $tooltip_content .= !empty($event->data->thumbnails['thumbnail']) ? '<div class="mec-tooltip-event-featured">'.$event->data->thumbnails['thumbnail'].'</div>' : '' ;
78
  $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.substr($event->data->content, 0, 320).' , ...</div>' : '' ;
79
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '' ;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  echo '
81
  <div class="tooltip_templates event-single-content-simple">
82
  <div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
63
  echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
64
  foreach($events[$today] as $event)
65
  {
66
+ $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
67
  $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
68
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
69
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
78
  $tooltip_content .= !empty($event->data->thumbnails['thumbnail']) ? '<div class="mec-tooltip-event-featured">'.$event->data->thumbnails['thumbnail'].'</div>' : '' ;
79
  $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.substr($event->data->content, 0, 320).' , ...</div>' : '' ;
80
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '' ;
81
+ $speakers = '""';
82
+ if ( !empty($event->data->speakers))
83
+ {
84
+ $speakers= [];
85
+ foreach ($event->data->speakers as $key => $value) {
86
+ $speakers[] = array(
87
+ "@type" => "Person",
88
+ "name" => $value['name'],
89
+ "image" => $value['thumbnail'],
90
+ "sameAs" => $value['facebook'],
91
+ );
92
+ }
93
+ $speakers = json_encode($speakers);
94
+ }
95
+ $startDate = !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '';
96
+ $endDate = !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ;
97
+ $location_name = isset($location['name']) ? $location['name'] : '' ;
98
+ $location_image = isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '' ;
99
+ $location_address = isset($location['address']) ? $location['address'] : '' ;
100
+ $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
101
+ echo '
102
+ <script type="application/ld+json">
103
+ {
104
+ "@context" : "http://schema.org",
105
+ "@type" : "Event",
106
+ "startDate" : "' . $startDate . '",
107
+ "endDate" : "' . $endDate . '",
108
+ "location" :
109
+ {
110
+ "@type" : "Place",
111
+ "name" : "' . $location_name . '",
112
+ "image" : "' . $location_image . '",
113
+ "address" : "' . $location_address . '"
114
+ },
115
+ "performer": '. $speakers . ',
116
+ "description" : "' . esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)) . '",
117
+ "image" : "'. $image . '",
118
+ "name" : "' .esc_html($event->data->title) . '",
119
+ "url" : "'. $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']) . '"
120
+ }
121
+ </script>
122
+ ';
123
  echo '
124
  <div class="tooltip_templates event-single-content-simple">
125
  <div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
app/skins/single/default.php CHANGED
@@ -3,7 +3,7 @@
3
  defined('MECEXEC') or die();
4
  ?>
5
  <div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
6
- <article class="mec-single-event">
7
  <div class="col-md-8">
8
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?></div>
9
  <div class="mec-event-content">
@@ -215,7 +215,7 @@ defined('MECEXEC') or die();
215
  <!-- Register Booking Button -->
216
  <?php if($this->main->can_show_booking_module($event)): ?>
217
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
218
- <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>
219
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
220
  <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
221
  <?php endif; ?>
@@ -422,7 +422,7 @@ defined('MECEXEC') or die();
422
  <!-- Register Booking Button -->
423
  <?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
424
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
425
- <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>
426
  <?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
427
  <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
428
  <?php endif; ?>
@@ -458,4 +458,40 @@ defined('MECEXEC') or die();
458
 
459
  <?php endif; ?>
460
  </article>
461
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  defined('MECEXEC') or die();
4
  ?>
5
  <div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
6
+ <article class="row mec-single-event">
7
  <div class="col-md-8">
8
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?></div>
9
  <div class="mec-event-content">
215
  <!-- Register Booking Button -->
216
  <?php if($this->main->can_show_booking_module($event)): ?>
217
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
218
+ <a class="mec-booking-button mec-bg-color <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" 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>
219
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
220
  <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
221
  <?php endif; ?>
422
  <!-- Register Booking Button -->
423
  <?php if($this->main->can_show_booking_module($event) and $single->found_value('register_btn', $settings) == 'on'): ?>
424
  <?php $data_lity = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity = 'data-lity'; ?>
425
+ <a class="mec-booking-button mec-bg-color <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" 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>
426
  <?php elseif($single->found_value('register_btn', $settings) == 'on' and isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
427
  <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
428
  <?php endif; ?>
458
 
459
  <?php endif; ?>
460
  </article>
461
+ </div>
462
+ <?php
463
+ $speakers = '""';
464
+ if ( !empty($event->data->speakers))
465
+ {
466
+ $speakers= [];
467
+ foreach ($event->data->speakers as $key => $value) {
468
+ $speakers[] = array(
469
+ "@type" => "Person",
470
+ "name" => $value['name'],
471
+ "image" => $value['thumbnail'],
472
+ "sameAs" => $value['facebook'],
473
+ );
474
+ }
475
+ $speakers = json_encode($speakers);
476
+ }
477
+ ?>
478
+ <script type="application/ld+json">
479
+ {
480
+ "@context" : "http://schema.org",
481
+ "@type" : "Event",
482
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
483
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
484
+ "location" :
485
+ {
486
+ "@type" : "Place",
487
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
488
+ "image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
489
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
490
+ },
491
+ "performer": <?php echo $speakers; ?>,
492
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
493
+ "image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
494
+ "name" : "<?php esc_html_e(get_the_title()); ?>",
495
+ "url" : "<?php the_permalink(); ?>"
496
+ }
497
+ </script>
app/skins/single/modern.php CHANGED
@@ -3,7 +3,7 @@
3
  defined('MECEXEC') or die();
4
  ?>
5
  <div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
6
- <article class="mec-single-event mec-single-modern">
7
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?></div>
8
  <div class="col-md-4">
9
 
@@ -55,7 +55,7 @@ defined('MECEXEC') or die();
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 elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
60
  <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
61
  <?php endif; ?>
@@ -253,4 +253,40 @@ defined('MECEXEC') or die();
253
 
254
  </div>
255
  </article>
256
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  defined('MECEXEC') or die();
4
  ?>
5
  <div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
6
+ <article class="row mec-single-event mec-single-modern">
7
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?></div>
8
  <div class="col-md-4">
9
 
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 <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" 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 elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
60
  <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
61
  <?php endif; ?>
253
 
254
  </div>
255
  </article>
256
+ </div>
257
+ <?php
258
+ $speakers = '""';
259
+ if ( !empty($event->data->speakers))
260
+ {
261
+ $speakers= [];
262
+ foreach ($event->data->speakers as $key => $value) {
263
+ $speakers[] = array(
264
+ "@type" => "Person",
265
+ "name" => $value['name'],
266
+ "image" => $value['thumbnail'],
267
+ "sameAs" => $value['facebook'],
268
+ );
269
+ }
270
+ $speakers = json_encode($speakers);
271
+ }
272
+ ?>
273
+ <script type="application/ld+json">
274
+ {
275
+ "@context" : "http://schema.org",
276
+ "@type" : "Event",
277
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
278
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
279
+ "location" :
280
+ {
281
+ "@type" : "Place",
282
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
283
+ "image" : "<?php echo esc_url($location['thumbnail'] ); ?>",
284
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
285
+ },
286
+ "performer": <?php echo $speakers; ?>,
287
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', get_the_content())); ?>",
288
+ "image" : "<?php echo esc_html($event->data->featured_image['full']); ?>",
289
+ "name" : "<?php esc_html_e(get_the_title()); ?>",
290
+ "url" : "<?php the_permalink(); ?>"
291
+ }
292
+ </script>
app/skins/slider/render.php CHANGED
@@ -53,7 +53,41 @@ $event_colorskin = (isset($styling['mec_colorskin']) or isset($styling['color'])
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
 
53
  }
54
  }
55
  endif;
56
+ $speakers = '""';
57
+ if ( !empty($event->data->speakers))
58
+ {
59
+ $speakers= [];
60
+ foreach ($event->data->speakers as $key => $value) {
61
+ $speakers[] = array(
62
+ "@type" => "Person",
63
+ "name" => $value['name'],
64
+ "image" => $value['thumbnail'],
65
+ "sameAs" => $value['facebook'],
66
+ );
67
+ }
68
+ $speakers = json_encode($speakers);
69
+ }
70
  ?>
71
+ <script type="application/ld+json">
72
+ {
73
+ "@context" : "http://schema.org",
74
+ "@type" : "Event",
75
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
76
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
77
+ "location" :
78
+ {
79
+ "@type" : "Place",
80
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
81
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
82
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
83
+ },
84
+ "performer": <?php echo $speakers; ?>,
85
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
86
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
87
+ "name" : "<?php esc_html_e($event->data->title); ?>",
88
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
89
+ }
90
+ </script>
91
  <?php if($this->style == 't1'): ?>
92
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
93
 
app/skins/timetable/render.php CHANGED
@@ -37,7 +37,41 @@ $has_events = array();
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>
37
  }
38
  }
39
  endif;
40
+ $speakers = '""';
41
+ if ( !empty($event->data->speakers))
42
+ {
43
+ $speakers= [];
44
+ foreach ($event->data->speakers as $key => $value) {
45
+ $speakers[] = array(
46
+ "@type" => "Person",
47
+ "name" => $value['name'],
48
+ "image" => $value['thumbnail'],
49
+ "sameAs" => $value['facebook'],
50
+ );
51
+ }
52
+ $speakers = json_encode($speakers);
53
+ }
54
  ?>
55
+ <script type="application/ld+json">
56
+ {
57
+ "@context" : "http://schema.org",
58
+ "@type" : "Event",
59
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
60
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
61
+ "location" :
62
+ {
63
+ "@type" : "Place",
64
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
65
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
66
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
67
+ },
68
+ "performer": <?php echo $speakers; ?>,
69
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
70
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
71
+ "name" : "<?php esc_html_e($event->data->title); ?>",
72
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
73
+ }
74
+ </script>
75
  <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); ?>">
76
  <span class="mec-timetable-event-span mec-timetable-event-time">
77
  <i class="mec-sl-clock"></i>
app/skins/weekly_view/render.php CHANGED
@@ -35,7 +35,41 @@ $has_events = array();
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>
35
  }
36
  }
37
  endif;
38
+ $speakers = '""';
39
+ if ( !empty($event->data->speakers))
40
+ {
41
+ $speakers= [];
42
+ foreach ($event->data->speakers as $key => $value) {
43
+ $speakers[] = array(
44
+ "@type" => "Person",
45
+ "name" => $value['name'],
46
+ "image" => $value['thumbnail'],
47
+ "sameAs" => $value['facebook'],
48
+ );
49
+ }
50
+ $speakers = json_encode($speakers);
51
+ }
52
  ?>
53
+ <script type="application/ld+json">
54
+ {
55
+ "@context" : "http://schema.org",
56
+ "@type" : "Event",
57
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
58
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
59
+ "location" :
60
+ {
61
+ "@type" : "Place",
62
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
63
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
64
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
65
+ },
66
+ "performer": <?php echo $speakers; ?>,
67
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
68
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
69
+ "name" : "<?php esc_html_e($event->data->title); ?>",
70
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
71
+ }
72
+ </script>
73
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
74
  <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>
75
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
app/skins/yearly_view/render.php CHANGED
@@ -52,7 +52,41 @@ for($i = 1; $i <= 12; $i++)
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>
52
  }
53
  }
54
  endif;
55
+ $speakers = '""';
56
+ if ( !empty($event->data->speakers))
57
+ {
58
+ $speakers= [];
59
+ foreach ($event->data->speakers as $key => $value) {
60
+ $speakers[] = array(
61
+ "@type" => "Person",
62
+ "name" => $value['name'],
63
+ "image" => $value['thumbnail'],
64
+ "sameAs" => $value['facebook'],
65
+ );
66
+ }
67
+ $speakers = json_encode($speakers);
68
+ }
69
  ?>
70
+ <script type="application/ld+json">
71
+ {
72
+ "@context" : "http://schema.org",
73
+ "@type" : "Event",
74
+ "startDate" : "<?php echo !empty( $event->data->meta['mec_date']['start']['date'] ) ? $event->data->meta['mec_date']['start']['date'] : '' ; ?>",
75
+ "endDate" : "<?php echo !empty( $event->data->meta['mec_date']['end']['date'] ) ? $event->data->meta['mec_date']['end']['date'] : '' ; ?>",
76
+ "location" :
77
+ {
78
+ "@type" : "Place",
79
+ "name" : "<?php echo (isset($location['name']) ? $location['name'] : ''); ?>",
80
+ "image" : "<?php echo (isset($location['thumbnail']) ? esc_url($location['thumbnail'] ) : '');; ?>",
81
+ "address" : "<?php echo (isset($location['address']) ? $location['address'] : ''); ?>"
82
+ },
83
+ "performer": <?php echo $speakers; ?>,
84
+ "description" : "<?php echo esc_html(preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<div class="figure">$1</div>', $event->data->post->post_content)); ?>",
85
+ "image" : "<?php echo !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ; ?>",
86
+ "name" : "<?php esc_html_e($event->data->title); ?>",
87
+ "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
88
+ }
89
+ </script>
90
  <?php if($this->style == 'modern'): ?>
91
  <div data-style="" class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
92
  <i class="mec-sl-clock "></i>
assets/css/backend.css CHANGED
@@ -15,7 +15,7 @@
15
  .button.mec-util-hidden{display: none;}
16
 
17
 
18
- .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; }
19
  .wns-be-sidebar { width: 260px; float: left; position: relative; }
20
  .wns-be-sidebar ul.wns-be-group-menu, .wns-be-sidebar ul.wns-be-group-menu li { list-style: none; margin: 0; }
21
  .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; }
@@ -360,7 +360,10 @@
360
  }
361
 
362
 
363
- .mec-toggle-month-divider { display: none; }
 
 
 
364
  .w-welcome p span { background: #fff; padding: 4px 10px;}
365
  #mec_masonry_skin_options_container .mec-form-row .description { margin-left: 0; padding-left: 0; border: none; margin-top: -4px; }
366
 
@@ -657,7 +660,30 @@
657
  margin-right: 6px;
658
  }
659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
660
  /* Activation Section */
 
 
 
 
 
 
 
661
  .w-box.mec-activation .w-box-content {
662
  padding: 10px 30px;
663
  }
@@ -667,7 +693,12 @@
667
 
668
  .w-box.mec-activation input[type="radio"]+label {
669
  color: #000;
670
- font-family: Arial, sans-serif;
 
 
 
 
 
671
  }
672
 
673
  .w-box.mec-activation input[type="radio"]+label span {
@@ -692,9 +723,9 @@
692
  }
693
 
694
  .w-box.mec-activation input[type="radio"].checked+label span {
695
- background-color: #008aff;
696
- border-color: #008aff;
697
- box-shadow: 0 2px 14px -3px #008aff;
698
  }
699
 
700
  .w-box.mec-activation input[type="radio"].checked+label span:after {
@@ -743,9 +774,9 @@
743
  letter-spacing: 1px;
744
  text-transform: uppercase;
745
  font-size: 12px;
746
- background: #008aff;
747
- background: linear-gradient(95deg, #36a2ff 0%, #008aff 50%, #0072ff 100%);
748
- box-shadow: 0 5px 23px -7px #008aff;
749
  transition: all 0.28s ease;
750
  position: absolute;
751
  right: 5px;
@@ -757,4 +788,216 @@
757
  background: linear-gradient(95deg, #555 0%, #222 50%, #000 100%);
758
  box-shadow: 0 5px 23px -7px rgba(0, 0, 0, .5);
759
  }
760
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  .button.mec-util-hidden{display: none;}
16
 
17
 
18
+ .wns-be-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Roboto, sans-serif ;max-width: 100%; background-color: #f6f6f6; border: 1px solid #c1cad2; box-shadow: 0 1px 1px rgba(0,0,0,.04); margin-top: 5px; margin-right: 15px; overflow: hidden; }
19
  .wns-be-sidebar { width: 260px; float: left; position: relative; }
20
  .wns-be-sidebar ul.wns-be-group-menu, .wns-be-sidebar ul.wns-be-group-menu li { list-style: none; margin: 0; }
21
  .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; }
360
  }
361
 
362
 
363
+ .mec-toggle-month-divider,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-archive-skinsm.mec-category-skins{ display: none; }
364
+ span.mec-archive-skins,span.mec-category-skins { margin-left: 10px; vertical-align: text-bottom; }
365
+ .mec-archive-skins select,.mec-archive-skins input,.mec-category-skins select,.mec-category-skins input { min-width: 225px;vertical-align: baseline; }
366
+ #mec_settings_default_skin_archive,#mec_settings_default_skin_category{ min-width: 225px; }
367
  .w-welcome p span { background: #fff; padding: 4px 10px;}
368
  #mec_masonry_skin_options_container .mec-form-row .description { margin-left: 0; padding-left: 0; border: none; margin-top: -4px; }
369
 
660
  margin-right: 6px;
661
  }
662
 
663
+ .support-page .w-box-content ul {
664
+ margin-top: 5px;
665
+ padding-left: 5px;
666
+ }
667
+
668
+ .support-page .w-box-content ul li {
669
+ font-size: 13px;
670
+ }
671
+
672
+ .support-page .w-box-content ul li i {
673
+ font-size: 17px;
674
+ vertical-align: text-bottom;
675
+ margin-right: 7px;
676
+ color: #999;
677
+ }
678
+
679
  /* Activation Section */
680
+ .w-box.mec-activation {
681
+ background: #fff url(../img/dp-dsb-support.jpg) no-repeat top right;
682
+ }
683
+ .w-box.mec-activation .w-box-head {
684
+ color: #40d8f0;
685
+ width: 75%;
686
+ }
687
  .w-box.mec-activation .w-box-content {
688
  padding: 10px 30px;
689
  }
693
 
694
  .w-box.mec-activation input[type="radio"]+label {
695
  color: #000;
696
+ font-size: 13px;
697
+ line-height: 14px !important;
698
+ color: #7b7b7b;
699
+ }
700
+ .w-box.mec-activation input[type=radio].checked+label {
701
+ color: #40d8f0;
702
  }
703
 
704
  .w-box.mec-activation input[type="radio"]+label span {
723
  }
724
 
725
  .w-box.mec-activation input[type="radio"].checked+label span {
726
+ background-color: #40d8f0;
727
+ border-color: #40d8f0;
728
+ box-shadow: 0 2px 14px -3px #40d8f0;
729
  }
730
 
731
  .w-box.mec-activation input[type="radio"].checked+label span:after {
774
  letter-spacing: 1px;
775
  text-transform: uppercase;
776
  font-size: 12px;
777
+ background: #4cbf67;
778
+ background: linear-gradient(95deg, #6fe08a 0, #58cf74 50%, #36cb58 100%);
779
+ box-shadow: 0 5px 10px -5px #4cbf67;
780
  transition: all 0.28s ease;
781
  position: absolute;
782
  right: 5px;
788
  background: linear-gradient(95deg, #555 0%, #222 50%, #000 100%);
789
  box-shadow: 0 5px 23px -7px rgba(0, 0, 0, .5);
790
  }
791
+
792
+ #MECActivation .MECPurchaseStatus {
793
+ display: inline-block;
794
+ width: 40px;
795
+ height: 40px;
796
+ text-align: center;
797
+ padding-top: 9px;
798
+ color: #fff;
799
+ font-weight: bold;
800
+ font-size: 18px;
801
+ border-radius: 50%;
802
+ padding-top: 8px;
803
+ position: absolute;
804
+ right: -51px;
805
+ top: calc(50% - 20px);
806
+ }
807
+
808
+ .MECPurchaseStatus:before,
809
+ .MECPurchaseStatus:after {
810
+ position: absolute;
811
+ border-radius: 50px;
812
+ background: #fff;
813
+ content: '';
814
+ transform: rotate(45deg);
815
+ }
816
+
817
+ .MECPurchaseStatus.PurchaseError:before {
818
+ width: 22px;
819
+ height: 4px;
820
+ right: 9px;
821
+ top: 18px;
822
+ transform: rotate(45deg);
823
+ }
824
+
825
+ .MECPurchaseStatus.PurchaseError:after {
826
+ width: 22px;
827
+ height: 4px;
828
+ right: 9px;
829
+ top: 18px;
830
+ transform: rotate(-45deg);
831
+ }
832
+ .MECPurchaseStatus.PurchaseSuccess:before {
833
+ width: 13px;
834
+ height: 4px;
835
+ right: 19px;
836
+ top: 21px;
837
+ transform: rotate(45deg);
838
+ }
839
+
840
+ .MECPurchaseStatus.PurchaseSuccess:after {
841
+ width: 22px;
842
+ height: 4px;
843
+ right: 5px;
844
+ top: 18px;
845
+ transform: rotate(-45deg);
846
+ }
847
+
848
+ #MECActivation .MECPurchaseStatus.PurchaseError {
849
+ background: #ff876c;
850
+ background: linear-gradient(95deg, #ff876c 0%, #ff7455 50%, #ff5a35 100%);
851
+ box-shadow: 0 5px 10px -5px #ff876c;
852
+ }
853
+ #MECActivation .MECPurchaseStatus.PurchaseSuccess {
854
+ background: #4cbf67;
855
+ background: linear-gradient(95deg, #6fe08a 0%, #58cf74 50%, #36cb58 100%);
856
+ box-shadow: 0 5px 10px -5px #4cbf67;
857
+ }
858
+ .wna-spinner-wrap {
859
+ position: absolute;
860
+ background: #000;
861
+ width: 509px;
862
+ height: 64px;
863
+ top: -8px;
864
+ border-radius: 50px;
865
+ z-index: 999;
866
+ background-color: #fff;
867
+ opacity: 0.9;
868
+ }
869
+
870
+ .wna-spinner {
871
+ width: 40px;
872
+ height: 40px;
873
+ position: relative;
874
+ margin: 6px auto;
875
+ }
876
+
877
+ .wna-spinner .double-bounce1,
878
+ .wna-spinner .double-bounce2 {
879
+ width: 100%;
880
+ height: 100%;
881
+ border-radius: 50%;
882
+ background-color: #40d8f0;
883
+ opacity: 0.6;
884
+ position: absolute;
885
+ top: 0;
886
+ left: 0;
887
+ -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
888
+ animation: sk-bounce 2.0s infinite ease-in-out;
889
+ }
890
+
891
+ .wna-spinner .double-bounce2 {
892
+ -webkit-animation-delay: -1.0s;
893
+ animation-delay: -1.0s;
894
+ }
895
+
896
+ #MECActivation .MECLicenseMessage {
897
+ margin-top: 24px;
898
+ color: #f64;
899
+ max-width: 570px;
900
+ }
901
+
902
+ @-webkit-keyframes sk-bounce {
903
+
904
+ 0%,
905
+ 100% {
906
+ -webkit-transform: scale(0.0);
907
+ }
908
+
909
+ 50% {
910
+ -webkit-transform: scale(1.0);
911
+ }
912
+ }
913
+
914
+ @keyframes sk-bounce {
915
+
916
+ 0%,
917
+ 100% {
918
+ transform: scale(0.0);
919
+ -webkit-transform: scale(0.0);
920
+ }
921
+
922
+ 50% {
923
+ transform: scale(1.0);
924
+ -webkit-transform: scale(1.0);
925
+ }
926
+ }
927
+
928
+ /* Addons Page */
929
+ .w-col-sm-3 .w-box.addon {
930
+ min-height: auto;
931
+ box-shadow: 0 3px 16px -5px rgba(0, 0, 0, 0.1);
932
+ border-radius: 2px;
933
+ }
934
+
935
+ .w-box-child.mec-addon-box {
936
+ padding: 20px 20px;
937
+ }
938
+
939
+ .mec-addon-box-head {
940
+ border-bottom: 1px solid #e8e8e8;
941
+ padding-bottom: 5px;
942
+ margin-bottom: 14px;
943
+ position: relative;
944
+ }
945
+
946
+ .mec-addon-box-version {
947
+ position: absolute;
948
+ top: 0;
949
+ right: 0;
950
+ background: #008aff;
951
+ border-radius: 50px;
952
+ padding: 0 11px;
953
+ color: #fff;
954
+ font-size: 12px;
955
+ }
956
+
957
+ .mec-addon-box-title {
958
+ padding-right: 65px;
959
+ font-weight: bold;
960
+ font-size: 18px;
961
+ line-height: 25px;
962
+ }
963
+
964
+ .mec-addon-box-title a span {
965
+ color: #444;
966
+ }
967
+
968
+ .mec-addon-box-content p {
969
+ color: #777;
970
+ font-size: 13px;
971
+ }
972
+
973
+ .mec-addon-box-purchase a {
974
+ font-weight: 500;
975
+ border-radius: 2px;
976
+ box-shadow: 0 3px 10px -4px #008aff;
977
+ text-shadow: none;
978
+ background: #008aff;
979
+ background: linear-gradient(95deg, #36a2ff 0, #008aff 50%, #0072ff 100%);
980
+ border: none;
981
+ transition: .24s;
982
+ padding: 7px 19px;
983
+ margin-top: 20px;
984
+ display: inline-block;
985
+ letter-spacing: 0.2px;
986
+ }
987
+
988
+ .mec-addon-box-purchase a span {
989
+ color: #fff;
990
+ }
991
+
992
+ .mec-addon-box-purchase a:hover {
993
+ background: #222;
994
+ background: linear-gradient(95deg, #555 0, #222 50%, #000 100%);
995
+ box-shadow: 0 5px 23px -7px rgba(0, 0, 0, .5);
996
+ cursor: pointer;
997
+ }
998
+
999
+ .mec-addon-box-mec-version {
1000
+ background: #f3f3f3;
1001
+ padding: 10px;
1002
+ font-size: 13px;
1003
+ }
assets/css/backend.min.css CHANGED
@@ -1,5 +1,5 @@
1
- #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family: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}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-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;animation:fadeEffect 1s}#mec_settings_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width: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{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 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;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button{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)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:999999999999999999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-family:Arial,sans-serif}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#008aff;border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);box-shadow:0 5px 23px -7px #008aff;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}
1
+ #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-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;animation:fadeEffect 1s}#mec_settings_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width: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{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 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;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button{border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:999999999999999999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:absolute;top:0;right:0;background:#008aff;border-radius:50px;padding:0 11px;color:#fff;font-size:12px}.mec-addon-box-title{padding-right:65px;font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-purchase a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:20px;display:inline-block;letter-spacing:.2px}.mec-addon-box-purchase a span{color:#fff}.mec-addon-box-purchase a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}
assets/css/frontend.css CHANGED
@@ -1317,15 +1317,15 @@
1317
  .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff;}
1318
  .mec-event-article .event-carousel-type2-head{padding: 10%;margin-right: -1px;}
1319
  .mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer { border-right: 1px solid #e6e6e6; }
1320
- .mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next{transition: all 0.25s ease; -webkit-transition: all 0.25s ease; position: absolute; top: 47%; background-color: transparent !important; }
1321
  .mec-event-carousel-type2 .owl-next {right: -60px; }
1322
  .mec-event-carousel-type2 .owl-prev {left: -60px; }
1323
- .mec-event-carousel-type2 .owl-prev i , .mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type3 .owl-prev i , .mec-event-carousel-type3 .owl-next i{ font-size:40px; color: #282828;}
1324
  .mec-event-carousel-type2 .owl-prev i:hover, .mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover, .mec-event-carousel-type3 .owl-next i:hover{color: #000; cursor: pointer;}
1325
  .mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing {top: auto; bottom: 60px; }
1326
  .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;}
1327
  .mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after { bottom: -18px;border-color: #fff transparent transparent transparent;}
1328
- @media only screen and (min-width: 320px ) and (max-width: 768px) {.mec-event-carousel-type2 .owl-prev, .mec-event-carousel-type2 .owl-next, .mec-event-carousel-type3 .owl-prev, .mec-event-carousel-type3 .owl-next{position: initial;top: 100%;}}
1329
 
1330
 
1331
 
@@ -1349,7 +1349,27 @@
1349
  .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;}
1350
  .mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after { bottom: -18px;border-color: #fff transparent transparent transparent;}
1351
  .event-carousel-type3-head .mec-end-date-label {display: inline; margin-left:2px;}
1352
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1353
 
1354
  /* MEC Countdown View Style1
1355
  ----------------------------- */
@@ -2294,6 +2314,12 @@
2294
  @media only screen and (max-width: 759px) { .mec-booking-attendees { width: 470px; } .mec-booking-attendees-head span,.mec-booking-attendees-head-content>span { word-break: break-all; }}
2295
 
2296
 
 
 
 
 
 
 
2297
  /* # Booking Modal
2298
  ================================================== */
2299
  .lity-content .mec-events-meta-group-booking { max-width: 520px; width: 520px; padding: 20px 50px; background: #fff; }
1317
  .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff;}
1318
  .mec-event-article .event-carousel-type2-head{padding: 10%;margin-right: -1px;}
1319
  .mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer { border-right: 1px solid #e6e6e6; }
1320
+ .mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next{transition: all 0.25s ease; -webkit-transition: all 0.25s ease; position: absolute; top: 47%; background-color: transparent !important; }
1321
  .mec-event-carousel-type2 .owl-next {right: -60px; }
1322
  .mec-event-carousel-type2 .owl-prev {left: -60px; }
1323
+ .mec-event-carousel-type2 .owl-prev i , .mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type3 .owl-prev i , .mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type4 .owl-prev i , .mec-event-carousel-type4 .owl-next i{ font-size:40px; color: #282828;}
1324
  .mec-event-carousel-type2 .owl-prev i:hover, .mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover, .mec-event-carousel-type3 .owl-next i:hover{color: #000; cursor: pointer;}
1325
  .mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing {top: auto; bottom: 60px; }
1326
  .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;}
1327
  .mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after { bottom: -18px;border-color: #fff transparent transparent transparent;}
1328
+ @media only screen and (min-width: 320px ) and (max-width: 768px) {.mec-event-carousel-type2 .owl-prev, .mec-event-carousel-type2 .owl-next, .mec-event-carousel-type3 .owl-prev, .mec-event-carousel-type3 .owl-next, .mec-event-carousel-type4 .owl-prev, .mec-event-carousel-type4 .owl-next{position: initial;top: 100%;}}
1329
 
1330
 
1331
 
1349
  .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;}
1350
  .mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after { bottom: -18px;border-color: #fff transparent transparent transparent;}
1351
  .event-carousel-type3-head .mec-end-date-label {display: inline; margin-left:2px;}
1352
+
1353
+ /* MEC Events Carousel Type4
1354
+ ----------------------------- */
1355
+ .event-carousel-type4-head.clearfix { position: relative; overflow: hidden; background: #fff; } .event-carousel-type4-head .mec-event-overlay { position: absolute; left: 0; right: 0; bottom: 0; top: 0; width: auto; height: auto; background-color: rgba(36, 36, 36, .4); transition: all .33s ease-in-out; } .mec-event-hover-carousel-type4 { font-size: 15px; color: #fff; position: absolute; bottom: 0; padding: 50px 35px; transition: all .33s ease-in-out; opacity: 0; visibility: hidden; }
1356
+ .mec-event-carousel-type4 .mec-event-article { margin: 0 10px; }
1357
+ .mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4 { opacity: 1; visibility: visible; }
1358
+ .mec-event-hover-carousel-type4 .mec-event-icon { font-size: 18px; float: left; margin-right: 14px; color: #fff; padding: 13px; }
1359
+ .mec-event-hover-carousel-type4 .mec-event-date { font-size: 11px; text-transform: uppercase; font-weight: 400; line-height: 1.6; }
1360
+ .mec-event-hover-carousel-type4 .mec-event-date span { display: block; font-weight: 700; font-size: 14px; } .mec-event-hover-carousel-type4 .mec-event-title { color: #fff; margin: 20px 0 38px; font-size: 16px; font-weight: 700; text-transform: uppercase; font-style: normal; }
1361
+ .mec-event-hover-carousel-type4 .mec-btn-wrapper { text-align: left; }
1362
+ .mec-event-hover-carousel-type4 .mec-event-button { color: #fff; background-color: #191919; border: 2px #191919 solid; padding: 10px 14px; letter-spacing: 1.5px; font-size: 11px; font-weight: 700; font-style: normal; transition: all .22s ease; text-decoration: none; }
1363
+ .mec-event-hover-carousel-type4 .mec-event-button:hover { color: #191919; background-color: #fff; border-color: #fff; border-radius: 1px; }
1364
+ .mec-event-carousel-type4 .owl-next {right: -70px; }
1365
+ .mec-event-carousel-type4 .owl-prev {left: -70px; }
1366
+ .mec-carousel-type4-head { margin-bottom: 25px; }
1367
+ .mec-carousel-type4-head-title { padding: 0 11px; text-align: left; font-weight: bold; font-size: 20px; color: #000; }
1368
+ .mec-carousel-type4-head-link { text-align: right; padding: 0 11px; }
1369
+ .mec-carousel-type4-head-link a { background: #222; color: #fff; padding: 10px 38px; transition: all 0.3s ease; }.mec-carousel-type4-head-link a:hover, .mec-carousel-type4-head-link a:visited { color: #fff; }
1370
+ @media (max-width: 960px) {
1371
+ .mec-event-carousel-type4 .owl-stage { left: -50px; }
1372
+ }
1373
 
1374
  /* MEC Countdown View Style1
1375
  ----------------------------- */
2314
  @media only screen and (max-width: 759px) { .mec-booking-attendees { width: 470px; } .mec-booking-attendees-head span,.mec-booking-attendees-head-content>span { word-break: break-all; }}
2315
 
2316
 
2317
+ /* # Woocommerce
2318
+ ================================================== */
2319
+ .mec-woo-booking-checkout { position: relative; border: none; border-radius: 0; color: #fff; display: inline-block; font-size: 12px; letter-spacing: 1px; line-height: 1.5; text-transform: uppercase; font-weight: 600; text-decoration: none; cursor: pointer; margin-bottom: 21px; margin-right: 10px; line-height: 1; padding: 18px 20px 16px; background: #39c36e; -webkit-transition: all .21s ease; -moz-transition: all .21s ease; transition: all .21s ease; border-radius: 0; margin-bottom: 6px; min-width: 170px; margin-top: 5px; text-align: center; }
2320
+ .mec-woo-booking-checkout:hover {background: #222; color:#fff;}
2321
+ .mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited {color:#fff;}
2322
+
2323
  /* # Booking Modal
2324
  ================================================== */
2325
  .lity-content .mec-events-meta-group-booking { max-width: 520px; width: 520px; padding: 20px 50px; background: #fff; }
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 h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.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-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:14px;color:#888;margin-bottom:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-weight:600;font-size:15px}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev{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}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:inline-block}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:10%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font: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-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:750px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}.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%}}
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=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.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-event-container-simple .event-single-content-simple{display:none}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:14px;color:#888;margin-bottom:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-weight:600;font-size:15px}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-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}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:inline-block}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:10%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font: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-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:750px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.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/img/dp-dsb-support.jpg ADDED
Binary file
assets/js/backend.js CHANGED
@@ -238,6 +238,52 @@ jQuery(document).ready(function($)
238
  },
239
  });
240
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  });
242
 
243
  function mec_skin_toggle()
238
  },
239
  });
240
  });
241
+
242
+ /* MEC activation */
243
+ if ($('#MECActivation').length > 0)
244
+ {
245
+ var LicenseType = $('#MECActivation input.checked[type=radio][name=MECLicense]').val();
246
+ $('#MECActivation input[type=radio][name=MECLicense]').change(function () {
247
+ $('#MECActivation').find('input').removeClass('checked');
248
+ $(this).addClass('checked');
249
+ LicenseType = $(this).val();
250
+ });
251
+
252
+ $('#MECActivation input[type=submit]').on('click', function(e){
253
+ e.preventDefault();
254
+ $('.wna-spinner-wrap').remove();
255
+ $('#MECActivation').find('.MECLicenseMessage').text(' ');
256
+ $('#MECActivation').find('.MECPurchaseStatus').removeClass('PurchaseError');
257
+ $('#MECActivation').find('.MECPurchaseStatus').removeClass('PurchaseSuccess');
258
+ var PurchaseCode = $('#MECActivation input[type=password][name=MECPurchaseCode]').val();
259
+ var information = { LicenseTypeJson: LicenseType, PurchaseCodeJson: PurchaseCode };
260
+ $.ajax({
261
+ url: mec_admin_localize.ajax_url,
262
+ type: 'POST',
263
+ data: {
264
+ action: 'activate_license',
265
+ nonce: mec_admin_localize.ajax_nonce,
266
+ content: information,
267
+ },
268
+ beforeSend: function () {
269
+ $('.LicenseField').append('<div class="wna-spinner-wrap"><div class="wna-spinner"><div class="double-bounce1"></div><div class="double-bounce2"></div></div></div>');
270
+ },
271
+ success: function (response) {
272
+ if (response == 'success')
273
+ {
274
+ $('.wna-spinner-wrap').remove();
275
+ $('#MECActivation').find('.MECPurchaseStatus').addClass('PurchaseSuccess');
276
+ }
277
+ else
278
+ {
279
+ $('.wna-spinner-wrap').remove();
280
+ $('#MECActivation').find('.MECPurchaseStatus').addClass('PurchaseError');
281
+ $('#MECActivation').find('.MECLicenseMessage').append(response);
282
+ }
283
+ },
284
+ });
285
+ });
286
+ }
287
  });
288
 
289
  function mec_skin_toggle()
assets/js/events.js CHANGED
@@ -226,11 +226,17 @@ jQuery(document).ready(function($)
226
 
227
  $('#mec_add_in_days').on('click', function()
228
  {
229
- var date = $('#mec_exceptions_in_days_date').val();
230
- if(date === '') return false;
 
 
 
 
 
 
231
 
232
  var key = $('#mec_new_in_days_key').val();
233
- var html = $('#mec_new_in_days_raw').html().replace(/:i:/g, key).replace(/:val:/g, date);
234
 
235
  $('#mec_in_days').append(html);
236
  $('#mec_new_in_days_key').val(parseInt(key)+1);
226
 
227
  $('#mec_add_in_days').on('click', function()
228
  {
229
+ var start = $('#mec_exceptions_in_days_start_date').val();
230
+ if(start === '') return false;
231
+
232
+ var end = $('#mec_exceptions_in_days_end_date').val();
233
+ if(end === '') return false;
234
+
235
+ var value = start + ':' + end;
236
+ var label = start + ' - ' + end;
237
 
238
  var key = $('#mec_new_in_days_key').val();
239
+ var html = $('#mec_new_in_days_raw').html().replace(/:i:/g, key).replace(/:val:/g, value).replace(/:label:/g, label);
240
 
241
  $('#mec_in_days').append(html);
242
  $('#mec_new_in_days_key').val(parseInt(key)+1);
assets/js/frontend.js CHANGED
@@ -2777,6 +2777,40 @@ var mecSingleEventDisplayer = {
2777
  }
2778
  );
2779
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2780
  else
2781
  {
2782
  $("#mec_skin_"+settings.id+" .mec-owl-carousel").owlCarousel(
@@ -3036,7 +3070,7 @@ function get_parameter_by_name(name, url)
3036
  });
3037
 
3038
  // Register Booking Smooth Scroll
3039
- $('a[href^="#mec-events-meta-group-booking"]').click(function()
3040
  {
3041
  if(location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname)
3042
  {
@@ -3059,10 +3093,12 @@ function get_parameter_by_name(name, url)
3059
 
3060
  // Load Information widget under title in mobile/tablet
3061
  if ($('.single-mec-events .mec-single-event:not(".mec-single-modern")').length > 0) {
3062
- var html = $('.single-mec-events .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox')[0].outerHTML;
3063
- if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 960) {
3064
- $('.single-mec-events .col-md-4 .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox').remove();
3065
- $('.single-mec-events .mec-event-info-mobile').html(html)
 
 
3066
  }
3067
  }
3068
 
2777
  }
2778
  );
2779
  }
2780
+ else if (settings.style === 'type4')
2781
+ {
2782
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").owlCarousel(
2783
+ {
2784
+ autoplay: true,
2785
+ loop: true,
2786
+ autoplayTimeout: settings.autoplay,
2787
+ items: settings.items,
2788
+ dots: false,
2789
+ nav: true,
2790
+ responsiveClass: true,
2791
+ responsive: {
2792
+ 0: {
2793
+ items: 1,
2794
+ stagePadding: 50,
2795
+ },
2796
+ 979: {
2797
+ items: 2,
2798
+ },
2799
+ 1199: {
2800
+ items: settings.count,
2801
+ }
2802
+ },
2803
+ autoplayHoverPause: true,
2804
+ navText: ["<i class='mec-sl-arrow-left'></i>", " <i class='mec-sl-arrow-right'></i>"],
2805
+ rtl: owl_rtl,
2806
+ });
2807
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").bind(
2808
+ "mouseleave",
2809
+ function (event) {
2810
+ $("#mec_skin_" + settings.id + " .mec-owl-carousel").trigger('play.owl.autoplay');
2811
+ }
2812
+ );
2813
+ }
2814
  else
2815
  {
2816
  $("#mec_skin_"+settings.id+" .mec-owl-carousel").owlCarousel(
3070
  });
3071
 
3072
  // Register Booking Smooth Scroll
3073
+ $('a.simple-booking[href^="#mec-events-meta-group-booking"]').click(function()
3074
  {
3075
  if(location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname)
3076
  {
3093
 
3094
  // Load Information widget under title in mobile/tablet
3095
  if ($('.single-mec-events .mec-single-event:not(".mec-single-modern")').length > 0) {
3096
+ if ($('.single-mec-events .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox').length > 0) {
3097
+ var html = $('.single-mec-events .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox')[0].outerHTML;
3098
+ if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 960) {
3099
+ $('.single-mec-events .col-md-4 .mec-event-info-desktop.mec-event-meta.mec-color-before.mec-frontbox').remove();
3100
+ $('.single-mec-events .mec-event-info-mobile').html(html)
3101
+ }
3102
  }
3103
  }
3104
 
assets/sql/install.sql CHANGED
@@ -4,14 +4,14 @@ CREATE TABLE IF NOT EXISTS `#__mec_events` (
4
  `start` date NOT NULL,
5
  `end` date NOT NULL,
6
  `repeat` tinyint(4) NOT NULL DEFAULT '0',
7
- `rinterval` varchar(10) COLLATE utf8_general_ci DEFAULT NULL,
8
- `year` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
9
- `month` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
10
- `day` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
11
- `week` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
12
- `weekday` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
13
- `weekdays` varchar(80) COLLATE utf8_general_ci DEFAULT NULL
14
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1;
15
 
16
  ALTER TABLE `#__mec_events` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ID` (`id`), ADD UNIQUE KEY `post_id` (`post_id`);
17
  ALTER TABLE `#__mec_events` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
@@ -21,4 +21,15 @@ ALTER TABLE `#__mec_events` ADD `days` TEXT NULL DEFAULT NULL, ADD `time_start`
21
  ALTER TABLE `#__mec_events` ADD `not_in_days` TEXT NOT NULL DEFAULT '' AFTER `days`;
22
  ALTER TABLE `#__mec_events` CHANGE `days` `days` TEXT NOT NULL DEFAULT '';
23
 
24
- ALTER TABLE `#__mec_events` ADD INDEX( `start`, `end`, `repeat`, `rinterval`, `year`, `month`, `day`, `week`, `weekday`, `weekdays`, `time_start`, `time_end`);
 
 
 
 
 
 
 
 
 
 
 
4
  `start` date NOT NULL,
5
  `end` date NOT NULL,
6
  `repeat` tinyint(4) NOT NULL DEFAULT '0',
7
+ `rinterval` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
8
+ `year` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
9
+ `month` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
10
+ `day` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
11
+ `week` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
12
+ `weekday` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
13
+ `weekdays` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL
14
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1;
15
 
16
  ALTER TABLE `#__mec_events` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ID` (`id`), ADD UNIQUE KEY `post_id` (`post_id`);
17
  ALTER TABLE `#__mec_events` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
21
  ALTER TABLE `#__mec_events` ADD `not_in_days` TEXT NOT NULL DEFAULT '' AFTER `days`;
22
  ALTER TABLE `#__mec_events` CHANGE `days` `days` TEXT NOT NULL DEFAULT '';
23
 
24
+ ALTER TABLE `#__mec_events` ADD INDEX (`start`, `end`, `repeat`, `rinterval`, `year`, `month`, `day`, `week`, `weekday`, `weekdays`, `time_start`, `time_end`);
25
+
26
+ CREATE TABLE IF NOT EXISTS `#__mec_dates` (
27
+ `id` int(10) UNSIGNED NOT NULL,
28
+ `post_id` int(10) NOT NULL,
29
+ `dstart` date NOT NULL,
30
+ `dend` date NOT NULL,
31
+ `type` enum('include','exclude') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'include'
32
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
33
+
34
+ ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `type` (`type`);
35
+ ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
assets/sql/tables.sql CHANGED
@@ -4,14 +4,14 @@ CREATE TABLE IF NOT EXISTS `#__mec_events` (
4
  `start` date NOT NULL,
5
  `end` date NOT NULL,
6
  `repeat` tinyint(4) NOT NULL DEFAULT '0',
7
- `rinterval` varchar(10) COLLATE utf8_general_ci DEFAULT NULL,
8
- `year` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
9
- `month` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
10
- `day` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
11
- `week` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
12
- `weekday` varchar(80) COLLATE utf8_general_ci DEFAULT NULL,
13
- `weekdays` varchar(80) COLLATE utf8_general_ci DEFAULT NULL
14
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1;
15
 
16
  ALTER TABLE `#__mec_events` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ID` (`id`), ADD UNIQUE KEY `post_id` (`post_id`);
17
  ALTER TABLE `#__mec_events` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
@@ -21,4 +21,15 @@ ALTER TABLE `#__mec_events` ADD `days` TEXT NULL DEFAULT NULL, ADD `time_start`
21
  ALTER TABLE `#__mec_events` ADD `not_in_days` TEXT NOT NULL DEFAULT '' AFTER `days`;
22
  ALTER TABLE `#__mec_events` CHANGE `days` `days` TEXT NOT NULL DEFAULT '';
23
 
24
- ALTER TABLE `#__mec_events` ADD INDEX( `start`, `end`, `repeat`, `rinterval`, `year`, `month`, `day`, `week`, `weekday`, `weekdays`, `time_start`, `time_end`);
 
 
 
 
 
 
 
 
 
 
 
4
  `start` date NOT NULL,
5
  `end` date NOT NULL,
6
  `repeat` tinyint(4) NOT NULL DEFAULT '0',
7
+ `rinterval` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
8
+ `year` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
9
+ `month` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
10
+ `day` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
11
+ `week` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
12
+ `weekday` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
13
+ `weekdays` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL
14
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1;
15
 
16
  ALTER TABLE `#__mec_events` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `ID` (`id`), ADD UNIQUE KEY `post_id` (`post_id`);
17
  ALTER TABLE `#__mec_events` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
21
  ALTER TABLE `#__mec_events` ADD `not_in_days` TEXT NOT NULL DEFAULT '' AFTER `days`;
22
  ALTER TABLE `#__mec_events` CHANGE `days` `days` TEXT NOT NULL DEFAULT '';
23
 
24
+ ALTER TABLE `#__mec_events` ADD INDEX (`start`, `end`, `repeat`, `rinterval`, `year`, `month`, `day`, `week`, `weekday`, `weekdays`, `time_start`, `time_end`);
25
+
26
+ CREATE TABLE IF NOT EXISTS `#__mec_dates` (
27
+ `id` int(10) UNSIGNED NOT NULL,
28
+ `post_id` int(10) NOT NULL,
29
+ `dstart` date NOT NULL,
30
+ `dend` date NOT NULL,
31
+ `type` enum('include','exclude') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'include'
32
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
33
+
34
+ ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `type` (`type`);
35
+ ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
changelog.txt CHANGED
@@ -1,4 +1,18 @@
1
- v 3.4.65 March 2019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Fixed: Display button in Import/Export tabs.
3
 
4
  v 3.4.5 – 27 February 2019
1
+ v 3.5.016 March 2019
2
+ - Added: Facebook events importer
3
+ - Added: Activation box in welcome page and removed activation tab from MEC settings
4
+ - Added: Ability to define date period for custom days
5
+ - Added: Event Schema markup to single page and shortcodes
6
+ - Added: Custom Archive Skin feature
7
+ - Added: Custom Category Skin feature
8
+ - Added: Carousel skin type 4
9
+ - Removed: old support page and added new one
10
+ - Updated: spanish language from lite version repository
11
+ - Fixed: Modal booking
12
+ - Fixed: link for image in countdown view type 3
13
+ - Fixed: Checkout button style
14
+
15
+ v 3.4.6 – 5 March 2019
16
  - Fixed: Display button in Import/Export tabs.
17
 
18
  v 3.4.5 – 27 February 2019
languages/modern-events-calendar-lite-de_DE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2019-02-27 11:59+0330\n"
6
- "PO-Revision-Date: 2019-02-27 11:59+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -19,7 +19,7 @@ msgstr ""
19
 
20
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
21
  #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
22
- #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
@@ -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:281
31
- #: app/features/mec.php:310 app/features/mec.php:336
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
@@ -55,24 +55,24 @@ msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
  #: app/features/colors.php:50 app/features/fes/form.php:558
58
- #: app/features/mec/settings.php:897
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
62
- #: app/features/contextual.php:55 app/features/mec.php:267
63
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
64
  #: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
65
- #: app/features/mec/regform.php:24 app/features/mec/settings.php:40
66
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:51
67
- #: app/features/mec/support.php:20
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
- #: app/features/contextual.php:62 app/features/events.php:1214
72
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
73
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
74
  #: app/features/mec/regform.php:32 app/features/mec/regform.php:95
75
- #: app/features/mec/settings.php:209 app/features/mec/styles.php:33
76
  #: app/features/mec/styling.php:60 app/features/mec/support.php:29
77
  msgid "Booking Form"
78
  msgstr "Buchungsformular"
@@ -94,7 +94,7 @@ msgstr ""
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:40
95
  #: app/features/mec/gateways.php:97 app/features/mec/ie.php:36
96
  #: app/features/mec/messages.php:40 app/features/mec/notifications.php:39
97
- #: app/features/mec/regform.php:39 app/features/mec/settings.php:216
98
  #: app/features/mec/styles.php:40 app/features/mec/styling.php:67
99
  #: app/features/mec/support.php:36
100
  msgid "Payment Gateways"
@@ -113,7 +113,7 @@ msgstr ""
113
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
114
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
115
  #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:96
116
- #: app/features/mec/regform.php:47 app/features/mec/settings.php:226
117
  #: app/features/mec/styles.php:49 app/features/mec/styling.php:76
118
  #: app/features/mec/support.php:45
119
  msgid "Notifications"
@@ -194,88 +194,87 @@ msgstr ""
194
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
195
  "\"0\" allowfullscreen></iframe>"
196
 
197
- #: app/features/contextual.php:117 app/features/mec/settings.php:47
198
- #: app/features/mec/settings.php:278
199
  msgid "General Options"
200
  msgstr "Allgemeine Einstellungen"
201
 
202
- #: app/features/contextual.php:139 app/features/mec/settings.php:59
203
- #: app/features/mec/settings.php:430
204
  msgid "Slugs/Permalinks"
205
  msgstr "Slug/Permalinks"
206
 
207
- #: app/features/contextual.php:152 app/features/mec/settings.php:65
208
- #: app/features/mec/settings.php:450
209
  msgid "Event Details/Single Event Page"
210
  msgstr "Event Details / Einzelveranstaltungsseite"
211
 
212
- #: app/features/contextual.php:166 app/features/mec/settings.php:71
213
- #: app/features/mec/settings.php:491
214
  msgid "Currency Options"
215
  msgstr "Währungseinstellungen"
216
 
217
- #: app/features/contextual.php:182 app/features/mec/settings.php:83
218
- #: app/features/mec/settings.php:558
219
  msgid "Google Maps Options"
220
  msgstr "Google Maps Einstellungen"
221
 
222
- #: app/features/contextual.php:244 app/features/mec/settings.php:89
223
- #: app/features/mec/settings.php:632
224
  msgid "Google Recaptcha Options"
225
  msgstr "Google Recaptcha Einstellungen"
226
 
227
- #: app/features/contextual.php:258 app/features/mec/settings.php:119
228
- #: app/features/mec/settings.php:750
229
  msgid "Countdown Options"
230
  msgstr "Countdown Einstellungsoptionen"
231
 
232
- #: app/features/contextual.php:268 app/features/mec/settings.php:125
233
- #: app/features/mec/settings.php:771
234
  msgid "Social Networks"
235
  msgstr "Soziale Netzwerke"
236
 
237
- #: app/features/contextual.php:278 app/features/mec/settings.php:131
238
- #: app/features/mec/settings.php:796
239
  msgid "Next Event Module"
240
  msgstr "Nächstes Veranstaltung Modul"
241
 
242
- #: app/features/contextual.php:286 app/features/mec/settings.php:137
243
- #: app/features/mec/settings.php:824
244
  msgid "Frontend Event Submission"
245
  msgstr "Erstellung von Veranstaltungen im Frontend"
246
 
247
- #: app/features/contextual.php:298 app/features/events.php:580
248
- #: app/features/mec/settings.php:149
249
  msgid "Exceptional Days"
250
  msgstr "Herausgenommene Tage "
251
 
252
  #: app/features/contextual.php:308 app/features/events.php:263
253
- #: app/features/mec/settings.php:161 app/features/mec/settings.php:998
254
  msgid "Booking"
255
  msgstr "Buchung / Reservierung"
256
 
257
- #: app/features/contextual.php:318 app/features/mec/settings.php:167
258
- #: app/features/mec/settings.php:1088
259
  msgid "Coupons"
260
  msgstr "Gutscheine"
261
 
262
- #: app/features/contextual.php:326 app/features/mec/settings.php:185
263
- #: app/features/mec/settings.php:1229
264
  msgid "BuddyPress Integration"
265
  msgstr "Buddy Press Integration"
266
 
267
- #: app/features/contextual.php:334 app/features/mec/settings.php:191
268
- #: app/features/mec/settings.php:1259
269
  msgid "Mailchimp Integration"
270
  msgstr "Mailchimp Integration"
271
 
272
- #: app/features/contextual.php:346 app/features/mec/settings.php:197
273
- #: app/features/mec/settings.php:1295
274
  msgid "MEC Activation"
275
  msgstr "MEC Aktivierung"
276
 
277
  #: app/features/events.php:132 app/features/ix/export.php:34
278
- #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
279
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
280
  msgid "Events"
281
  msgstr "Veranstaltungen"
@@ -289,7 +288,7 @@ msgstr "Veranstaltungen"
289
  msgid "Event"
290
  msgstr "Veranstaltung"
291
 
292
- #: app/features/events.php:134 app/features/mec.php:253
293
  msgid "Add Event"
294
  msgstr "Veranstaltung hinzufügen"
295
 
@@ -297,7 +296,7 @@ msgstr "Veranstaltung hinzufügen"
297
  msgid "Add New Event"
298
  msgstr "Neue Veranstaltung hinzufügen"
299
 
300
- #: app/features/events.php:136 app/features/ix.php:3175
301
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
302
  msgid "No events found!"
303
  msgstr "Keine Veranstaltungen gefunden!"
@@ -329,7 +328,7 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
329
  #: app/features/mec/meta_boxes/search_form.php:292
330
  #: app/features/mec/meta_boxes/search_form.php:332
331
  #: app/features/mec/meta_boxes/search_form.php:379
332
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4197
333
  #: app/libraries/skins.php:711 app/skins/single/default.php:156
334
  #: app/skins/single/default.php:363 app/skins/single/m1.php:169
335
  #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
@@ -337,8 +336,8 @@ msgid "Category"
337
  msgstr "Kategorie"
338
 
339
  #: app/features/events.php:153 app/features/fes/form.php:510
340
- #: app/features/mec.php:255 app/features/mec/meta_boxes/filter.php:70
341
- #: app/libraries/main.php:4196
342
  msgid "Categories"
343
  msgstr "Kategorien"
344
 
@@ -410,17 +409,17 @@ msgstr "Wählen Sie ein Symbol"
410
  msgid "Event Details"
411
  msgstr "Veranstaltungsdetails"
412
 
413
- #: app/features/events.php:296 app/features/events.php:1966
414
- #: app/features/events.php:2010 app/features/fes/form.php:471
415
  #: app/features/ix.php:2719 app/features/ix.php:2760
416
- #: app/features/mec/settings.php:873 app/libraries/main.php:4229
417
  #: app/widgets/single.php:103
418
  msgid "Event Cost"
419
  msgstr ""
420
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
421
 
422
  #: app/features/events.php:299 app/features/fes/form.php:474
423
- #: app/libraries/main.php:4230 app/skins/single/default.php:91
424
  #: app/skins/single/default.php:298 app/skins/single/m1.php:49
425
  #: app/skins/single/modern.php:184
426
  msgid "Cost"
@@ -441,12 +440,12 @@ msgstr "Gäste Daten"
441
  msgid "Name"
442
  msgstr "Name"
443
 
444
- #: app/features/events.php:381 app/features/events.php:1249
445
  #: app/features/fes/form.php:429 app/features/mec/regform.php:137
446
  #: app/features/organizers.php:110 app/features/organizers.php:150
447
  #: app/features/profile/profile.php:93 app/features/speakers.php:119
448
- #: app/features/speakers.php:179 app/libraries/main.php:1080
449
- #: app/libraries/main.php:1161 app/libraries/main.php:2107
450
  #: app/libraries/notifications.php:560 app/modules/booking/steps/form.php:31
451
  #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
452
  #: app/skins/single/default.php:198 app/skins/single/default.php:405
@@ -460,11 +459,11 @@ msgid "Date and Time"
460
  msgstr "Datum und Uhrzeit"
461
 
462
  #: app/features/events.php:389 app/features/events.php:393
463
- #: app/features/events.php:1787 app/features/events.php:1966
464
- #: app/features/events.php:2010 app/features/fes/form.php:227
465
  #: app/features/fes/form.php:231 app/features/ix.php:2719
466
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
467
- #: app/features/mec/dashboard.php:269
468
  #: app/features/mec/meta_boxes/display_options.php:42
469
  #: app/features/mec/meta_boxes/display_options.php:139
470
  #: app/features/mec/meta_boxes/display_options.php:235
@@ -476,31 +475,31 @@ msgstr "Datum und Uhrzeit"
476
  #: app/features/mec/meta_boxes/display_options.php:544
477
  #: app/features/mec/meta_boxes/display_options.php:590
478
  #: app/features/mec/meta_boxes/display_options.php:633
479
- #: app/features/mec/meta_boxes/display_options.php:799
480
- #: app/features/mec/meta_boxes/display_options.php:861
481
  msgid "Start Date"
482
  msgstr "Start Datum"
483
 
484
  #: app/features/events.php:421 app/features/events.php:461
485
- #: app/features/events.php:866 app/features/events.php:884
486
- #: app/features/events.php:969 app/features/events.php:987
487
  #: app/features/fes/form.php:259 app/features/fes/form.php:299
488
  msgid "AM"
489
  msgstr "AM"
490
 
491
  #: app/features/events.php:422 app/features/events.php:462
492
- #: app/features/events.php:867 app/features/events.php:885
493
- #: app/features/events.php:970 app/features/events.php:988
494
  #: app/features/fes/form.php:260 app/features/fes/form.php:300
495
  msgid "PM"
496
  msgstr "PM"
497
 
498
  #: app/features/events.php:429 app/features/events.php:433
499
- #: app/features/events.php:1788 app/features/events.php:1966
500
- #: app/features/events.php:2010 app/features/fes/form.php:267
501
  #: app/features/fes/form.php:271 app/features/ix.php:2719
502
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
503
- #: app/features/mec/dashboard.php:270
504
  msgid "End Date"
505
  msgstr "Ende Datum"
506
 
@@ -537,7 +536,7 @@ msgid "Repeats"
537
  msgstr "Wiederholend"
538
 
539
  #: app/features/events.php:491 app/features/fes/form.php:329
540
- #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:71
541
  msgid "Daily"
542
  msgstr "Täglich"
543
 
@@ -559,12 +558,12 @@ msgid "Weekly"
559
  msgstr "Wöchentlich"
560
 
561
  #: app/features/events.php:496 app/features/fes/form.php:334
562
- #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:69
563
  msgid "Monthly"
564
  msgstr "Monatlich"
565
 
566
  #: app/features/events.php:497 app/features/fes/form.php:335
567
- #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:68
568
  msgid "Yearly"
569
  msgstr "Jährlich"
570
 
@@ -619,48 +618,54 @@ msgstr "Samstag"
619
  msgid "Sunday"
620
  msgstr "Sonntag"
621
 
622
- #: app/features/events.php:518 app/features/events.php:590
623
- #: app/features/fes/form.php:356 app/features/profile/profile.php:31
624
- #: app/libraries/main.php:1622 app/modules/booking/steps/tickets.php:22
625
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
626
- #: app/skins/single/default.php:262 app/skins/single/m1.php:16
627
- #: app/skins/single/modern.php:151
628
- msgid "Date"
629
- msgstr "Datum"
 
 
 
 
 
 
630
 
631
- #: app/features/events.php:519 app/features/events.php:591
632
- #: app/features/events.php:667 app/features/events.php:722
633
- #: app/features/events.php:843 app/features/events.php:914
634
- #: app/features/events.php:1017 app/features/events.php:1068
635
- #: app/features/events.php:1149 app/features/fes/form.php:357
636
  msgid "Add"
637
  msgstr "Hinzufügen"
638
 
639
- #: app/features/events.php:520 app/features/fes/form.php:358
640
  msgid "Add certain days to event occurrence dates."
641
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
642
 
643
- #: app/features/events.php:542 app/features/fes/form.php:380
644
  msgid "Ends Repeat"
645
  msgstr "Wiederholung endet"
646
 
647
- #: app/features/events.php:546 app/features/fes/form.php:384
648
  msgid "Never"
649
  msgstr "Niemals"
650
 
651
- #: app/features/events.php:551 app/features/fes/form.php:389
652
  msgid "On"
653
  msgstr "Am"
654
 
655
- #: app/features/events.php:558 app/features/fes/form.php:396
656
  msgid "After"
657
  msgstr "Nach"
658
 
659
- #: app/features/events.php:560 app/features/fes/form.php:398
660
  msgid "Occurrences times"
661
  msgstr " mal vorkommen"
662
 
663
- #: app/features/events.php:561 app/features/fes/form.php:399
664
  msgid ""
665
  "The event will finish after certain repeats. For example if you set it to "
666
  "10, the event will finish after 10 repeats."
@@ -668,117 +673,126 @@ msgstr ""
668
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
669
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
670
 
671
- #: app/features/events.php:586
672
  msgid "Exclude certain days"
673
  msgstr "Ausschluss bestimmter Tage"
674
 
675
- #: app/features/events.php:592
 
 
 
 
 
 
 
 
 
676
  msgid "Exclude certain days from event occurrence dates."
677
  msgstr ""
678
  "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
679
  "Eventwiederholungen, oder um das Wochenende auszuschließen"
680
 
681
- #: app/features/events.php:636 app/libraries/render.php:428
682
  msgid "Day 1"
683
  msgstr ""
684
 
685
- #: app/features/events.php:649 app/features/mec/settings.php:927
686
  #: app/skins/single.php:246
687
  msgid "Hourly Schedule"
688
  msgstr "Stundenplan"
689
 
690
- #: app/features/events.php:652
691
  msgid "Add Day"
692
  msgstr ""
693
 
694
- #: app/features/events.php:653
695
  msgid ""
696
  "Add new days for schedule. For example if your event is multiple days, you "
697
  "can add a different schedule for each day!"
698
  msgstr ""
699
 
700
- #: app/features/events.php:659
701
  #, php-format
702
  msgid "Day %s"
703
  msgstr ""
704
 
705
- #: app/features/events.php:662 app/features/events.php:675
706
- #: app/features/events.php:695 app/features/events.php:717
707
- #: app/features/events.php:733 app/features/events.php:1155
708
- #: app/features/events.php:1177 app/features/events.php:1784
709
- #: app/features/events.php:1966 app/features/events.php:2010
710
  #: app/features/fes/form.php:216 app/features/ix.php:2719
711
- #: app/features/ix.php:2760 app/features/mec/settings.php:1189
712
- #: app/features/mec/settings.php:1209 app/features/mec/styling.php:199
713
  msgid "Title"
714
  msgstr "Titel"
715
 
716
- #: app/features/events.php:664 app/features/events.php:677
717
- #: app/features/events.php:697 app/features/events.php:719
718
- #: app/features/events.php:735 app/features/events.php:909
719
- #: app/features/events.php:925 app/features/events.php:939
720
- #: app/features/events.php:1012 app/features/events.php:1029
721
- #: app/features/events.php:1088 app/features/events.php:1113
722
- #: app/features/events.php:1166 app/features/events.php:1188
723
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1138
724
- #: app/features/mec/settings.php:1161 app/features/mec/settings.php:1200
725
- #: app/features/mec/settings.php:1220 app/libraries/main.php:2086
726
- #: app/libraries/main.php:2115 app/libraries/main.php:2144
727
- #: app/libraries/main.php:2173 app/libraries/main.php:2195
728
- #: app/libraries/main.php:2226 app/libraries/main.php:2270
729
- #: app/libraries/main.php:2314 app/libraries/main.php:2361
730
- #: app/libraries/main.php:2399
731
  msgid "Remove"
732
  msgstr "Entfernen"
733
 
734
- #: app/features/events.php:668 app/features/events.php:723
735
  msgid "Add new hourly schedule row"
736
  msgstr "Neue Stundenplan-Zeile hinzufügen"
737
 
738
- #: app/features/events.php:673 app/features/events.php:693
739
- #: app/features/events.php:731
740
  msgid "From e.g. 8:15"
741
  msgstr "Von z.B. 08:15 Uhr"
742
 
743
- #: app/features/events.php:674 app/features/events.php:694
744
- #: app/features/events.php:732
745
  msgid "To e.g. 8:45"
746
  msgstr "bis zum Beispiel 08:45 Uhr"
747
 
748
- #: app/features/events.php:676 app/features/events.php:696
749
- #: app/features/events.php:734 app/features/events.php:890
750
- #: app/features/events.php:993
751
  msgid "Description"
752
  msgstr "Beschreibung"
753
 
754
- #: app/features/events.php:680 app/features/events.php:700
755
- #: app/features/events.php:738 app/features/fes/form.php:603
756
- #: app/features/mec.php:263 app/features/mec/settings.php:77
757
- #: app/features/mec/settings.php:921 app/features/speakers.php:57
758
- #: app/libraries/main.php:4204 app/modules/speakers/details.php:18
759
  msgid "Speakers"
760
  msgstr ""
761
 
762
- #: app/features/events.php:714 app/features/events.php:718
763
  msgid "Day :dd:"
764
  msgstr ""
765
 
766
- #: app/features/events.php:765 app/features/fes/form.php:448
767
- #: app/features/mec/settings.php:867
768
  msgid "Event Links"
769
  msgstr "Veranstaltungslinks"
770
 
771
- #: app/features/events.php:767 app/features/fes/form.php:450
772
- #: app/libraries/main.php:4227
773
  msgid "Event Link"
774
  msgstr "Veranstaltungslink"
775
 
776
- #: app/features/events.php:768 app/features/events.php:773
777
  #: app/features/fes/form.php:451 app/features/fes/form.php:456
778
  msgid "eg. http://yoursite.com/your-event"
779
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
780
 
781
- #: app/features/events.php:769 app/features/fes/form.php:452
782
  msgid ""
783
  "If you fill it, it will be replaced instead of default event page link. "
784
  "Insert full link including http(s)://"
@@ -787,27 +801,27 @@ msgstr ""
787
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
788
  "einschließlich http(s)://"
789
 
790
- #: app/features/events.php:772 app/features/fes/form.php:455
791
- #: app/libraries/main.php:4228 app/skins/single/default.php:105
792
  #: app/skins/single/default.php:312 app/skins/single/m1.php:190
793
  #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
794
  #: app/widgets/single.php:107
795
  msgid "More Info"
796
  msgstr "Mehr Informationen"
797
 
798
- #: app/features/events.php:774 app/features/fes/form.php:457
799
  msgid "More Information"
800
  msgstr "z.B. Noch mehr Informationen "
801
 
802
- #: app/features/events.php:776 app/features/fes/form.php:459
803
  msgid "Current Window"
804
  msgstr "Aktuelles Fenster"
805
 
806
- #: app/features/events.php:777 app/features/fes/form.php:460
807
  msgid "New Window"
808
  msgstr "Neues Fenster"
809
 
810
- #: app/features/events.php:779 app/features/fes/form.php:462
811
  msgid ""
812
  "If you fill it, it will be shown in event details page as an optional link. "
813
  "Insert full link including http(s)://"
@@ -818,94 +832,81 @@ msgstr ""
818
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
819
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
820
 
821
- #: app/features/events.php:810
822
  msgid "Total booking limits"
823
  msgstr "Gesamt Verfügbare Plätze"
824
 
825
- #: app/features/events.php:815 app/features/events.php:907
826
- #: app/features/events.php:1010 app/modules/booking/default.php:81
827
- #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
 
828
  msgid "Unlimited"
829
  msgstr "Unlimitiert"
830
 
831
- #: app/features/events.php:817
832
  msgid "100"
833
  msgstr "z.B. 100"
834
 
835
- #: app/features/events.php:835 app/libraries/book.php:60
836
- #: app/libraries/main.php:4232 app/modules/booking/steps/tickets.php:40
837
  msgid "Tickets"
838
  msgstr "Tickets"
839
 
840
- #: app/features/events.php:838
841
  msgid ""
842
  "You're translating an event so MEC will use the original event for tickets "
843
  "and booking. You can only translate the ticket name and description. Please "
844
  "define exact tickets that you defined in the original event here."
845
  msgstr ""
846
 
847
- #: app/features/events.php:849 app/features/events.php:952
848
  msgid "Ticket Name"
849
  msgstr "Ticket Name"
850
 
851
- #: app/features/events.php:853 app/features/events.php:956
852
- #: app/features/events.php:1966 app/features/events.php:2010
853
  #: app/features/ix.php:2719 app/features/ix.php:2760
854
  msgid "Start Time"
855
  msgstr "Uhrzeit des Beginns"
856
 
857
- #: app/features/events.php:871 app/features/events.php:974
858
- #: app/features/events.php:1966 app/features/events.php:2010
859
  #: app/features/ix.php:2719 app/features/ix.php:2760
860
  msgid "End Time"
861
  msgstr "Uhrzeit Ende"
862
 
863
- #: app/features/events.php:894 app/features/events.php:923
864
- #: app/features/events.php:937 app/features/events.php:997
865
- #: app/features/events.php:1027 app/features/events.php:1159
866
- #: app/features/events.php:1181 app/features/mec/settings.php:1193
867
- #: app/features/mec/settings.php:1213
868
  msgid "Price"
869
  msgstr "Preis"
870
 
871
- #: app/features/events.php:895 app/features/events.php:998
872
  msgid "Insert 0 for free ticket. Only numbers please."
873
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
874
 
875
- #: app/features/events.php:898 app/features/events.php:1001
876
  msgid "Price Label"
877
  msgstr "Preisschild"
878
 
879
- #: app/features/events.php:899 app/features/events.php:1002
880
  msgid "For showing on website. e.g. $15"
881
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
882
 
883
- #: app/features/events.php:903 app/features/events.php:1006
884
  msgid "Available Tickets"
885
  msgstr "Verfügbare Tickets: %s "
886
 
887
- #: app/features/events.php:913 app/features/events.php:1016
888
  #, fuzzy
889
  #| msgid "Price Label"
890
  msgid "Price per Date"
891
  msgstr "Preisschild"
892
 
893
- #: app/features/events.php:921 app/features/events.php:935
894
- #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
895
- #: app/features/ix/import_g_calendar.php:51
896
- #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
897
- msgid "Start"
898
- msgstr "Start"
899
-
900
- #: app/features/events.php:922 app/features/events.php:936
901
- #: app/features/events.php:1026
902
- #, fuzzy
903
- #| msgid "Enabled"
904
- msgid "End"
905
- msgstr "Aktiviert"
906
-
907
- #: app/features/events.php:924 app/features/events.php:938
908
- #: app/features/events.php:1028 app/features/labels.php:60
909
  #: app/features/mec/meta_boxes/display_options.php:660
910
  #: app/features/mec/meta_boxes/search_form.php:52
911
  #: app/features/mec/meta_boxes/search_form.php:99
@@ -919,27 +920,27 @@ msgstr "Aktiviert"
919
  msgid "Label"
920
  msgstr "Label"
921
 
922
- #: app/features/events.php:1058
923
  msgid "Fees"
924
  msgstr "Gebühren"
925
 
926
- #: app/features/events.php:1063 app/features/events.php:1144
927
- #: app/features/events.php:1219
928
  msgid "Inherit from global options"
929
  msgstr "Aus den globalen Einstellungen übernehmen"
930
 
931
- #: app/features/events.php:1074 app/features/events.php:1099
932
- #: app/features/mec/settings.php:1124 app/features/mec/settings.php:1147
933
  msgid "Fee Title"
934
  msgstr "Gebühren Name"
935
 
936
- #: app/features/events.php:1078 app/features/events.php:1103
937
- #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
938
  msgid "Amount"
939
  msgstr "Betrag"
940
 
941
- #: app/features/events.php:1079 app/features/events.php:1104
942
- #: app/features/mec/settings.php:1129 app/features/mec/settings.php:1152
943
  msgid ""
944
  "Fee amount, considered as fixed amount if you set the type to amount "
945
  "otherwise considered as percentage"
@@ -947,72 +948,72 @@ msgstr ""
947
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
948
  "sonst als Prozentsatz"
949
 
950
- #: app/features/events.php:1083 app/features/events.php:1108
951
- #: app/features/mec/settings.php:1133 app/features/mec/settings.php:1156
952
  msgid "Percent"
953
  msgstr "Prozent"
954
 
955
- #: app/features/events.php:1084 app/features/events.php:1109
956
- #: app/features/mec/settings.php:1134 app/features/mec/settings.php:1157
957
  msgid "Amount (Per Ticket)"
958
  msgstr "Betrag (pro Ticket)"
959
 
960
- #: app/features/events.php:1085 app/features/events.php:1110
961
- #: app/features/mec/settings.php:1135 app/features/mec/settings.php:1158
962
  msgid "Amount (Per Booking)"
963
  msgstr "Betrag (pro Buchung)"
964
 
965
- #: app/features/events.php:1139 app/features/mec/settings.php:945
966
  msgid "Ticket Variations / Options"
967
  msgstr ""
968
 
969
- #: app/features/events.php:1160 app/features/events.php:1182
970
- #: app/features/mec/settings.php:1194 app/features/mec/settings.php:1214
971
  #, fuzzy
972
  #| msgid "Option"
973
  msgid "Option Price"
974
  msgstr "Option"
975
 
976
- #: app/features/events.php:1163 app/features/events.php:1185
977
- #: app/features/mec/settings.php:1197 app/features/mec/settings.php:1217
978
  #, fuzzy
979
  #| msgid "Amount (Per Ticket)"
980
  msgid "Maximum Per Ticket"
981
  msgstr "Betrag (pro Ticket)"
982
 
983
- #: app/features/events.php:1164 app/features/events.php:1186
984
- #: app/features/mec/settings.php:1198 app/features/mec/settings.php:1218
985
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
986
  msgstr ""
987
 
988
- #: app/features/events.php:1248 app/features/mec/regform.php:136
989
- #: app/libraries/main.php:2078
990
  msgid "Text"
991
  msgstr "Text"
992
 
993
- #: app/features/events.php:1250 app/features/mec/regform.php:138
994
  #: app/features/organizers.php:102 app/features/organizers.php:146
995
  #: app/features/speakers.php:111 app/features/speakers.php:175
996
- #: app/features/speakers.php:244 app/libraries/main.php:2136
997
  msgid "Tel"
998
  msgstr "Tel"
999
 
1000
- #: app/features/events.php:1251 app/features/mec/regform.php:139
1001
- #: app/libraries/main.php:2165
1002
  msgid "Textarea"
1003
  msgstr "Textbereich"
1004
 
1005
- #: app/features/events.php:1252 app/features/mec/regform.php:140
1006
- #: app/libraries/main.php:2218
1007
  msgid "Checkboxes"
1008
  msgstr "Checkboxes"
1009
 
1010
- #: app/features/events.php:1253 app/features/mec/regform.php:141
1011
- #: app/libraries/main.php:2262
1012
  msgid "Radio Buttons"
1013
  msgstr "Radio Buttons"
1014
 
1015
- #: app/features/events.php:1254 app/features/mec/meta_boxes/search_form.php:34
1016
  #: app/features/mec/meta_boxes/search_form.php:41
1017
  #: app/features/mec/meta_boxes/search_form.php:48
1018
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1058,43 +1059,43 @@ msgstr "Radio Buttons"
1058
  #: app/features/mec/meta_boxes/search_form.php:443
1059
  #: app/features/mec/meta_boxes/search_form.php:450
1060
  #: app/features/mec/meta_boxes/search_form.php:457
1061
- #: app/features/mec/regform.php:142 app/libraries/main.php:2306
1062
  msgid "Dropdown"
1063
  msgstr "Dropdown"
1064
 
1065
- #: app/features/events.php:1255 app/features/mec/regform.php:143
1066
- #: app/libraries/main.php:2353
1067
  msgid "Agreement"
1068
  msgstr "Zustimmung"
1069
 
1070
- #: app/features/events.php:1256 app/features/mec/regform.php:144
1071
- #: app/libraries/main.php:2194
1072
  msgid "Paragraph"
1073
  msgstr "Absatz"
1074
 
1075
- #: app/features/events.php:1730 app/features/events.php:1745
1076
- #: app/features/events.php:1759
1077
  #, php-format
1078
  msgid "Show all %s"
1079
  msgstr "Zeige alle %s"
1080
 
1081
- #: app/features/events.php:1730
1082
  msgid "labels"
1083
  msgstr "Labels + Eventstatus"
1084
 
1085
- #: app/features/events.php:1745
1086
  msgid "locations"
1087
  msgstr "Orte"
1088
 
1089
- #: app/features/events.php:1759
1090
  msgid "organizers"
1091
  msgstr "Veranstalter"
1092
 
1093
- #: app/features/events.php:1785 app/features/events.php:1966
1094
- #: app/features/events.php:2010 app/features/ix.php:2719
1095
  #: app/features/ix.php:2760 app/features/locations.php:58
1096
  #: app/features/locations.php:229 app/features/locations.php:281
1097
- #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1098
  #: app/features/mec/meta_boxes/display_options.php:661
1099
  #: app/features/mec/meta_boxes/search_form.php:38
1100
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1104,18 +1105,17 @@ msgstr "Veranstalter"
1104
  #: app/features/mec/meta_boxes/search_form.php:299
1105
  #: app/features/mec/meta_boxes/search_form.php:339
1106
  #: app/features/mec/meta_boxes/search_form.php:386
1107
- #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1616
1108
- #: app/libraries/main.php:4201 app/libraries/skins.php:737
1109
  #: app/skins/single/default.php:141 app/skins/single/default.php:348
1110
  #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1111
  #: app/skins/single/modern.php:83
1112
  msgid "Location"
1113
  msgstr "Ort"
1114
 
1115
- #: app/features/events.php:1786 app/features/events.php:1966
1116
- #: app/features/events.php:2010 app/features/ix.php:2719
1117
- #: app/features/ix.php:2760 app/features/mec/dashboard.php:113
1118
- #: app/features/mec/meta_boxes/display_options.php:662
1119
  #: app/features/mec/meta_boxes/search_form.php:45
1120
  #: app/features/mec/meta_boxes/search_form.php:92
1121
  #: app/features/mec/meta_boxes/search_form.php:139
@@ -1127,63 +1127,63 @@ msgstr "Ort"
1127
  #: app/features/mec/meta_boxes/search_form.php:440
1128
  #: app/features/organizers.php:58 app/features/organizers.php:199
1129
  #: app/features/organizers.php:255 app/features/organizers.php:257
1130
- #: app/libraries/main.php:4203 app/libraries/skins.php:763
1131
  #: app/skins/single/default.php:181 app/skins/single/default.php:388
1132
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1133
  #: app/skins/single/modern.php:21
1134
  msgid "Organizer"
1135
  msgstr "Veranstalter"
1136
 
1137
- #: app/features/events.php:1790
1138
  msgid "Repeat"
1139
  msgstr "Wiederholen"
1140
 
1141
- #: app/features/events.php:1791
1142
  msgid "Author"
1143
  msgstr "Autor"
1144
 
1145
- #: app/features/events.php:1901 app/features/events.php:1902
1146
  msgid "iCal Export"
1147
  msgstr "ical Export"
1148
 
1149
- #: app/features/events.php:1904 app/features/events.php:1905
1150
  msgid "CSV Export"
1151
  msgstr "CSV Export"
1152
 
1153
- #: app/features/events.php:1907 app/features/events.php:1908
1154
  msgid "MS Excel Export"
1155
  msgstr "MS Excel Export"
1156
 
1157
- #: app/features/events.php:1910 app/features/events.php:1911
1158
  msgid "XML Export"
1159
  msgstr "XML Export"
1160
 
1161
- #: app/features/events.php:1913 app/features/events.php:1914
1162
  msgid "JSON Export"
1163
  msgstr "JSON Export"
1164
 
1165
- #: app/features/events.php:1916 app/features/events.php:1917
1166
  msgid "Duplicate"
1167
  msgstr "Kopie"
1168
 
1169
- #: app/features/events.php:1966 app/features/events.php:2010
1170
  #: app/features/ix.php:2719 app/features/ix.php:2760
1171
  #: app/features/labels.php:176 app/features/locations.php:228
1172
  #: app/features/organizers.php:198 app/features/speakers.php:241
1173
  msgid "ID"
1174
  msgstr "ID"
1175
 
1176
- #: app/features/events.php:1966 app/features/events.php:2010
1177
  #: app/features/ix.php:2719 app/features/ix.php:2760
1178
  msgid "Link"
1179
  msgstr "Link"
1180
 
1181
- #: app/features/events.php:1966 app/features/events.php:2010
1182
  #, php-format
1183
  msgid "%s Tel"
1184
  msgstr "%s Tel"
1185
 
1186
- #: app/features/events.php:1966 app/features/events.php:2010
1187
  #, php-format
1188
  msgid "%s Email"
1189
  msgstr "%s Email"
@@ -1263,7 +1263,7 @@ msgstr "z.B. IhrName@ihrewebseite.de"
1263
  msgid "eg. John Smith"
1264
  msgstr "z.B. Max Mustermann"
1265
 
1266
- #: app/features/fes/form.php:488 app/features/mec/settings.php:879
1267
  msgid "Featured Image"
1268
  msgstr "Ausgewähltes Bild"
1269
 
@@ -1272,14 +1272,14 @@ msgid "Remove Image"
1272
  msgstr "Bild entfernen"
1273
 
1274
  #: app/features/fes/form.php:535 app/features/labels.php:61
1275
- #: app/features/labels.php:220 app/features/mec.php:256
1276
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4198
1277
  #: app/skins/single/default.php:120 app/skins/single/default.php:327
1278
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1279
  msgid "Labels"
1280
  msgstr "Labels"
1281
 
1282
- #: app/features/fes/form.php:580 app/features/mec.php:254
1283
  #: app/features/mec/meta_boxes/filter.php:138
1284
  msgid "Tags"
1285
  msgstr "Schlagworte"
@@ -1317,7 +1317,7 @@ msgstr "MEC - Import / Export"
1317
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1318
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1319
  #: app/features/mec/notifications.php:76 app/features/mec/regform.php:75
1320
- #: app/features/mec/settings.php:254 app/features/mec/styles.php:77
1321
  #: app/features/mec/styling.php:104 app/features/mec/support.php:73
1322
  msgid "Import / Export"
1323
  msgstr "Import / Export"
@@ -1350,7 +1350,7 @@ msgstr "Drittanbieter-Plugin ist ungültig!"
1350
  msgid "Both of API key and Calendar ID are required!"
1351
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1352
 
1353
- #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3182
1354
  msgid "Please select some events to import!"
1355
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1356
 
@@ -1401,13 +1401,13 @@ msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1401
  msgid "%s events failed to add for following reasons: %s"
1402
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1403
 
1404
- #: app/features/ix.php:3145
1405
  #, fuzzy
1406
  #| msgid "Please insert your facebook page's link."
1407
  msgid "Please insert your Facebook page's link."
1408
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1409
 
1410
- #: app/features/ix.php:3153
1411
  #, fuzzy
1412
  #| msgid ""
1413
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1419,11 +1419,11 @@ msgstr ""
1419
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1420
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1421
 
1422
- #: app/features/ix.php:3185
1423
  msgid "Please insert your facebook page's link."
1424
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1425
 
1426
- #: app/features/ix.php:3190
1427
  msgid ""
1428
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1429
  "valid facebook page link."
@@ -1466,7 +1466,7 @@ msgstr "Export"
1466
 
1467
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1468
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1469
- #: app/features/ix/import_f_calendar.php:75
1470
  #: app/features/ix/import_g_calendar.php:16
1471
  #: app/features/ix/import_g_calendar.php:103
1472
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
@@ -1494,7 +1494,7 @@ msgstr ""
1494
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1495
  "exportieren."
1496
 
1497
- #: app/features/ix/export.php:25 app/features/mec/settings.php:680
1498
  msgid "iCal"
1499
  msgstr "iCal"
1500
 
@@ -1574,21 +1574,21 @@ msgid "Authenticate"
1574
  msgstr "Authentifizierung"
1575
 
1576
  #: app/features/ix/export_g_calendar.php:57
1577
- #: app/features/ix/import_f_calendar.php:50
1578
  #: app/features/ix/import_g_calendar.php:64
1579
  #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1580
  msgid "Select All"
1581
  msgstr "Alles Auswählen"
1582
 
1583
  #: app/features/ix/export_g_calendar.php:58
1584
- #: app/features/ix/import_f_calendar.php:51
1585
  #: app/features/ix/import_g_calendar.php:65
1586
  #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1587
  msgid "Deselect All"
1588
  msgstr "Alle abwählen"
1589
 
1590
  #: app/features/ix/export_g_calendar.php:59
1591
- #: app/features/ix/import_f_calendar.php:52
1592
  #: app/features/ix/import_g_calendar.php:66
1593
  #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1594
  msgid "Toggle"
@@ -1604,7 +1604,7 @@ msgstr "Umschalten"
1604
  msgid "Add to Google Calendar"
1605
  msgstr "Zum Google Kalender hinzufügen"
1606
 
1607
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1392
1608
  msgid "Checking ..."
1609
  msgstr "Überprüfung"
1610
 
@@ -1648,10 +1648,10 @@ msgstr ""
1648
  msgid "ICS Feed"
1649
  msgstr ""
1650
 
1651
- #: app/features/ix/import.php:46 app/features/mec/settings.php:561
1652
- #: app/features/mec/settings.php:711 app/features/mec/settings.php:729
1653
- #: app/features/mec/settings.php:1001 app/features/mec/settings.php:1091
1654
- #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1173
1655
  #, php-format
1656
  msgid "%s is required to use this feature."
1657
  msgstr ""
@@ -1663,11 +1663,10 @@ msgstr ""
1663
  #: app/features/mec/meta_boxes/display_options.php:578
1664
  #: app/features/mec/meta_boxes/display_options.php:628
1665
  #: app/features/mec/meta_boxes/display_options.php:766
1666
- #: app/features/mec/settings.php:561 app/features/mec/settings.php:711
1667
- #: app/features/mec/settings.php:729 app/features/mec/settings.php:1001
1668
- #: app/features/mec/settings.php:1091 app/features/mec/settings.php:1108
1669
- #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1298
1670
- #: app/libraries/skins.php:249
1671
  msgid "Pro version of Modern Events Calendar"
1672
  msgstr ""
1673
 
@@ -1685,15 +1684,26 @@ msgstr "Vom Facebook Kalender Importieren"
1685
  msgid "Import all of your Facebook events into MEC."
1686
  msgstr "Importiere alle Deine Facebook Events zum MEC"
1687
 
 
 
 
 
 
1688
  #: app/features/ix/import_f_calendar.php:29
 
 
 
 
 
 
1689
  msgid "Facebook Page Link"
1690
  msgstr "Facebook Seiten Link"
1691
 
1692
- #: app/features/ix/import_f_calendar.php:47
1693
  msgid "Facebook Events"
1694
  msgstr "Facebook events"
1695
 
1696
- #: app/features/ix/import_f_calendar.php:48
1697
  #, php-format
1698
  msgid ""
1699
  "We found %s events for %s page. Please select your desired events to import."
@@ -1701,24 +1711,24 @@ msgstr ""
1701
  "Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
1702
  "gewünschten Events zum Import aus."
1703
 
1704
- #: app/features/ix/import_f_calendar.php:59 app/features/ix/thirdparty.php:58
1705
  #, php-format
1706
  msgid "Event Title: %s"
1707
  msgstr "Event Title: %s"
1708
 
1709
- #: app/features/ix/import_f_calendar.php:66
1710
  #: app/features/ix/import_g_calendar.php:87
1711
  #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1712
  msgid "Import Options"
1713
  msgstr "Import Optionen"
1714
 
1715
- #: app/features/ix/import_f_calendar.php:70
1716
  #: app/features/ix/import_g_calendar.php:97
1717
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1718
  msgid "Import Locations"
1719
  msgstr "Orte importieren"
1720
 
1721
- #: app/features/ix/import_f_calendar.php:85
1722
  #, php-format
1723
  msgid "%s events successfully imported to your website from Facebook Calendar."
1724
  msgstr ""
@@ -1988,7 +1998,7 @@ msgstr "Wähle Label Farbe"
1988
  #: app/features/mec/meta_boxes/display_options.php:684
1989
  #: app/features/mec/meta_boxes/display_options.php:723
1990
  #: app/features/mec/meta_boxes/display_options.php:791
1991
- #: app/features/mec/meta_boxes/display_options.php:851
1992
  msgid "Style"
1993
  msgstr "Style"
1994
 
@@ -1997,14 +2007,14 @@ msgid "Normal"
1997
  msgstr ""
1998
 
1999
  #: app/features/labels.php:116 app/features/labels.php:141
2000
- #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
2001
- #: app/skins/carousel/render.php:29 app/skins/countdown/tpl.php:24
2002
  #: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:22
2003
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
2004
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
2005
  #: app/skins/monthly_view/calendar_clean.php:81
2006
- #: app/skins/monthly_view/calendar_novel.php:76 app/skins/slider/render.php:48
2007
- #: app/skins/timetable/render.php:32 app/skins/timetable/render.php:95
2008
  #: app/skins/weekly_view/render.php:30 app/skins/yearly_view/render.php:47
2009
  #, fuzzy
2010
  #| msgid "Featured Image"
@@ -2012,15 +2022,15 @@ msgid "Featured"
2012
  msgstr "Ausgewähltes Bild"
2013
 
2014
  #: app/features/labels.php:117 app/features/labels.php:142
2015
- #: app/libraries/main.php:4391 app/skins/agenda/render.php:41
2016
- #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:33
2017
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
2018
  #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
2019
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:32
2020
  #: app/skins/monthly_view/calendar.php:84
2021
  #: app/skins/monthly_view/calendar_clean.php:85
2022
- #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:52
2023
- #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
2024
  #: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:51
2025
  msgid "Canceled"
2026
  msgstr "Abgesagt"
@@ -2045,8 +2055,9 @@ msgstr "Slug"
2045
  msgid "Event %s"
2046
  msgstr "Event %s"
2047
 
2048
- #: app/features/locations.php:59 app/features/mec.php:257
2049
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4200
 
2050
  msgid "Locations"
2051
  msgstr "Orte"
2052
 
@@ -2120,7 +2131,7 @@ msgstr ""
2120
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2121
  "Westfalenhalle"
2122
 
2123
- #: app/features/locations.php:298 app/features/mec/settings.php:909
2124
  #: app/widgets/single.php:115
2125
  msgid "Event Location"
2126
  msgstr "Veranstaltungsort"
@@ -2153,116 +2164,142 @@ msgstr "Bild wählen"
2153
  msgid "Don't show map in single event page"
2154
  msgstr "Karte in Einzelansicht nicht anzeigen"
2155
 
2156
- #: app/features/mec.php:146
 
 
 
 
 
 
 
 
 
 
2157
  msgid ""
2158
  "Your options is not in JSON format. Please insert correct options in this "
2159
  "field and try again."
2160
  msgstr ""
2161
 
2162
- #: app/features/mec.php:151
2163
  #, fuzzy
2164
  #| msgid "Your booking cannot verify!"
2165
  msgid "Your options field can not be empty!"
2166
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
2167
 
2168
- #: app/features/mec.php:155
2169
  #, fuzzy
2170
  #| msgid "Your booking successfully verified."
2171
  msgid "Your options imported successfuly."
2172
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
2173
 
2174
- #: app/features/mec.php:258 app/features/mec/meta_boxes/filter.php:104
2175
- #: app/features/organizers.php:59 app/libraries/main.php:4202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2176
  msgid "Organizers"
2177
  msgstr "Veranstalter"
2178
 
2179
- #: app/features/mec.php:266 app/features/mec.php:280
2180
- #: app/features/mec/dashboard.php:99
2181
  msgid "Shortcodes"
2182
  msgstr "Shortcodes"
2183
 
2184
- #: app/features/mec.php:267
2185
  msgid "MEC - Settings"
2186
  msgstr "MEC - Einstellungen"
2187
 
2188
- #: app/features/mec.php:282
2189
  msgid "Add Shortcode"
2190
  msgstr "Shortcode hinzufügen"
2191
 
2192
- #: app/features/mec.php:283
2193
  msgid "Add New Shortcode"
2194
  msgstr "Neuen Shortcode hinzufügen"
2195
 
2196
- #: app/features/mec.php:284
2197
  msgid "No shortcodes found!"
2198
  msgstr "Keine Shortcodes gefunden!"
2199
 
2200
- #: app/features/mec.php:285
2201
  msgid "All Shortcodes"
2202
  msgstr "Alle Shortcodes"
2203
 
2204
- #: app/features/mec.php:286
2205
  msgid "Edit shortcodes"
2206
  msgstr "Shortcode ändern"
2207
 
2208
- #: app/features/mec.php:287
2209
  msgid "No shortcodes found in Trash!"
2210
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2211
 
2212
- #: app/features/mec.php:334
2213
  msgid "Display Options"
2214
  msgstr "Darstellungsoptionen"
2215
 
2216
- #: app/features/mec.php:335
2217
  msgid "Filter Options"
2218
  msgstr "Filteroptionen"
2219
 
2220
- #: app/features/mec.php:337
2221
  msgid "Search Form"
2222
  msgstr "Suche Formular"
2223
 
2224
- #: app/features/mec.php:641
2225
  msgid "Display content's images as Popup"
2226
  msgstr ""
2227
 
2228
- #: app/features/mec.php:654
2229
  msgid "Single Event Display Method"
2230
  msgstr "Single Event Anzeigemethode"
2231
 
2232
- #: app/features/mec.php:659
2233
  msgid "Separate Window"
2234
  msgstr "Separates Fenster"
2235
 
2236
- #: app/features/mec.php:660
2237
  msgid "Modal 1"
2238
  msgstr "Modal 1"
2239
 
2240
- #: app/features/mec/dashboard.php:58
2241
  #, php-format
2242
  msgid "Welcome %s"
2243
  msgstr "Willkommen %s"
2244
 
2245
- #: app/features/mec/dashboard.php:61
2246
  #, php-format
2247
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2248
  msgstr ""
2249
 
2250
- #: app/features/mec/dashboard.php:61
2251
  #, fuzzy
2252
  #| msgid "Modern Events Calendar"
2253
  msgid "Modern Events Calendar (Lite)"
2254
  msgstr "Moderner Event Kalender "
2255
 
2256
- #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2257
  msgctxt "plugin rate"
2258
  msgid "Rate the plugin ★★★★★"
2259
  msgstr ""
2260
 
2261
- #: app/features/mec/dashboard.php:73
2262
  msgid "Version"
2263
  msgstr "Version"
2264
 
2265
- #: app/features/mec/dashboard.php:82
2266
  #, php-format
2267
  msgid ""
2268
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2270,112 +2307,78 @@ msgid ""
2270
  "Spots, etc you should %s to the Pro version."
2271
  msgstr ""
2272
 
2273
- #: app/features/mec/dashboard.php:82
2274
  msgid "lite"
2275
  msgstr ""
2276
 
2277
- #: app/features/mec/dashboard.php:82
2278
  msgid "upgrade"
2279
  msgstr ""
2280
 
2281
- #: app/features/mec/dashboard.php:121 app/features/mec/support.php:100
2282
- msgid "Documentation"
2283
- msgstr "Dokumentation"
2284
-
2285
- #: app/features/mec/dashboard.php:124 app/features/mec/support.php:104
2286
- msgid ""
2287
- "Our documentation is simple and functional with full details and cover all "
2288
- "essential aspects from beginning to the most advanced parts."
2289
- msgstr ""
2290
- "Unsere Dokumentation ist einfach und funktionell mit vollen Details und "
2291
- "deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
2292
- "ab."
2293
-
2294
- #: app/features/mec/dashboard.php:126 app/features/mec/support.php:107
2295
- msgid "DOCUMENTATION"
2296
- msgstr "Dokumentation"
2297
-
2298
- #: app/features/mec/dashboard.php:135 app/features/mec/support.php:116
2299
- msgid "Support Forum"
2300
- msgstr "Support Forum"
2301
-
2302
- #: app/features/mec/dashboard.php:139 app/features/mec/support.php:120
2303
- msgid ""
2304
- "Webnus is elite and trusted author with high percentage of satisfied user. "
2305
- "If you want to use this service you need to upgrade your plugin to Pro "
2306
- "version. Click on the following button."
2307
- msgstr ""
2308
 
2309
- #: app/features/mec/dashboard.php:141 app/features/mec/support.php:122
2310
  msgid ""
2311
- "Webnus is elite and trusted author with high percentage of satisfied user. "
2312
- "If you have any issues please don't hesitate to contact us, we will reply as "
2313
- "soon as possible."
2314
- msgstr ""
2315
- "Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl von "
2316
- "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
2317
- "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
2318
-
2319
- #: app/features/mec/dashboard.php:145 app/features/mec/support.php:126
2320
- msgid "GO PREMIUM"
2321
  msgstr ""
2322
 
2323
- #: app/features/mec/dashboard.php:147 app/features/mec/support.php:128
2324
- msgid "OPEN A TICKET"
2325
- msgstr "Ein Ticket eröffnen"
2326
-
2327
- #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:408
2328
  msgid "Upcoming Events"
2329
  msgstr "Bevorstehende Events"
2330
 
2331
- #: app/features/mec/dashboard.php:184
2332
  msgid "Popular Gateways"
2333
  msgstr "Beliebte Zahlungsgateways"
2334
 
2335
- #: app/features/mec/dashboard.php:235
2336
  msgid "Total Bookings"
2337
  msgstr "Gesamte Buchungen"
2338
 
2339
- #: app/features/mec/dashboard.php:262
2340
  msgid "This Month"
2341
  msgstr "Diesen Monat"
2342
 
2343
- #: app/features/mec/dashboard.php:263
2344
  msgid "Last Month"
2345
  msgstr "Letzten Monat"
2346
 
2347
- #: app/features/mec/dashboard.php:264
2348
  msgid "This Year"
2349
  msgstr "Diese Jahr"
2350
 
2351
- #: app/features/mec/dashboard.php:265
2352
  msgid "Last Year"
2353
  msgstr "Letztes Jahr"
2354
 
2355
- #: app/features/mec/dashboard.php:277
2356
  msgid "Bar"
2357
  msgstr "Bar"
2358
 
2359
- #: app/features/mec/dashboard.php:278
2360
  msgid "Line"
2361
  msgstr "Linie"
2362
 
2363
- #: app/features/mec/dashboard.php:280
2364
  msgid "Filter"
2365
  msgstr "Filter"
2366
 
2367
- #: app/features/mec/dashboard.php:296
2368
  #, php-format
2369
  msgid "Total Sells (%s)"
2370
  msgstr "Alle Verkäufe (%s)"
2371
 
2372
- #: app/features/mec/dashboard.php:317
2373
  msgid "Change Log"
2374
  msgstr "Änderungsprotokoll"
2375
 
2376
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2377
  #: app/features/mec/messages.php:56 app/features/mec/notifications.php:55
2378
- #: app/features/mec/regform.php:54 app/features/mec/settings.php:233
2379
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:83
2380
  #: app/features/mec/support.php:52
2381
  msgid "Styling Options"
@@ -2383,7 +2386,7 @@ msgstr "Styling-Optionen"
2383
 
2384
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2385
  #: app/features/mec/messages.php:63 app/features/mec/notifications.php:62
2386
- #: app/features/mec/regform.php:61 app/features/mec/settings.php:240
2387
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:90
2388
  #: app/features/mec/support.php:59
2389
  msgid "Custom CSS"
@@ -2392,19 +2395,11 @@ msgstr "Custom CSS"
2392
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2393
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2394
  #: app/features/mec/notifications.php:69 app/features/mec/regform.php:68
2395
- #: app/features/mec/settings.php:247 app/features/mec/styles.php:70
2396
  #: app/features/mec/styling.php:97 app/features/mec/support.php:66
2397
  msgid "Messages"
2398
  msgstr "Nachrichten"
2399
 
2400
- #: app/features/mec/gateways.php:84 app/features/mec/ie.php:80
2401
- #: app/features/mec/messages.php:84 app/features/mec/notifications.php:83
2402
- #: app/features/mec/regform.php:82 app/features/mec/settings.php:261
2403
- #: app/features/mec/styles.php:84 app/features/mec/styling.php:111
2404
- #: app/features/mec/support.php:80 app/features/mec/support.php:93
2405
- msgid "Support"
2406
- msgstr "Support"
2407
-
2408
  #: app/features/mec/gateways.php:111 app/features/mec/gateways.php:159
2409
  #: app/features/mec/gateways.php:169 app/features/mec/messages.php:11
2410
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:161
@@ -2412,9 +2407,9 @@ msgstr "Support"
2412
  #: app/features/mec/notifications.php:436
2413
  #: app/features/mec/notifications.php:445 app/features/mec/regform.php:150
2414
  #: app/features/mec/regform.php:227 app/features/mec/regform.php:236
2415
- #: app/features/mec/settings.php:27 app/features/mec/settings.php:1336
2416
- #: app/features/mec/settings.php:1346 app/features/mec/settings.php:1409
2417
- #: app/features/mec/settings.php:1423 app/features/mec/styles.php:103
2418
  #: app/features/mec/styles.php:147 app/features/mec/styles.php:156
2419
  #: app/features/mec/styling.php:309 app/features/mec/styling.php:379
2420
  #: app/features/mec/styling.php:388
@@ -2423,14 +2418,14 @@ msgstr "Änderungen sichern"
2423
 
2424
  #: app/features/mec/gateways.php:138 app/features/mec/messages.php:145
2425
  #: app/features/mec/notifications.php:421 app/features/mec/regform.php:211
2426
- #: app/features/mec/settings.php:1387 app/features/mec/styles.php:131
2427
  #: app/features/mec/styling.php:362
2428
  msgid "Saved"
2429
  msgstr "Gesichert"
2430
 
2431
  #: app/features/mec/gateways.php:139 app/features/mec/messages.php:146
2432
  #: app/features/mec/notifications.php:422 app/features/mec/regform.php:212
2433
- #: app/features/mec/settings.php:1388 app/features/mec/styles.php:132
2434
  #: app/features/mec/styling.php:363
2435
  msgid "Settings Saved!"
2436
  msgstr ""
@@ -2483,11 +2478,16 @@ msgstr "Skin"
2483
  #: app/features/mec/meta_boxes/display_options.php:129
2484
  #: app/features/mec/meta_boxes/display_options.php:431
2485
  #: app/features/mec/meta_boxes/display_options.php:686
 
 
 
2486
  msgid "Classic"
2487
  msgstr "Klassisch"
2488
 
2489
  #: app/features/mec/meta_boxes/display_options.php:35
2490
  #: app/features/mec/meta_boxes/display_options.php:131
 
 
2491
  msgid "Minimal"
2492
  msgstr "Minimal"
2493
 
@@ -2497,14 +2497,20 @@ msgstr "Minimal"
2497
  #: app/features/mec/meta_boxes/display_options.php:433
2498
  #: app/features/mec/meta_boxes/display_options.php:585
2499
  #: app/features/mec/meta_boxes/display_options.php:688
 
 
 
 
2500
  msgid "Modern"
2501
  msgstr "Modern"
2502
 
2503
  #: app/features/mec/meta_boxes/display_options.php:37
 
2504
  msgid "Standard"
2505
  msgstr "Standard"
2506
 
2507
  #: app/features/mec/meta_boxes/display_options.php:38
 
2508
  msgid "Accordion"
2509
  msgstr "Accordion"
2510
 
@@ -2514,8 +2520,8 @@ msgstr "Accordion"
2514
  #: app/features/mec/meta_boxes/display_options.php:478
2515
  #: app/features/mec/meta_boxes/display_options.php:511
2516
  #: app/features/mec/meta_boxes/display_options.php:635
2517
- #: app/features/mec/meta_boxes/display_options.php:801
2518
- #: app/features/mec/meta_boxes/display_options.php:863
2519
  msgid "Today"
2520
  msgstr "Heute"
2521
 
@@ -2525,8 +2531,8 @@ msgstr "Heute"
2525
  #: app/features/mec/meta_boxes/display_options.php:479
2526
  #: app/features/mec/meta_boxes/display_options.php:512
2527
  #: app/features/mec/meta_boxes/display_options.php:636
2528
- #: app/features/mec/meta_boxes/display_options.php:802
2529
- #: app/features/mec/meta_boxes/display_options.php:864
2530
  msgid "Tomorrow"
2531
  msgstr "Morgen"
2532
 
@@ -2540,8 +2546,8 @@ msgstr "Morgen"
2540
  #: app/features/mec/meta_boxes/display_options.php:548
2541
  #: app/features/mec/meta_boxes/display_options.php:594
2542
  #: app/features/mec/meta_boxes/display_options.php:637
2543
- #: app/features/mec/meta_boxes/display_options.php:803
2544
- #: app/features/mec/meta_boxes/display_options.php:865
2545
  msgid "Start of Current Month"
2546
  msgstr "Mit Beginn des laufenden Monats"
2547
 
@@ -2555,8 +2561,8 @@ msgstr "Mit Beginn des laufenden Monats"
2555
  #: app/features/mec/meta_boxes/display_options.php:549
2556
  #: app/features/mec/meta_boxes/display_options.php:595
2557
  #: app/features/mec/meta_boxes/display_options.php:638
2558
- #: app/features/mec/meta_boxes/display_options.php:804
2559
- #: app/features/mec/meta_boxes/display_options.php:866
2560
  msgid "Start of Next Month"
2561
  msgstr "Mit Beginn des kommenden Monats"
2562
 
@@ -2571,8 +2577,8 @@ msgstr "Mit Beginn des kommenden Monats"
2571
  #: app/features/mec/meta_boxes/display_options.php:550
2572
  #: app/features/mec/meta_boxes/display_options.php:596
2573
  #: app/features/mec/meta_boxes/display_options.php:639
2574
- #: app/features/mec/meta_boxes/display_options.php:805
2575
- #: app/features/mec/meta_boxes/display_options.php:867
2576
  msgid "On a certain date"
2577
  msgstr "An einem bestimmten Tag"
2578
 
@@ -2587,8 +2593,8 @@ msgstr "An einem bestimmten Tag"
2587
  #: app/features/mec/meta_boxes/display_options.php:553
2588
  #: app/features/mec/meta_boxes/display_options.php:599
2589
  #: app/features/mec/meta_boxes/display_options.php:642
2590
- #: app/features/mec/meta_boxes/display_options.php:808
2591
- #: app/features/mec/meta_boxes/display_options.php:870
2592
  #, php-format
2593
  msgid "eg. %s"
2594
  msgstr "z.B. %s"
@@ -2615,14 +2621,14 @@ msgstr "z.B. %s"
2615
  #: app/features/mec/meta_boxes/display_options.php:736
2616
  #: app/features/mec/meta_boxes/display_options.php:741
2617
  #: app/features/mec/meta_boxes/display_options.php:771
2618
- #: app/features/mec/meta_boxes/display_options.php:812
2619
- #: app/features/mec/meta_boxes/display_options.php:819
2620
- #: app/features/mec/meta_boxes/display_options.php:824
2621
- #: app/features/mec/meta_boxes/display_options.php:874
2622
- #: app/features/mec/meta_boxes/display_options.php:881
2623
- #: app/features/mec/meta_boxes/display_options.php:888
2624
- #: app/features/mec/meta_boxes/display_options.php:895
2625
- #: app/features/mec/meta_boxes/display_options.php:902
2626
  msgid "Date Formats"
2627
  msgstr "Datumsformate"
2628
 
@@ -2638,11 +2644,11 @@ msgstr "Standard Werte sind T, M und J"
2638
  #: app/features/mec/meta_boxes/display_options.php:71
2639
  #: app/features/mec/meta_boxes/display_options.php:173
2640
  #: app/features/mec/meta_boxes/display_options.php:185
2641
- #: app/features/mec/meta_boxes/display_options.php:878
2642
- #: app/features/mec/meta_boxes/display_options.php:885
2643
- #: app/features/mec/meta_boxes/display_options.php:892
2644
- #: app/features/mec/meta_boxes/display_options.php:899
2645
- #: app/features/mec/meta_boxes/display_options.php:906
2646
  msgid "Default values are d, F and l"
2647
  msgstr ""
2648
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
@@ -2660,8 +2666,8 @@ msgstr "Die Standardwerte sind d and F"
2660
  #: app/features/mec/meta_boxes/display_options.php:204
2661
  #: app/features/mec/meta_boxes/display_options.php:254
2662
  #: app/features/mec/meta_boxes/display_options.php:652
2663
- #: app/features/mec/meta_boxes/display_options.php:838
2664
- #: app/features/mec/meta_boxes/display_options.php:909
2665
  msgid "Limit"
2666
  msgstr "Limit"
2667
 
@@ -2673,8 +2679,8 @@ msgstr "Limit"
2673
  #: app/features/mec/meta_boxes/display_options.php:524
2674
  #: app/features/mec/meta_boxes/display_options.php:558
2675
  #: app/features/mec/meta_boxes/display_options.php:604
2676
- #: app/features/mec/meta_boxes/display_options.php:839
2677
- #: app/features/mec/meta_boxes/display_options.php:910
2678
  msgid "eg. 6"
2679
  msgstr "z.B. 6"
2680
 
@@ -2701,12 +2707,17 @@ msgstr "Zeige Monatsteilung"
2701
  #: app/features/mec/meta_boxes/display_options.php:432
2702
  #: app/features/mec/meta_boxes/display_options.php:586
2703
  #: app/features/mec/meta_boxes/display_options.php:687
 
 
 
2704
  msgid "Clean"
2705
  msgstr "Clean"
2706
 
2707
  #: app/features/mec/meta_boxes/display_options.php:133
2708
  #: app/features/mec/meta_boxes/display_options.php:309
2709
  #: app/features/mec/meta_boxes/display_options.php:435
 
 
2710
  msgid "Simple"
2711
  msgstr "Schlicht"
2712
 
@@ -2717,6 +2728,8 @@ msgstr "Farbenfroh"
2717
  #: app/features/mec/meta_boxes/display_options.php:135
2718
  #: app/features/mec/meta_boxes/display_options.php:308
2719
  #: app/features/mec/meta_boxes/display_options.php:434
 
 
2720
  msgid "Novel"
2721
  msgstr ""
2722
 
@@ -2730,7 +2743,7 @@ msgid "Default values are d and M"
2730
  msgstr "Standardwerte sind T und M"
2731
 
2732
  #: app/features/mec/meta_boxes/display_options.php:193
2733
- #: app/features/mec/meta_boxes/display_options.php:829
2734
  msgid "Count in row"
2735
  msgstr "Zeilen zählen"
2736
 
@@ -2755,13 +2768,15 @@ msgstr "Standardansicht"
2755
 
2756
  #: app/features/mec/meta_boxes/display_options.php:297
2757
  #: app/features/mec/meta_boxes/display_options.php:314
2758
- #: app/libraries/main.php:326 app/libraries/main.php:1194
 
2759
  msgid "List View"
2760
  msgstr "Listenansicht"
2761
 
2762
  #: app/features/mec/meta_boxes/display_options.php:298
2763
  #: app/features/mec/meta_boxes/display_options.php:324
2764
- #: app/libraries/main.php:330 app/libraries/main.php:1188
 
2765
  msgid "Yearly View"
2766
  msgstr "Jahresansicht"
2767
 
@@ -2772,13 +2787,15 @@ msgstr "Monatliche Kalenderansicht"
2772
 
2773
  #: app/features/mec/meta_boxes/display_options.php:300
2774
  #: app/features/mec/meta_boxes/display_options.php:344
2775
- #: app/libraries/main.php:333 app/libraries/main.php:1190
 
2776
  msgid "Weekly View"
2777
  msgstr "Wochenansicht"
2778
 
2779
  #: app/features/mec/meta_boxes/display_options.php:301
2780
  #: app/features/mec/meta_boxes/display_options.php:354
2781
- #: app/libraries/main.php:332 app/libraries/main.php:1191
 
2782
  msgid "Daily View"
2783
  msgstr "Tagesansicht"
2784
 
@@ -2926,44 +2943,57 @@ msgid "Background Color"
2926
  msgstr "Hintergrund Farbe"
2927
 
2928
  #: app/features/mec/meta_boxes/display_options.php:793
2929
- #: app/features/mec/meta_boxes/display_options.php:853
2930
  msgid "Type 1"
2931
  msgstr "Typ 1"
2932
 
2933
  #: app/features/mec/meta_boxes/display_options.php:794
2934
- #: app/features/mec/meta_boxes/display_options.php:854
2935
  msgid "Type 2"
2936
  msgstr "Typ 2"
2937
 
2938
  #: app/features/mec/meta_boxes/display_options.php:795
2939
- #: app/features/mec/meta_boxes/display_options.php:855
2940
  msgid "Type 3"
2941
  msgstr "Type 3"
2942
 
2943
- #: app/features/mec/meta_boxes/display_options.php:816
 
 
 
 
 
2944
  msgid "Default values are d, F and Y"
2945
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
2946
 
2947
- #: app/features/mec/meta_boxes/display_options.php:821
2948
- #: app/features/mec/meta_boxes/display_options.php:826
2949
  msgid "Default value is \"M d, Y\""
2950
  msgstr "Standardwert ist \"M T, J\""
2951
 
2952
- #: app/features/mec/meta_boxes/display_options.php:842
2953
- #: app/features/mec/meta_boxes/display_options.php:913
2954
  msgid "Auto Play Time"
2955
  msgstr "Auto Play Time"
2956
 
2957
- #: app/features/mec/meta_boxes/display_options.php:843
2958
- #: app/features/mec/meta_boxes/display_options.php:914
2959
  msgid "eg. 3000 default is 3 second"
2960
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
2961
 
2962
- #: app/features/mec/meta_boxes/display_options.php:856
2963
- msgid "Type 4"
2964
- msgstr "Typ 4"
 
 
2965
 
2966
- #: app/features/mec/meta_boxes/display_options.php:857
 
 
 
 
 
 
2967
  msgid "Type 5"
2968
  msgstr "Typ 5"
2969
 
@@ -3092,8 +3122,8 @@ msgstr "Such Formular anzeigen"
3092
  #: app/features/mec/meta_boxes/search_form.php:449
3093
  #: app/features/mec/meta_boxes/search_form.php:456
3094
  #: app/features/mec/meta_boxes/search_form.php:463
3095
- #: app/features/mec/settings.php:322 app/features/mec/settings.php:420
3096
- #: app/features/mec/settings.php:604
3097
  msgid "Disabled"
3098
  msgstr "Deaktiviert"
3099
 
@@ -3388,7 +3418,7 @@ msgstr "Mehrere Empfänger einfügen, durch Komma getrennt."
3388
  msgid "Email/Booking verification link."
3389
  msgstr "Bestätigungslink für Email/Buchung"
3390
 
3391
- #: app/features/mec/notifications.php:196 app/features/mec/settings.php:1064
3392
  msgid "Booking Confirmation"
3393
  msgstr "Buchungsbestätigung"
3394
 
@@ -3453,7 +3483,7 @@ msgstr ""
3453
  "Sie beispielsweise 3,5 eingeben, wird die Erinnerung 3 und 5 Tage vor dem "
3454
  "Ereignisdatum gesendet."
3455
 
3456
- #: app/features/mec/notifications.php:336
3457
  msgid "New Event"
3458
  msgstr "Neue Veranstaltung"
3459
 
@@ -3477,7 +3507,7 @@ msgstr "Titel der Veranstaltung"
3477
  msgid "Status of event"
3478
  msgstr "Status der Veranstaltung"
3479
 
3480
- #: app/features/mec/notifications.php:362 app/features/mec/settings.php:951
3481
  msgid "Event Note"
3482
  msgstr "Veranstaltungsnotiz"
3483
 
@@ -3485,99 +3515,99 @@ msgstr "Veranstaltungsnotiz"
3485
  msgid "Admin events management link."
3486
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3487
 
3488
- #: app/features/mec/settings.php:53
3489
  msgid "Archive Page Options"
3490
  msgstr ""
3491
 
3492
- #: app/features/mec/settings.php:95 app/features/mec/settings.php:669
3493
  msgid "Export Module Options"
3494
  msgstr "Optionen für Export-Module"
3495
 
3496
- #: app/features/mec/settings.php:101 app/features/mec/settings.php:696
3497
  msgid "Local Time Module"
3498
  msgstr "Lokales Zeitmodul"
3499
 
3500
- #: app/features/mec/settings.php:107 app/features/mec/settings.php:708
3501
  msgid "QR Code Module"
3502
  msgstr "QR Code Module"
3503
 
3504
- #: app/features/mec/settings.php:113 app/features/mec/settings.php:726
3505
  #: app/widgets/single.php:147
3506
  msgid "Weather Module"
3507
  msgstr "Wettermodul"
3508
 
3509
- #: app/features/mec/settings.php:143 app/features/mec/settings.php:970
3510
  msgid "User Profile"
3511
  msgstr ""
3512
 
3513
- #: app/features/mec/settings.php:155 app/features/mec/settings.php:988
3514
  msgid "Additional Organizers"
3515
  msgstr "Zusätzliche Organisatoren"
3516
 
3517
- #: app/features/mec/settings.php:173 app/features/mec/settings.php:1105
3518
  msgid "Taxes / Fees"
3519
  msgstr "Steuern/Gebühren"
3520
 
3521
- #: app/features/mec/settings.php:179 app/features/mec/settings.php:1170
3522
  msgid "Ticket Variations & Options"
3523
  msgstr ""
3524
 
3525
- #: app/features/mec/settings.php:281
3526
  msgid "Time Format"
3527
  msgstr "Zeitformat"
3528
 
3529
- #: app/features/mec/settings.php:284
3530
  msgid "12 hours format with AM/PM"
3531
  msgstr "12-Stunden-Format mit AM/FM"
3532
 
3533
- #: app/features/mec/settings.php:285
3534
  msgid "24 hours format"
3535
  msgstr "24-Stunden-Format"
3536
 
3537
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:300
3538
  msgid ""
3539
  "This option is for showing start/end time of events on frontend of website."
3540
  msgstr ""
3541
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3542
  "anzuzeigen"
3543
 
3544
- #: app/features/mec/settings.php:292
3545
  msgid "Hide Events"
3546
  msgstr "Events verbergen"
3547
 
3548
- #: app/features/mec/settings.php:295
3549
  msgid "On Event Start"
3550
  msgstr "Am Event Start"
3551
 
3552
- #: app/features/mec/settings.php:296
3553
  msgid "+1 Hour after start"
3554
  msgstr "+1 Stunde nach dem Start"
3555
 
3556
- #: app/features/mec/settings.php:297
3557
  msgid "+2 Hours after start"
3558
  msgstr "+2 Stunden nach dem Start"
3559
 
3560
- #: app/features/mec/settings.php:298
3561
  msgid "On Event End"
3562
  msgstr "Am Event Ende"
3563
 
3564
- #: app/features/mec/settings.php:306
3565
  msgid "Multiple Day Events"
3566
  msgstr "Mehrtagesveranstaltung"
3567
 
3568
- #: app/features/mec/settings.php:309
3569
  msgid "Show only first day on List/Grid/Slider skins"
3570
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3571
 
3572
- #: app/features/mec/settings.php:310
3573
  msgid "Show only first day on all skins"
3574
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3575
 
3576
- #: app/features/mec/settings.php:311
3577
  msgid "Show all days"
3578
  msgstr "Alle Tage anzeigen"
3579
 
3580
- #: app/features/mec/settings.php:313
3581
  msgid ""
3582
  "For showing all days of multiple day events on frontend or only show the "
3583
  "first day."
@@ -3585,27 +3615,27 @@ msgstr ""
3585
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3586
  "den ersten Tag anzeigen"
3587
 
3588
- #: app/features/mec/settings.php:319
3589
  msgid "Remove MEC Data on Plugin Uninstall"
3590
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3591
 
3592
- #: app/features/mec/settings.php:323
3593
  msgid "Enabled"
3594
  msgstr "Aktiviert"
3595
 
3596
- #: app/features/mec/settings.php:329
3597
  msgid "Exclude Date Suffix"
3598
  msgstr "Ausschlussdatum Suffix"
3599
 
3600
- #: app/features/mec/settings.php:332
3601
  msgid "Remove suffix from calendars"
3602
  msgstr "Suffix aus den Kalendern entfernen"
3603
 
3604
- #: app/features/mec/settings.php:339 app/libraries/main.php:4209
3605
  msgid "Weekdays"
3606
  msgstr "Wochentage"
3607
 
3608
- #: app/features/mec/settings.php:347
3609
  msgid ""
3610
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3611
  "and Friday."
@@ -3613,63 +3643,96 @@ msgstr ""
3613
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3614
  "Donnerstag und Freitag gesetzt."
3615
 
3616
- #: app/features/mec/settings.php:354
3617
  msgid "Weekends"
3618
  msgstr "Wochenenden"
3619
 
3620
- #: app/features/mec/settings.php:362
3621
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3622
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3623
 
3624
- #: app/features/mec/settings.php:370
3625
  msgid "Archive Pages"
3626
  msgstr ""
3627
 
3628
- #: app/features/mec/settings.php:373
3629
  msgid "Archive Page Title"
3630
  msgstr "Titel der Archivseite"
3631
 
3632
- #: app/features/mec/settings.php:376
3633
  msgid "Default value is Events"
3634
  msgstr "Der Standardwert ist Ereignisse (Events)"
3635
 
3636
- #: app/features/mec/settings.php:381
3637
  msgid "Archive Page Skin"
3638
  msgstr "Skin Seite Archiv"
3639
 
3640
- #: app/features/mec/settings.php:388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3641
  msgid "Default value is Calendar/Monthly View"
3642
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3643
 
3644
- #: app/features/mec/settings.php:393
3645
  msgid "Category Page Skin"
3646
  msgstr "Kategorie Seiten Skin"
3647
 
3648
- #: app/features/mec/settings.php:400
3649
  msgid "Default value is List View"
3650
  msgstr "Standardwert ist Listenansicht"
3651
 
3652
- #: app/features/mec/settings.php:405
3653
  msgid "Category Events Method"
3654
  msgstr ""
3655
 
3656
- #: app/features/mec/settings.php:409
3657
  msgid "Expired Events"
3658
  msgstr ""
3659
 
3660
- #: app/features/mec/settings.php:411
3661
  msgid "Default value is Upcoming Events"
3662
  msgstr ""
3663
 
3664
- #: app/features/mec/settings.php:416
3665
  msgid "Events Archive Status"
3666
  msgstr "Events Archiv Status"
3667
 
3668
- #: app/features/mec/settings.php:419
3669
  msgid "Enabled (Recommended)"
3670
  msgstr "Ist aktiviert (empfohlen)"
3671
 
3672
- #: app/features/mec/settings.php:422
3673
  msgid ""
3674
  "If you disable it, then you should create a page as archive page of MEC. "
3675
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3679,11 +3742,11 @@ msgstr ""
3679
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3680
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3681
 
3682
- #: app/features/mec/settings.php:432
3683
  msgid "Main Slug"
3684
  msgstr "Main Slug"
3685
 
3686
- #: app/features/mec/settings.php:435
3687
  msgid ""
3688
  "Default value is events. Valid characters are lowercase a-z, - character and "
3689
  "numbers."
@@ -3691,11 +3754,11 @@ msgstr ""
3691
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3692
  "und Zahlen."
3693
 
3694
- #: app/features/mec/settings.php:439
3695
  msgid "Category Slug"
3696
  msgstr "Category Slug"
3697
 
3698
- #: app/features/mec/settings.php:442
3699
  msgid ""
3700
  "It's slug of MEC categories, you can change it to events-cat or something "
3701
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3707,138 +3770,134 @@ msgstr ""
3707
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3708
  "category"
3709
 
3710
- #: app/features/mec/settings.php:452
3711
  msgid "Single Event Date Format"
3712
  msgstr "Einzelveranstaltung Datumformat"
3713
 
3714
- #: app/features/mec/settings.php:455 app/features/mec/settings.php:817
3715
  msgid "Default is M d Y"
3716
  msgstr "Standardwert ist M-T-J"
3717
 
3718
- #: app/features/mec/settings.php:459
3719
  msgid "Date Method"
3720
  msgstr "Datum Methode"
3721
 
3722
- #: app/features/mec/settings.php:462
3723
  msgid "Next occurrence date"
3724
  msgstr "Nächstes vorkommende Datum"
3725
 
3726
- #: app/features/mec/settings.php:463
3727
  msgid "Referred date"
3728
  msgstr "Gewünschtes Datum"
3729
 
3730
- #: app/features/mec/settings.php:465
3731
  msgid ""
3732
  "\"Referred date\" shows the event date based on referred date in event list."
3733
  msgstr ""
3734
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3735
  "Datum in der Eventliste an."
3736
 
3737
- #: app/features/mec/settings.php:469
3738
  msgid "Single Event Style"
3739
  msgstr "Single Event Stil"
3740
 
3741
- #: app/features/mec/settings.php:472
3742
  msgid "Default Style"
3743
  msgstr "Standardstil voreingestellt"
3744
 
3745
- #: app/features/mec/settings.php:473
3746
- msgid "Modern Style"
3747
- msgstr "Moderner Stil"
3748
-
3749
- #: app/features/mec/settings.php:475
3750
  msgid "Choose your single event style."
3751
  msgstr "Wählen Sie Ihren Single Event Stil"
3752
 
3753
- #: app/features/mec/settings.php:479
3754
  #, fuzzy
3755
  #| msgid "Booking"
3756
  msgid "Booking Style"
3757
  msgstr "Buchung / Reservierung"
3758
 
3759
- #: app/features/mec/settings.php:482 app/features/mec/settings.php:593
3760
  msgid "Default"
3761
  msgstr "Standardeinstellung"
3762
 
3763
- #: app/features/mec/settings.php:483
3764
  #, fuzzy
3765
  #| msgid "Modal 1"
3766
  msgid "Modal"
3767
  msgstr "Modal 1"
3768
 
3769
- #: app/features/mec/settings.php:485
3770
  #, fuzzy
3771
  #| msgid "Choose your single event style."
3772
  msgid "Choose your Booking style."
3773
  msgstr "Wählen Sie Ihren Single Event Stil"
3774
 
3775
- #: app/features/mec/settings.php:493
3776
  msgid "Currency"
3777
  msgstr "Währung"
3778
 
3779
- #: app/features/mec/settings.php:503
3780
  msgid "Currency Sign"
3781
  msgstr "Währungssymbol"
3782
 
3783
- #: app/features/mec/settings.php:506
3784
  msgid "Default value will be \"currency\" if you leave it empty."
3785
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3786
 
3787
- #: app/features/mec/settings.php:510
3788
  msgid "Currency Position"
3789
  msgstr "Position des Währungssymbols"
3790
 
3791
- #: app/features/mec/settings.php:513
3792
  msgid "Before $10"
3793
  msgstr "Vor $10"
3794
 
3795
- #: app/features/mec/settings.php:514
3796
  msgid "After 10$"
3797
  msgstr "Nach 10$"
3798
 
3799
- #: app/features/mec/settings.php:519
3800
  msgid "Thousand Separator"
3801
  msgstr "Tausendertrennzeichen"
3802
 
3803
- #: app/features/mec/settings.php:525
3804
  msgid "Decimal Separator"
3805
  msgstr "Dezimaltrennzeichen"
3806
 
3807
- #: app/features/mec/settings.php:535
3808
  msgid "No decimal"
3809
  msgstr "Keine Dezimale"
3810
 
3811
- #: app/features/mec/settings.php:544
3812
  #, fuzzy
3813
  #| msgid "No Search Options"
3814
  msgid "Speakers Options"
3815
  msgstr "Keine Suchoptionen"
3816
 
3817
- #: app/features/mec/settings.php:550
3818
  #, fuzzy
3819
  #| msgid "Enable taxes / fees module"
3820
  msgid "Enable speakers feature"
3821
  msgstr "Modul für Gebühren/Steuern aktivieren"
3822
 
3823
- #: app/features/mec/settings.php:566
3824
  msgid "Show Google Maps on event page"
3825
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3826
 
3827
- #: app/features/mec/settings.php:571 app/features/mec/settings.php:739
3828
- #: app/features/mec/settings.php:1268
3829
  msgid "API Key"
3830
  msgstr "API Schlüssel"
3831
 
3832
- #: app/features/mec/settings.php:574 app/features/mec/settings.php:1271
3833
- #: app/features/mec/settings.php:1278
3834
  msgid "Required!"
3835
  msgstr "Erforderlich (Pflichtfeld)"
3836
 
3837
- #: app/features/mec/settings.php:578
3838
  msgid "Zoom level"
3839
  msgstr "Zoom"
3840
 
3841
- #: app/features/mec/settings.php:585
3842
  msgid ""
3843
  "For Google Maps module in single event page. In Google Maps skin, it will "
3844
  "caculate the zoom level automatically based on event boundaries."
@@ -3847,192 +3906,192 @@ msgstr ""
3847
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3848
  "Angrenzungen"
3849
 
3850
- #: app/features/mec/settings.php:589
3851
  msgid "Google Maps Style"
3852
  msgstr "Google Maps Stil"
3853
 
3854
- #: app/features/mec/settings.php:601
3855
  msgid "Direction on single event"
3856
  msgstr "Richtung auf einzelne Veranstaltung"
3857
 
3858
- #: app/features/mec/settings.php:605
3859
  msgid "Simple Method"
3860
  msgstr "Einfache Methode"
3861
 
3862
- #: app/features/mec/settings.php:606
3863
  msgid "Advanced Method"
3864
  msgstr "Fortgeschrittene Methode"
3865
 
3866
- #: app/features/mec/settings.php:611
3867
  msgid "Lightbox Date Format"
3868
  msgstr "Leuchtkasten Datumsformat"
3869
 
3870
- #: app/features/mec/settings.php:614
3871
  msgid "Default value is M d Y"
3872
  msgstr "Standardwert ist M T J"
3873
 
3874
- #: app/features/mec/settings.php:618
3875
  msgid "Google Maps API"
3876
  msgstr "Google Maps API"
3877
 
3878
- #: app/features/mec/settings.php:622
3879
  msgid "Don't load Google Maps API library"
3880
  msgstr "Google Maps API Bibliothek nicht laden"
3881
 
3882
- #: app/features/mec/settings.php:624
3883
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3884
  msgstr ""
3885
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3886
 
3887
- #: app/features/mec/settings.php:636
3888
  msgid "Enable Google Recaptcha"
3889
  msgstr "Google Recaptcha aktivieren"
3890
 
3891
- #: app/features/mec/settings.php:643
3892
  msgid "Enable on booking form"
3893
  msgstr "Auf dem Buchungsformular aktivieren"
3894
 
3895
- #: app/features/mec/settings.php:649
3896
  #, fuzzy
3897
  #| msgid "Enable on \"Frontend Event Submittion\" form"
3898
  msgid "Enable on \"Frontend Event Submission\" form"
3899
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3900
 
3901
- #: app/features/mec/settings.php:653
3902
  msgid "Site Key"
3903
  msgstr "Site Key (Seitenschlüssel)"
3904
 
3905
- #: app/features/mec/settings.php:659
3906
  msgid "Secret Key"
3907
  msgstr "Geheimschlüssel"
3908
 
3909
- #: app/features/mec/settings.php:673
3910
  msgid ""
3911
  "Show export module (iCal export and add to Google calendars) on event page"
3912
  msgstr ""
3913
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3914
  "Google calendars)"
3915
 
3916
- #: app/features/mec/settings.php:680
3917
  msgid "Google Calendar"
3918
  msgstr "Google Calendar"
3919
 
3920
- #: app/features/mec/settings.php:700
3921
  msgid "Show event time based on local time of visitor on event page"
3922
  msgstr ""
3923
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3924
  "Eventseite"
3925
 
3926
- #: app/features/mec/settings.php:716
3927
  msgid "Show QR code of event in details page and booking invoice"
3928
  msgstr ""
3929
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3930
  "an"
3931
 
3932
- #: app/features/mec/settings.php:734
3933
  msgid "Show weather module on event page"
3934
  msgstr "Wettermodul auf der Eventseite anzeigen"
3935
 
3936
- #: app/features/mec/settings.php:742
3937
  #, php-format
3938
  msgid "You can get a free API Key from %s"
3939
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3940
 
3941
- #: app/features/mec/settings.php:754
3942
  msgid "Show countdown module on event page"
3943
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
3944
 
3945
- #: app/features/mec/settings.php:759
3946
  msgid "Countdown Style"
3947
  msgstr "Countdown Stil"
3948
 
3949
- #: app/features/mec/settings.php:762
3950
  msgid "Plain Style"
3951
  msgstr "Einfacher schlichter Stil"
3952
 
3953
- #: app/features/mec/settings.php:763
3954
  msgid "Flip Style"
3955
  msgstr "Flip Stil"
3956
 
3957
- #: app/features/mec/settings.php:775
3958
  msgid "Show social network module"
3959
  msgstr "Modul für Soziale Netzwerke anzeigen"
3960
 
3961
- #: app/features/mec/settings.php:800
3962
  msgid "Show next event module on event page"
3963
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
3964
 
3965
- #: app/features/mec/settings.php:805
3966
  msgid "Method"
3967
  msgstr "Methode"
3968
 
3969
- #: app/features/mec/settings.php:808
3970
  msgid "Next Occurrence of Current Event"
3971
  msgstr "Nächstes Auftreten des aktuellen Events"
3972
 
3973
- #: app/features/mec/settings.php:809
3974
  msgid "Next Occurrence of Other Events"
3975
  msgstr "Nächstes Auftreten von anderen Events."
3976
 
3977
- #: app/features/mec/settings.php:814 app/features/mec/settings.php:1011
3978
  msgid "Date Format"
3979
  msgstr "Datumsformat"
3980
 
3981
- #: app/features/mec/settings.php:826
3982
  msgid "Events List Page"
3983
  msgstr "Seite Liste der Veranstaltungen"
3984
 
3985
- #: app/features/mec/settings.php:835 app/features/mec/settings.php:847
3986
  #, php-format
3987
  msgid "Put %s shortcode into the page."
3988
  msgstr "%s shortcode in die Seite einfügen"
3989
 
3990
- #: app/features/mec/settings.php:838
3991
  msgid "Add/Edit Events Page"
3992
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
3993
 
3994
- #: app/features/mec/settings.php:852
3995
  msgid "Enable event submission by guest (Not logged-in) users"
3996
  msgstr ""
3997
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
3998
  "erlauben"
3999
 
4000
- #: app/features/mec/settings.php:859
4001
  msgid "Enable mandatory email and name for guest user"
4002
  msgstr ""
4003
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4004
 
4005
- #: app/features/mec/settings.php:863
4006
  msgid "Frontend Event Submission Sections"
4007
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4008
 
4009
- #: app/features/mec/settings.php:885 app/widgets/single.php:119
4010
  msgid "Event Categories"
4011
  msgstr "Veranstaltungskategorien"
4012
 
4013
- #: app/features/mec/settings.php:891
4014
  msgid "Event Labels"
4015
  msgstr "Event Labels"
4016
 
4017
- #: app/features/mec/settings.php:903
4018
  msgid "Event Tags"
4019
  msgstr "Event Schlagworte"
4020
 
4021
- #: app/features/mec/settings.php:915 app/widgets/single.php:123
4022
  msgid "Event Organizer"
4023
  msgstr "Veranstaltungsmanager"
4024
 
4025
- #: app/features/mec/settings.php:933
4026
  msgid "Booking Options"
4027
  msgstr "Buchungsoptionen"
4028
 
4029
- #: app/features/mec/settings.php:939
4030
  #, fuzzy
4031
  #| msgid "Fees/Taxes Options"
4032
  msgid "Fees / Taxes Options"
4033
  msgstr "Gebühren/Steuer Optionen"
4034
 
4035
- #: app/features/mec/settings.php:953
4036
  #, php-format
4037
  msgid ""
4038
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4044,42 +4103,42 @@ msgstr ""
4044
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
4045
  "erhalten."
4046
 
4047
- #: app/features/mec/settings.php:957
4048
  msgid "Visibility of Note"
4049
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
4050
 
4051
- #: app/features/mec/settings.php:960
4052
  msgid "Always"
4053
  msgstr "Immer"
4054
 
4055
- #: app/features/mec/settings.php:961
4056
  msgid "While event is not published"
4057
  msgstr "Das Ereignis wird nicht veröffentlicht"
4058
 
4059
- #: app/features/mec/settings.php:964
4060
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4061
  msgstr ""
4062
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4063
  "Ereignis im Backend bearbeitet."
4064
 
4065
- #: app/features/mec/settings.php:972
4066
  #, php-format
4067
  msgid ""
4068
  "Put %s shortcode into your desired page. Then users are able to see history "
4069
  "of their bookings."
4070
  msgstr ""
4071
 
4072
- #: app/features/mec/settings.php:977
4073
  msgid "Exceptional days"
4074
  msgstr "Ausgesuchte ausnehmende Tage"
4075
 
4076
- #: app/features/mec/settings.php:981
4077
  msgid "Show exceptional days option on Add/Edit events page"
4078
  msgstr ""
4079
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
4080
  "(Show exceptional days option on Add/Edit events page)"
4081
 
4082
- #: app/features/mec/settings.php:982
4083
  msgid ""
4084
  "Using this option you can include/exclude certain days to/from event "
4085
  "occurrence dates."
@@ -4087,7 +4146,7 @@ msgstr ""
4087
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
4088
  "ausschließen."
4089
 
4090
- #: app/features/mec/settings.php:992
4091
  msgid ""
4092
  "Show additional organizers option on Add/Edit events page and single event "
4093
  "page."
@@ -4095,27 +4154,27 @@ msgstr ""
4095
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
4096
  "bearbeiten und auf der Seite für einzelne Events an."
4097
 
4098
- #: app/features/mec/settings.php:1006
4099
  msgid "Enable booking module"
4100
  msgstr "Buchungsmodul aktivieren"
4101
 
4102
- #: app/features/mec/settings.php:1014
4103
  msgid "Default is Y-m-d"
4104
  msgstr "Voreinstellung ist J-M-T"
4105
 
4106
- #: app/features/mec/settings.php:1018
4107
  msgid "Maximum Dates"
4108
  msgstr "Maximale Anzahl von Daten"
4109
 
4110
- #: app/features/mec/settings.php:1020
4111
  msgid "Default is 6"
4112
  msgstr "Die Voreinstellung ist 6"
4113
 
4114
- #: app/features/mec/settings.php:1024
4115
  msgid "Thank You Page"
4116
  msgstr "Danke Seite"
4117
 
4118
- #: app/features/mec/settings.php:1032
4119
  msgid ""
4120
  "User redirects to this page after booking. Leave it empty if you want to "
4121
  "disable it."
@@ -4123,11 +4182,11 @@ msgstr ""
4123
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
4124
  "es leer, wenn Sie es deaktivieren möchten."
4125
 
4126
- #: app/features/mec/settings.php:1040
4127
  msgid "Enable Express Attendees Form"
4128
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
4129
 
4130
- #: app/features/mec/settings.php:1042
4131
  msgid ""
4132
  "Users are able to apply first attendee information for other attendees in "
4133
  "the booking form."
@@ -4135,87 +4194,87 @@ msgstr ""
4135
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
4136
  "Buchungsformular anwenden."
4137
 
4138
- #: app/features/mec/settings.php:1045
4139
  msgid "Email verification"
4140
  msgstr "Email-Verifizierung"
4141
 
4142
- #: app/features/mec/settings.php:1051
4143
  msgid "Auto verification for free bookings"
4144
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
4145
 
4146
- #: app/features/mec/settings.php:1060
4147
  msgid "Auto verification for paid bookings"
4148
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
4149
 
4150
- #: app/features/mec/settings.php:1070
4151
  msgid "Auto confirmation for free bookings"
4152
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
4153
 
4154
- #: app/features/mec/settings.php:1079
4155
  msgid "Auto confirmation for paid bookings"
4156
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
4157
 
4158
- #: app/features/mec/settings.php:1096
4159
  msgid "Enable coupons module"
4160
  msgstr "Gutscheinmodul aktivieren"
4161
 
4162
- #: app/features/mec/settings.php:1113
4163
  msgid "Enable taxes / fees module"
4164
  msgstr "Modul für Gebühren/Steuern aktivieren"
4165
 
4166
- #: app/features/mec/settings.php:1118
4167
  msgid "Add Fee"
4168
  msgstr "Gebühr hinzufügen"
4169
 
4170
- #: app/features/mec/settings.php:1178
4171
  #, fuzzy
4172
  #| msgid "Enable coupons module"
4173
  msgid "Enable ticket options module"
4174
  msgstr "Gutscheinmodul aktivieren"
4175
 
4176
- #: app/features/mec/settings.php:1183
4177
  msgid "Add Variation / Option"
4178
  msgstr ""
4179
 
4180
- #: app/features/mec/settings.php:1233
4181
  msgid "Enable BuddyPress Integration"
4182
  msgstr "Buddy Press Integration deaktivieren"
4183
 
4184
- #: app/features/mec/settings.php:1240
4185
  msgid "Show \"Attendees Module\" in event details page"
4186
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4187
 
4188
- #: app/features/mec/settings.php:1244
4189
  msgid "Attendees Limit"
4190
  msgstr "Teilnehmer Limit, maximale Anzahl"
4191
 
4192
- #: app/features/mec/settings.php:1252
4193
  msgid "Add booking activity to user profile"
4194
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4195
 
4196
- #: app/features/mec/settings.php:1263
4197
  msgid "Enable Mailchimp Integration"
4198
  msgstr "Mailchimp Integration deaktivieren"
4199
 
4200
- #: app/features/mec/settings.php:1275
4201
  msgid "List ID"
4202
  msgstr "List ID"
4203
 
4204
- #: app/features/mec/settings.php:1282
4205
  msgid "Subscription Status"
4206
  msgstr "Buchungsstatus"
4207
 
4208
- #: app/features/mec/settings.php:1285
4209
  msgid "Subscribe automatically"
4210
  msgstr "automatisch Anmelden/Abonnieren"
4211
 
4212
- #: app/features/mec/settings.php:1286
4213
  msgid "Subscribe by verification"
4214
  msgstr ""
4215
  "Anmelden/Abonnieren durch Bestätigung\n"
4216
  " "
4217
 
4218
- #: app/features/mec/settings.php:1288
4219
  msgid ""
4220
  "If you choose \"Subscribe by verification\" then an email will send to user "
4221
  "by mailchimp for subscription verification."
@@ -4223,72 +4282,12 @@ msgstr ""
4223
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
4224
  "Benutzer per Mailchimp zur Bestätigung gesendet."
4225
 
4226
- #: app/features/mec/settings.php:1298
4227
- #, php-format
4228
- msgid "%s is required to use this section."
4229
- msgstr ""
4230
-
4231
- #: app/features/mec/settings.php:1301
4232
- msgid "Purchase Code"
4233
- msgstr "Kaufcode"
4234
-
4235
- #: app/features/mec/settings.php:1306 app/features/mec/settings.php:1390
4236
- #: app/features/mec/settings.php:1412 app/libraries/main.php:4390
4237
  msgid "Verified"
4238
  msgstr "Verifiziert"
4239
 
4240
- #: app/features/mec/settings.php:1308
4241
- msgid "UnVerified"
4242
- msgstr "Unbestätigt"
4243
-
4244
- #: app/features/mec/settings.php:1310
4245
- #, fuzzy
4246
- #| msgid ""
4247
- #| "Please insert your purchase code validation. read documentation for more "
4248
- #| "information."
4249
- msgid ""
4250
- "Please insert your purchase code validation. Read documentation for more "
4251
- "information."
4252
- msgstr ""
4253
- "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
4254
- "Dokumentation für mehr Informationen."
4255
-
4256
- #: app/features/mec/settings.php:1313
4257
- msgid "Product Name"
4258
- msgstr ""
4259
-
4260
- #: app/features/mec/settings.php:1316
4261
- msgid "1 License for MEC Plugin"
4262
- msgstr ""
4263
-
4264
- #: app/features/mec/settings.php:1317
4265
- msgid "5 License for MEC Plugin"
4266
- msgstr ""
4267
-
4268
- #: app/features/mec/settings.php:1318
4269
- msgid "10 License for MEC Plugin"
4270
- msgstr ""
4271
-
4272
- #: app/features/mec/settings.php:1325
4273
- msgid "MEC Deactivation"
4274
- msgstr "MEC Deaktivierung"
4275
-
4276
- #: app/features/mec/settings.php:1327
4277
- msgid "Deactivate"
4278
- msgstr "Deaktivieren"
4279
-
4280
- #: app/features/mec/settings.php:1329
4281
- msgid ""
4282
- "For deactivation first delete your purchase from above field then press save "
4283
- "after that click on deactivate for deactivate this purchase code from this "
4284
- "domain then you can activate another domain."
4285
- msgstr ""
4286
- "Zur Deaktivierung löschen Sie zuerst Ihren Kauf vom obigen Feld, dann "
4287
- "drücken Sie speichern, nachdem klicken Sie auf deaktivieren um diesen "
4288
- "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
4289
- "Domain aktivieren."
4290
-
4291
- #: app/features/mec/settings.php:1414
4292
  msgid "Please Refresh Page"
4293
  msgstr "Bitte Seiten Refresh vornehmen"
4294
 
@@ -4376,6 +4375,387 @@ msgstr ""
4376
  msgid "Desktop Large Screens"
4377
  msgstr ""
4378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4379
  #: app/features/mec/support.php:138
4380
  msgid "Knowledgebase"
4381
  msgstr "Wissensbasis"
@@ -4402,10 +4782,6 @@ msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
4402
  msgid "How to add/manage shortcodes?"
4403
  msgstr "Wie kann man shortcodes hinzufügen / managen?"
4404
 
4405
- #: app/features/mec/support.php:147
4406
- msgid "View all Articles"
4407
- msgstr "Alle Artikel anzeigen"
4408
-
4409
  #: app/features/organizers.php:105 app/features/organizers.php:147
4410
  #: app/features/speakers.php:176
4411
  msgid "Insert organizer phone number."
@@ -4472,7 +4848,7 @@ msgstr "z.B.. max@mustermann.com"
4472
  msgid "eg. https://webnus.net"
4473
  msgstr "http://webnus.net"
4474
 
4475
- #: app/features/organizers.php:300 app/libraries/main.php:4233
4476
  #: app/skins/single.php:194
4477
  msgid "Other Organizers"
4478
  msgstr "Andere Veranstalter"
@@ -4494,11 +4870,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
4494
  msgid "#"
4495
  msgstr ""
4496
 
4497
- #: app/features/profile/profile.php:34 app/libraries/main.php:2375
4498
  msgid "Status"
4499
  msgstr ""
4500
 
4501
- #: app/features/profile/profile.php:37 app/libraries/main.php:1637
4502
  msgid "Attendees"
4503
  msgstr "Teilnehmer"
4504
 
@@ -4513,8 +4889,8 @@ msgstr "% s Rechnung"
4513
  msgid "<i class=\"mec-sl-eye\"></i> %s"
4514
  msgstr ""
4515
 
4516
- #: app/features/profile/profile.php:96 app/libraries/main.php:1651
4517
- #: app/libraries/main.php:4231
4518
  msgid "Ticket"
4519
  msgstr "Ticket"
4520
 
@@ -4529,7 +4905,7 @@ msgid "No bookings found!"
4529
  msgstr "Keine Buchungen gefunden"
4530
 
4531
  #: app/features/speakers.php:56 app/features/speakers.php:242
4532
- #: app/libraries/main.php:4205
4533
  msgid "Speaker"
4534
  msgstr ""
4535
 
@@ -4569,7 +4945,7 @@ msgid "Insert URL of Facebook Page"
4569
  msgstr "Vom Facebook Kalender Importieren"
4570
 
4571
  #: app/features/speakers.php:135 app/features/speakers.php:187
4572
- #: app/libraries/main.php:1076
4573
  msgid "Google+"
4574
  msgstr "Google+"
4575
 
@@ -4629,8 +5005,8 @@ msgid "day"
4629
  msgstr "Tag"
4630
 
4631
  #: app/libraries/factory.php:302 app/modules/countdown/details.php:122
4632
- #: app/skins/available_spot/tpl.php:106 app/skins/countdown/tpl.php:92
4633
- #: app/skins/countdown/tpl.php:136 app/skins/countdown/tpl.php:185
4634
  msgid "days"
4635
  msgstr "Tage"
4636
 
@@ -4639,8 +5015,8 @@ msgid "hour"
4639
  msgstr "Stunde"
4640
 
4641
  #: app/libraries/factory.php:304 app/modules/countdown/details.php:129
4642
- #: app/skins/available_spot/tpl.php:110 app/skins/countdown/tpl.php:98
4643
- #: app/skins/countdown/tpl.php:142 app/skins/countdown/tpl.php:191
4644
  msgid "hours"
4645
  msgstr "Stunden"
4646
 
@@ -4649,8 +5025,8 @@ msgid "minute"
4649
  msgstr "Minute"
4650
 
4651
  #: app/libraries/factory.php:306 app/modules/countdown/details.php:136
4652
- #: app/skins/available_spot/tpl.php:114 app/skins/countdown/tpl.php:104
4653
- #: app/skins/countdown/tpl.php:148 app/skins/countdown/tpl.php:197
4654
  msgid "minutes"
4655
  msgstr "Minuten"
4656
 
@@ -4659,8 +5035,8 @@ msgid "second"
4659
  msgstr "Sekunde"
4660
 
4661
  #: app/libraries/factory.php:308 app/modules/countdown/details.php:143
4662
- #: app/skins/available_spot/tpl.php:118 app/skins/countdown/tpl.php:110
4663
- #: app/skins/countdown/tpl.php:154 app/skins/countdown/tpl.php:203
4664
  msgid "seconds"
4665
  msgstr "Sekunden"
4666
 
@@ -4678,31 +5054,38 @@ msgstr ""
4678
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4679
  "Beitrag handelt."
4680
 
4681
- #: app/libraries/main.php:327 app/libraries/main.php:1195
 
4682
  msgid "Grid View"
4683
  msgstr "Rasterdarstellung"
4684
 
4685
- #: app/libraries/main.php:328 app/libraries/main.php:1196
 
4686
  msgid "Agenda View"
4687
  msgstr "Agendaansicht"
4688
 
4689
- #: app/libraries/main.php:329 app/libraries/main.php:1187
 
4690
  msgid "Full Calendar"
4691
  msgstr "Ganzer Kalender"
4692
 
4693
- #: app/libraries/main.php:331 app/libraries/main.php:1189
 
4694
  msgid "Calendar/Monthly View"
4695
  msgstr "Kalender-/Monatsansicht"
4696
 
4697
- #: app/libraries/main.php:334 app/libraries/main.php:1192
 
4698
  msgid "Timetable View"
4699
  msgstr "Stundenplan"
4700
 
4701
- #: app/libraries/main.php:335 app/libraries/main.php:1193
 
4702
  msgid "Masonry View"
4703
  msgstr "Kachel Ansicht"
4704
 
4705
- #: app/libraries/main.php:336 app/libraries/main.php:1197
 
4706
  msgid "Map View"
4707
  msgstr "Kartenansicht"
4708
 
@@ -4726,292 +5109,298 @@ msgstr "Karussellansicht"
4726
  msgid "Slider View"
4727
  msgstr "Slideransicht"
4728
 
4729
- #: app/libraries/main.php:378 app/libraries/main.php:4211
4730
  msgid "SU"
4731
  msgstr "SO"
4732
 
4733
- #: app/libraries/main.php:379 app/libraries/main.php:4212
4734
  msgid "MO"
4735
  msgstr "MO"
4736
 
4737
- #: app/libraries/main.php:380 app/libraries/main.php:4213
4738
  msgid "TU"
4739
  msgstr "DI"
4740
 
4741
- #: app/libraries/main.php:381 app/libraries/main.php:4214
4742
  msgid "WE"
4743
  msgstr "MI"
4744
 
4745
- #: app/libraries/main.php:382 app/libraries/main.php:4215
4746
  msgid "TH"
4747
  msgstr "DO"
4748
 
4749
- #: app/libraries/main.php:383 app/libraries/main.php:4216
4750
  msgid "FR"
4751
  msgstr "FR"
4752
 
4753
- #: app/libraries/main.php:384 app/libraries/main.php:4217
4754
  msgid "SA"
4755
  msgstr "SA"
4756
 
4757
- #: app/libraries/main.php:1034
4758
  msgid "Events at this location"
4759
  msgstr "Veranstaltungen an diesem Ort "
4760
 
4761
- #: app/libraries/main.php:1034
4762
  msgid "Event at this location"
4763
  msgstr "Veranstaltung an diesem Ort "
4764
 
4765
- #: app/libraries/main.php:1075
4766
  msgid "Facebook"
4767
  msgstr "Facebook"
4768
 
4769
- #: app/libraries/main.php:1077
4770
  msgid "Twitter"
4771
  msgstr "Twitter"
4772
 
4773
- #: app/libraries/main.php:1078 app/libraries/main.php:1143
4774
  msgid "Linkedin"
4775
  msgstr "Linkedin"
4776
 
4777
- #: app/libraries/main.php:1079 app/libraries/main.php:1176
4778
  msgid "VK"
4779
  msgstr ""
4780
 
4781
- #: app/libraries/main.php:1098
4782
  msgid "Share on Facebook"
4783
  msgstr "Teilen auf Facebook"
4784
 
4785
- #: app/libraries/main.php:1113
4786
  msgid "Google Plus"
4787
  msgstr "Google Plus"
4788
 
4789
- #: app/libraries/main.php:1128
4790
  msgid "Tweet"
4791
  msgstr "Tweet"
4792
 
4793
- #: app/libraries/main.php:1532
 
 
 
 
 
 
4794
  msgid "Your booking successfully verified."
4795
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4796
 
4797
- #: app/libraries/main.php:1533
4798
  msgid "Your booking cannot verify!"
4799
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4800
 
4801
- #: app/libraries/main.php:1545
4802
  msgid "Your booking successfully canceled."
4803
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4804
 
4805
- #: app/libraries/main.php:1546
4806
  msgid "Your booking cannot be canceled."
4807
  msgstr "Ihre Buchung kann nicht storniert werden."
4808
 
4809
- #: app/libraries/main.php:1550
4810
  msgid "You canceled the payment successfully."
4811
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4812
 
4813
- #: app/libraries/main.php:1554
4814
  msgid "You returned from payment gateway successfully."
4815
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4816
 
4817
- #: app/libraries/main.php:1578
4818
  msgid "Cannot find the booking!"
4819
  msgstr "Kann die Buchung nicht finden!"
4820
 
4821
- #: app/libraries/main.php:1578
4822
  msgid "Booking is invalid."
4823
  msgstr "Buchung ist ungültig."
4824
 
4825
- #: app/libraries/main.php:1607
4826
  #, php-format
4827
  msgid "%s Invoice"
4828
  msgstr "% s Rechnung"
4829
 
4830
- #: app/libraries/main.php:1628
4831
  msgid "Transaction ID"
4832
  msgstr "Transaktions-ID"
4833
 
4834
- #: app/libraries/main.php:1681
4835
  msgid "Billing"
4836
  msgstr "Abrechnung"
4837
 
4838
- #: app/libraries/main.php:1692
4839
  msgid "Total"
4840
  msgstr "Gesamt"
4841
 
4842
- #: app/libraries/main.php:1725
4843
  msgid "Security nonce is not valid."
4844
  msgstr "Sicherheits-Nonce ist ungültig."
4845
 
4846
- #: app/libraries/main.php:1725 app/libraries/main.php:1757
4847
  msgid "iCal export stopped!"
4848
  msgstr "iCal Export wurde unterbrochen!"
4849
 
4850
- #: app/libraries/main.php:1757
4851
  #, fuzzy
4852
  #| msgid "Request is invalid!"
4853
  msgid "Request is not valid."
4854
  msgstr "Die Anfrage ist ungültig!"
4855
 
4856
- #: app/libraries/main.php:2077 app/libraries/main.php:2106
4857
- #: app/libraries/main.php:2135 app/libraries/main.php:2164
4858
- #: app/libraries/main.php:2193 app/libraries/main.php:2217
4859
- #: app/libraries/main.php:2261 app/libraries/main.php:2305
4860
- #: app/libraries/main.php:2352 app/libraries/main.php:2398
4861
  msgid "Sort"
4862
  msgstr "Sortieren"
4863
 
4864
- #: app/libraries/main.php:2083 app/libraries/main.php:2112
4865
- #: app/libraries/main.php:2141 app/libraries/main.php:2170
4866
- #: app/libraries/main.php:2223 app/libraries/main.php:2267
4867
- #: app/libraries/main.php:2311 app/libraries/main.php:2358
4868
  msgid "Required Field"
4869
  msgstr "Pflichtfeld"
4870
 
4871
- #: app/libraries/main.php:2089 app/libraries/main.php:2118
4872
- #: app/libraries/main.php:2147 app/libraries/main.php:2176
4873
- #: app/libraries/main.php:2229 app/libraries/main.php:2273
4874
- #: app/libraries/main.php:2317 app/libraries/main.php:2364
4875
  msgid "Insert a label for this field"
4876
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4877
 
4878
- #: app/libraries/main.php:2199
4879
  msgid "HTML and shortcode are allowed."
4880
  msgstr "HTML und shortcodes sind erlaubt."
4881
 
4882
- #: app/libraries/main.php:2242 app/libraries/main.php:2286
4883
- #: app/libraries/main.php:2330
4884
  msgid "Option"
4885
  msgstr "Option"
4886
 
4887
- #: app/libraries/main.php:2364
4888
  #, php-format
4889
  msgid "Instead of %s, the page title with a link will be show."
4890
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4891
 
4892
- #: app/libraries/main.php:2366
4893
  msgid "Agreement Page"
4894
  msgstr "Zustimmungsseite"
4895
 
4896
- #: app/libraries/main.php:2377
4897
  msgid "Checked by default"
4898
  msgstr ""
4899
 
4900
- #: app/libraries/main.php:2378
4901
  msgid "Unchecked by default"
4902
  msgstr ""
4903
 
4904
- #: app/libraries/main.php:2400
4905
  msgid "Insert a label for this option"
4906
  msgstr "Ein neues Label für diese Option einfügen"
4907
 
4908
- #: app/libraries/main.php:2415
4909
  msgid "Free"
4910
  msgstr "kostenfrei"
4911
 
4912
- #: app/libraries/main.php:3067
4913
  #, php-format
4914
  msgid "Copy of %s"
4915
  msgstr "Kopie von %s"
4916
 
4917
- #: app/libraries/main.php:3711
4918
  msgid "Booked an event."
4919
  msgstr "Eine Veranstaltung wurde gebucht."
4920
 
4921
- #: app/libraries/main.php:3752
4922
  #, php-format
4923
  msgid "%s booked %s event."
4924
  msgstr "%s gebuchtes %s Event"
4925
 
4926
- #: app/libraries/main.php:4194
4927
  msgid "Taxonomies"
4928
  msgstr "Klassifizierung "
4929
 
4930
- #: app/libraries/main.php:4196
4931
  msgid "Category Plural Label"
4932
  msgstr "Kategorien"
4933
 
4934
- #: app/libraries/main.php:4197
4935
  msgid "Category Singular Label"
4936
  msgstr "Kategorie"
4937
 
4938
- #: app/libraries/main.php:4198
4939
  msgid "Label Plural Label"
4940
  msgstr "Labels"
4941
 
4942
- #: app/libraries/main.php:4199
4943
  msgid "Label Singular Label"
4944
  msgstr "Label"
4945
 
4946
- #: app/libraries/main.php:4199
4947
  msgid "label"
4948
  msgstr "label"
4949
 
4950
- #: app/libraries/main.php:4200
4951
  msgid "Location Plural Label"
4952
  msgstr "Veranstaltungsorte"
4953
 
4954
- #: app/libraries/main.php:4201
4955
  msgid "Location Singular Label"
4956
  msgstr "Veranstaltungsort"
4957
 
4958
- #: app/libraries/main.php:4202
4959
  msgid "Organizer Plural Label"
4960
  msgstr "Veranstalter"
4961
 
4962
- #: app/libraries/main.php:4203
4963
  msgid "Organizer Singular Label"
4964
  msgstr "Veranstalter"
4965
 
4966
- #: app/libraries/main.php:4204
4967
  #, fuzzy
4968
  #| msgid "Label Plural Label"
4969
  msgid "Speaker Plural Label"
4970
  msgstr "Labels"
4971
 
4972
- #: app/libraries/main.php:4205
4973
  #, fuzzy
4974
  #| msgid "Label Singular Label"
4975
  msgid "Speaker Singular Label"
4976
  msgstr "Label"
4977
 
4978
- #: app/libraries/main.php:4211
4979
  msgid "Sunday abbreviation"
4980
  msgstr "Sonntag Abkürzung"
4981
 
4982
- #: app/libraries/main.php:4212
4983
  msgid "Monday abbreviation"
4984
  msgstr "Montag Abkürzung"
4985
 
4986
- #: app/libraries/main.php:4213
4987
  msgid "Tuesday abbreviation"
4988
  msgstr "Dienstag Abkürzung"
4989
 
4990
- #: app/libraries/main.php:4214
4991
  msgid "Wednesday abbreviation"
4992
  msgstr "Mittwoch Abkürzung"
4993
 
4994
- #: app/libraries/main.php:4215
4995
  msgid "Thursday abbreviation"
4996
  msgstr "Donnerstag Abkürzung"
4997
 
4998
- #: app/libraries/main.php:4216
4999
  msgid "Friday abbreviation"
5000
  msgstr "Freitag Abkürzung"
5001
 
5002
- #: app/libraries/main.php:4217
5003
  msgid "Saturday abbreviation"
5004
  msgstr "Samstag Abkürzung "
5005
 
5006
- #: app/libraries/main.php:4221
5007
  msgid "Others"
5008
  msgstr "Andere"
5009
 
5010
- #: app/libraries/main.php:4223
5011
  msgid "Booking Success Message"
5012
  msgstr "Buchung erfolgreich Mitteilung"
5013
 
5014
- #: app/libraries/main.php:4223
5015
  msgid ""
5016
  "Thanks for your booking. Your tickets booked, booking verification might be "
5017
  "needed, please check your email."
@@ -5019,90 +5408,90 @@ msgstr ""
5019
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
5020
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
5021
 
5022
- #: app/libraries/main.php:4224 app/widgets/single.php:131
5023
  msgid "Register Button"
5024
  msgstr "Register Button"
5025
 
5026
- #: app/libraries/main.php:4224 app/skins/available_spot/tpl.php:164
5027
- #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
5028
- #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
5029
- #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
5030
- #: app/skins/list/render.php:60 app/skins/list/render.php:141
5031
- #: app/skins/masonry/render.php:93 app/skins/single/default.php:218
5032
  #: app/skins/single/default.php:220 app/skins/single/default.php:425
5033
  #: app/skins/single/default.php:427 app/skins/single/m1.php:126
5034
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
5035
  #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
5036
- #: app/skins/single/modern.php:60 app/skins/slider/render.php:75
5037
- #: app/skins/slider/render.php:96 app/skins/slider/render.php:116
5038
- #: app/skins/slider/render.php:136 app/skins/slider/render.php:167
5039
  msgid "REGISTER"
5040
  msgstr "ANMELDEN"
5041
 
5042
- #: app/libraries/main.php:4225
5043
  msgid "View Detail Button"
5044
  msgstr "Ansicht Detail Button"
5045
 
5046
- #: app/libraries/main.php:4225 app/skins/carousel/render.php:79
5047
- #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
5048
- #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
5049
- #: app/skins/grid/render.php:167 app/skins/list/render.php:60
5050
- #: app/skins/list/render.php:141 app/skins/masonry/render.php:93
5051
- #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
5052
- #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
5053
- #: app/skins/slider/render.php:167
5054
  msgid "View Detail"
5055
  msgstr "Details "
5056
 
5057
- #: app/libraries/main.php:4226
5058
  msgid "Event Detail Button"
5059
  msgstr "Event Detail Button"
5060
 
5061
- #: app/libraries/main.php:4226 app/skins/countdown/tpl.php:178
5062
  msgid "Event Detail"
5063
  msgstr "Veranstaltungsdetails"
5064
 
5065
- #: app/libraries/main.php:4228
5066
  msgid "More Info Link"
5067
  msgstr "Link Mehr Informationen"
5068
 
5069
- #: app/libraries/main.php:4231
5070
  msgid "Ticket (Singular)"
5071
  msgstr "Ticket"
5072
 
5073
- #: app/libraries/main.php:4232
5074
  msgid "Tickets (Plural)"
5075
  msgstr "Tickets"
5076
 
5077
- #: app/libraries/main.php:4298
5078
  msgid "EventON"
5079
  msgstr "EventON"
5080
 
5081
- #: app/libraries/main.php:4299
5082
  msgid "The Events Calendar"
5083
  msgstr "The Events Calendar"
5084
 
5085
- #: app/libraries/main.php:4300
5086
  msgid "Events Schedule WP Plugin"
5087
  msgstr "Event Zeitplan WP-Plugin"
5088
 
5089
- #: app/libraries/main.php:4301
5090
  msgid "Calendarize It"
5091
  msgstr ""
5092
 
5093
- #: app/libraries/main.php:4375
5094
  msgid "Confirmed"
5095
  msgstr "Bestätigt"
5096
 
5097
- #: app/libraries/main.php:4376
5098
  msgid "Rejected"
5099
  msgstr "Abgelehnt"
5100
 
5101
- #: app/libraries/main.php:4377
5102
  msgid "Pending"
5103
  msgstr "Ausstehend"
5104
 
5105
- #: app/libraries/main.php:4392
5106
  msgid "Waiting"
5107
  msgstr "in Bearbeitung"
5108
 
@@ -5146,11 +5535,11 @@ msgstr "Ja"
5146
  msgid "No"
5147
  msgstr "Nein"
5148
 
5149
- #: app/libraries/render.php:340
5150
  msgid "Skin controller does not exist."
5151
  msgstr "Skin contoller existiert nicht."
5152
 
5153
- #: app/libraries/render.php:410 app/modules/local-time/details.php:47
5154
  #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
5155
  #: app/skins/single/default.php:280 app/skins/single/m1.php:34
5156
  #: app/skins/single/modern.php:169
@@ -5202,8 +5591,8 @@ msgstr ""
5202
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
5203
 
5204
  #: app/modules/booking/steps/form.php:120
5205
- #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:79
5206
- #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
5207
  msgid "Next"
5208
  msgstr "Weiter"
5209
 
@@ -5329,30 +5718,37 @@ msgid "No event found!"
5329
  msgstr "Keine Veranstaltung gefunden"
5330
 
5331
  #: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
5332
- #: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:81
5333
  msgid "Load More"
5334
  msgstr "Weitere anzeigen"
5335
 
5336
- #: app/skins/available_spot/tpl.php:99
5337
  msgid "Available Spot(s):"
5338
  msgstr "Verfügbare Spot (s):"
5339
 
5340
- #: app/skins/countdown/tpl.php:79 app/skins/countdown/tpl.php:123
5341
- #: app/skins/countdown/tpl.php:168
5342
- #, php-format
5343
- msgid "%s Upcoming Event"
5344
- msgstr "%s Kommendes Event"
5345
 
5346
- #: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
5347
- #: app/skins/cover/tpl.php:60 app/skins/list/render.php:77
 
5348
  msgid "EVENT DETAIL"
5349
  msgstr "VERANSTALTUNGSDETAILS"
5350
 
5351
- #: app/skins/cover/tpl.php:42
 
 
 
 
 
 
5352
  msgid "featured event"
5353
  msgstr "Ausgewählte Veranstaltung"
5354
 
5355
- #: app/skins/daily_view/render.php:38
5356
  msgid "No event"
5357
  msgstr "Keine Veranstaltung"
5358
 
@@ -5365,16 +5761,16 @@ msgid "All"
5365
  msgstr "Alle"
5366
 
5367
  #: app/skins/monthly_view/calendar.php:66
5368
- #: app/skins/monthly_view/calendar.php:104
5369
  #: app/skins/monthly_view/calendar_clean.php:67
5370
- #: app/skins/monthly_view/calendar_clean.php:105
5371
  #, php-format
5372
  msgid "Events for %s"
5373
  msgstr "Veranstaltungen für %s"
5374
 
5375
- #: app/skins/monthly_view/calendar.php:106
5376
- #: app/skins/monthly_view/calendar_clean.php:107
5377
- #: app/skins/timetable/render.php:70 app/skins/weekly_view/render.php:50
5378
  msgid "No Events"
5379
  msgstr "Keine Veranstaltungen"
5380
 
@@ -5835,6 +6231,39 @@ msgstr "http://webnus.net"
5835
  #~ msgid "This booking is not free!"
5836
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
5837
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5838
  #~ msgid "Local Time : "
5839
  #~ msgstr "Lokale Zeit:"
5840
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-17 15:03+0330\n"
6
+ "PO-Revision-Date: 2019-03-17 15:03+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
19
 
20
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
21
  #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
22
+ #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:326
31
+ #: app/features/mec.php:355 app/features/mec.php:381
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
55
  msgstr "Alles Auswählen"
56
 
57
  #: app/features/colors.php:50 app/features/fes/form.php:558
58
+ #: app/features/mec/settings.php:1007
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
61
 
62
+ #: app/features/contextual.php:55 app/features/mec.php:312
63
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
64
  #: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
65
+ #: app/features/mec/regform.php:24 app/features/mec/settings.php:41
66
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:51
67
+ #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
68
  msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
+ #: app/features/contextual.php:62 app/features/events.php:1215
72
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
73
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
74
  #: app/features/mec/regform.php:32 app/features/mec/regform.php:95
75
+ #: app/features/mec/settings.php:204 app/features/mec/styles.php:33
76
  #: app/features/mec/styling.php:60 app/features/mec/support.php:29
77
  msgid "Booking Form"
78
  msgstr "Buchungsformular"
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:40
95
  #: app/features/mec/gateways.php:97 app/features/mec/ie.php:36
96
  #: app/features/mec/messages.php:40 app/features/mec/notifications.php:39
97
+ #: app/features/mec/regform.php:39 app/features/mec/settings.php:211
98
  #: app/features/mec/styles.php:40 app/features/mec/styling.php:67
99
  #: app/features/mec/support.php:36
100
  msgid "Payment Gateways"
113
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
114
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
115
  #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:96
116
+ #: app/features/mec/regform.php:47 app/features/mec/settings.php:221
117
  #: app/features/mec/styles.php:49 app/features/mec/styling.php:76
118
  #: app/features/mec/support.php:45
119
  msgid "Notifications"
194
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
195
  "\"0\" allowfullscreen></iframe>"
196
 
197
+ #: app/features/contextual.php:117 app/features/mec/settings.php:48
198
+ #: app/features/mec/settings.php:273
199
  msgid "General Options"
200
  msgstr "Allgemeine Einstellungen"
201
 
202
+ #: app/features/contextual.php:139 app/features/mec/settings.php:60
203
+ #: app/features/mec/settings.php:540
204
  msgid "Slugs/Permalinks"
205
  msgstr "Slug/Permalinks"
206
 
207
+ #: app/features/contextual.php:152 app/features/mec/settings.php:66
208
+ #: app/features/mec/settings.php:560
209
  msgid "Event Details/Single Event Page"
210
  msgstr "Event Details / Einzelveranstaltungsseite"
211
 
212
+ #: app/features/contextual.php:166 app/features/mec/settings.php:72
213
+ #: app/features/mec/settings.php:601
214
  msgid "Currency Options"
215
  msgstr "Währungseinstellungen"
216
 
217
+ #: app/features/contextual.php:182 app/features/mec/settings.php:84
218
+ #: app/features/mec/settings.php:668
219
  msgid "Google Maps Options"
220
  msgstr "Google Maps Einstellungen"
221
 
222
+ #: app/features/contextual.php:244 app/features/mec/settings.php:90
223
+ #: app/features/mec/settings.php:742
224
  msgid "Google Recaptcha Options"
225
  msgstr "Google Recaptcha Einstellungen"
226
 
227
+ #: app/features/contextual.php:258 app/features/mec/settings.php:120
228
+ #: app/features/mec/settings.php:860
229
  msgid "Countdown Options"
230
  msgstr "Countdown Einstellungsoptionen"
231
 
232
+ #: app/features/contextual.php:268 app/features/mec/settings.php:126
233
+ #: app/features/mec/settings.php:881
234
  msgid "Social Networks"
235
  msgstr "Soziale Netzwerke"
236
 
237
+ #: app/features/contextual.php:278 app/features/mec/settings.php:132
238
+ #: app/features/mec/settings.php:906
239
  msgid "Next Event Module"
240
  msgstr "Nächstes Veranstaltung Modul"
241
 
242
+ #: app/features/contextual.php:286 app/features/mec/settings.php:138
243
+ #: app/features/mec/settings.php:934
244
  msgid "Frontend Event Submission"
245
  msgstr "Erstellung von Veranstaltungen im Frontend"
246
 
247
+ #: app/features/contextual.php:298 app/features/events.php:581
248
+ #: app/features/mec/settings.php:150
249
  msgid "Exceptional Days"
250
  msgstr "Herausgenommene Tage "
251
 
252
  #: app/features/contextual.php:308 app/features/events.php:263
253
+ #: app/features/mec/settings.php:162 app/features/mec/settings.php:1108
254
  msgid "Booking"
255
  msgstr "Buchung / Reservierung"
256
 
257
+ #: app/features/contextual.php:318 app/features/mec/settings.php:168
258
+ #: app/features/mec/settings.php:1198
259
  msgid "Coupons"
260
  msgstr "Gutscheine"
261
 
262
+ #: app/features/contextual.php:326 app/features/mec/settings.php:186
263
+ #: app/features/mec/settings.php:1339
264
  msgid "BuddyPress Integration"
265
  msgstr "Buddy Press Integration"
266
 
267
+ #: app/features/contextual.php:334 app/features/mec/settings.php:192
268
+ #: app/features/mec/settings.php:1369
269
  msgid "Mailchimp Integration"
270
  msgstr "Mailchimp Integration"
271
 
272
+ #: app/features/contextual.php:346
 
273
  msgid "MEC Activation"
274
  msgstr "MEC Aktivierung"
275
 
276
  #: app/features/events.php:132 app/features/ix/export.php:34
277
+ #: app/features/mec/dashboard.php:157 app/skins/daily_view/tpl.php:79
278
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
279
  msgid "Events"
280
  msgstr "Veranstaltungen"
288
  msgid "Event"
289
  msgstr "Veranstaltung"
290
 
291
+ #: app/features/events.php:134 app/features/mec.php:298
292
  msgid "Add Event"
293
  msgstr "Veranstaltung hinzufügen"
294
 
296
  msgid "Add New Event"
297
  msgstr "Neue Veranstaltung hinzufügen"
298
 
299
+ #: app/features/events.php:136 app/features/ix.php:3177
300
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
301
  msgid "No events found!"
302
  msgstr "Keine Veranstaltungen gefunden!"
328
  #: app/features/mec/meta_boxes/search_form.php:292
329
  #: app/features/mec/meta_boxes/search_form.php:332
330
  #: app/features/mec/meta_boxes/search_form.php:379
331
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4233
332
  #: app/libraries/skins.php:711 app/skins/single/default.php:156
333
  #: app/skins/single/default.php:363 app/skins/single/m1.php:169
334
  #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
336
  msgstr "Kategorie"
337
 
338
  #: app/features/events.php:153 app/features/fes/form.php:510
339
+ #: app/features/mec.php:300 app/features/mec/meta_boxes/filter.php:70
340
+ #: app/libraries/main.php:4232
341
  msgid "Categories"
342
  msgstr "Kategorien"
343
 
409
  msgid "Event Details"
410
  msgstr "Veranstaltungsdetails"
411
 
412
+ #: app/features/events.php:296 app/features/events.php:1984
413
+ #: app/features/events.php:2028 app/features/fes/form.php:471
414
  #: app/features/ix.php:2719 app/features/ix.php:2760
415
+ #: app/features/mec/settings.php:983 app/libraries/main.php:4265
416
  #: app/widgets/single.php:103
417
  msgid "Event Cost"
418
  msgstr ""
419
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
420
 
421
  #: app/features/events.php:299 app/features/fes/form.php:474
422
+ #: app/libraries/main.php:4266 app/skins/single/default.php:91
423
  #: app/skins/single/default.php:298 app/skins/single/m1.php:49
424
  #: app/skins/single/modern.php:184
425
  msgid "Cost"
440
  msgid "Name"
441
  msgstr "Name"
442
 
443
+ #: app/features/events.php:381 app/features/events.php:1250
444
  #: app/features/fes/form.php:429 app/features/mec/regform.php:137
445
  #: app/features/organizers.php:110 app/features/organizers.php:150
446
  #: app/features/profile/profile.php:93 app/features/speakers.php:119
447
+ #: app/features/speakers.php:179 app/libraries/main.php:1082
448
+ #: app/libraries/main.php:1163 app/libraries/main.php:2134
449
  #: app/libraries/notifications.php:560 app/modules/booking/steps/form.php:31
450
  #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
451
  #: app/skins/single/default.php:198 app/skins/single/default.php:405
459
  msgstr "Datum und Uhrzeit"
460
 
461
  #: app/features/events.php:389 app/features/events.php:393
462
+ #: app/features/events.php:1805 app/features/events.php:1984
463
+ #: app/features/events.php:2028 app/features/fes/form.php:227
464
  #: app/features/fes/form.php:231 app/features/ix.php:2719
465
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
466
+ #: app/features/mec/dashboard.php:298
467
  #: app/features/mec/meta_boxes/display_options.php:42
468
  #: app/features/mec/meta_boxes/display_options.php:139
469
  #: app/features/mec/meta_boxes/display_options.php:235
475
  #: app/features/mec/meta_boxes/display_options.php:544
476
  #: app/features/mec/meta_boxes/display_options.php:590
477
  #: app/features/mec/meta_boxes/display_options.php:633
478
+ #: app/features/mec/meta_boxes/display_options.php:800
479
+ #: app/features/mec/meta_boxes/display_options.php:869
480
  msgid "Start Date"
481
  msgstr "Start Datum"
482
 
483
  #: app/features/events.php:421 app/features/events.php:461
484
+ #: app/features/events.php:867 app/features/events.php:885
485
+ #: app/features/events.php:970 app/features/events.php:988
486
  #: app/features/fes/form.php:259 app/features/fes/form.php:299
487
  msgid "AM"
488
  msgstr "AM"
489
 
490
  #: app/features/events.php:422 app/features/events.php:462
491
+ #: app/features/events.php:868 app/features/events.php:886
492
+ #: app/features/events.php:971 app/features/events.php:989
493
  #: app/features/fes/form.php:260 app/features/fes/form.php:300
494
  msgid "PM"
495
  msgstr "PM"
496
 
497
  #: app/features/events.php:429 app/features/events.php:433
498
+ #: app/features/events.php:1806 app/features/events.php:1984
499
+ #: app/features/events.php:2028 app/features/fes/form.php:267
500
  #: app/features/fes/form.php:271 app/features/ix.php:2719
501
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
502
+ #: app/features/mec/dashboard.php:299
503
  msgid "End Date"
504
  msgstr "Ende Datum"
505
 
536
  msgstr "Wiederholend"
537
 
538
  #: app/features/events.php:491 app/features/fes/form.php:329
539
+ #: app/features/mec/dashboard.php:301 app/skins/full_calendar/tpl.php:71
540
  msgid "Daily"
541
  msgstr "Täglich"
542
 
558
  msgstr "Wöchentlich"
559
 
560
  #: app/features/events.php:496 app/features/fes/form.php:334
561
+ #: app/features/mec/dashboard.php:302 app/skins/full_calendar/tpl.php:69
562
  msgid "Monthly"
563
  msgstr "Monatlich"
564
 
565
  #: app/features/events.php:497 app/features/fes/form.php:335
566
+ #: app/features/mec/dashboard.php:303 app/skins/full_calendar/tpl.php:68
567
  msgid "Yearly"
568
  msgstr "Jährlich"
569
 
618
  msgid "Sunday"
619
  msgstr "Sonntag"
620
 
621
+ #: app/features/events.php:518 app/features/events.php:922
622
+ #: app/features/events.php:936 app/features/events.php:1026
623
+ #: app/features/ix/import_f_calendar.php:42
624
+ #: app/features/ix/import_g_calendar.php:51
625
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
626
+ msgid "Start"
627
+ msgstr "Start"
628
+
629
+ #: app/features/events.php:519 app/features/events.php:923
630
+ #: app/features/events.php:937 app/features/events.php:1027
631
+ #, fuzzy
632
+ #| msgid "Enabled"
633
+ msgid "End"
634
+ msgstr "Aktiviert"
635
 
636
+ #: app/features/events.php:520 app/features/events.php:592
637
+ #: app/features/events.php:668 app/features/events.php:723
638
+ #: app/features/events.php:844 app/features/events.php:915
639
+ #: app/features/events.php:1018 app/features/events.php:1069
640
+ #: app/features/events.php:1150 app/features/fes/form.php:357
641
  msgid "Add"
642
  msgstr "Hinzufügen"
643
 
644
+ #: app/features/events.php:521 app/features/fes/form.php:358
645
  msgid "Add certain days to event occurrence dates."
646
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
647
 
648
+ #: app/features/events.php:543 app/features/fes/form.php:380
649
  msgid "Ends Repeat"
650
  msgstr "Wiederholung endet"
651
 
652
+ #: app/features/events.php:547 app/features/fes/form.php:384
653
  msgid "Never"
654
  msgstr "Niemals"
655
 
656
+ #: app/features/events.php:552 app/features/fes/form.php:389
657
  msgid "On"
658
  msgstr "Am"
659
 
660
+ #: app/features/events.php:559 app/features/fes/form.php:396
661
  msgid "After"
662
  msgstr "Nach"
663
 
664
+ #: app/features/events.php:561 app/features/fes/form.php:398
665
  msgid "Occurrences times"
666
  msgstr " mal vorkommen"
667
 
668
+ #: app/features/events.php:562 app/features/fes/form.php:399
669
  msgid ""
670
  "The event will finish after certain repeats. For example if you set it to "
671
  "10, the event will finish after 10 repeats."
673
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
674
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
675
 
676
+ #: app/features/events.php:587
677
  msgid "Exclude certain days"
678
  msgstr "Ausschluss bestimmter Tage"
679
 
680
+ #: app/features/events.php:591 app/features/fes/form.php:356
681
+ #: app/features/profile/profile.php:31 app/libraries/main.php:1649
682
+ #: app/modules/booking/steps/tickets.php:22
683
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
684
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
685
+ #: app/skins/single/modern.php:151
686
+ msgid "Date"
687
+ msgstr "Datum"
688
+
689
+ #: app/features/events.php:593
690
  msgid "Exclude certain days from event occurrence dates."
691
  msgstr ""
692
  "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
693
  "Eventwiederholungen, oder um das Wochenende auszuschließen"
694
 
695
+ #: app/features/events.php:637 app/libraries/render.php:454
696
  msgid "Day 1"
697
  msgstr ""
698
 
699
+ #: app/features/events.php:650 app/features/mec/settings.php:1037
700
  #: app/skins/single.php:246
701
  msgid "Hourly Schedule"
702
  msgstr "Stundenplan"
703
 
704
+ #: app/features/events.php:653
705
  msgid "Add Day"
706
  msgstr ""
707
 
708
+ #: app/features/events.php:654
709
  msgid ""
710
  "Add new days for schedule. For example if your event is multiple days, you "
711
  "can add a different schedule for each day!"
712
  msgstr ""
713
 
714
+ #: app/features/events.php:660
715
  #, php-format
716
  msgid "Day %s"
717
  msgstr ""
718
 
719
+ #: app/features/events.php:663 app/features/events.php:676
720
+ #: app/features/events.php:696 app/features/events.php:718
721
+ #: app/features/events.php:734 app/features/events.php:1156
722
+ #: app/features/events.php:1178 app/features/events.php:1802
723
+ #: app/features/events.php:1984 app/features/events.php:2028
724
  #: app/features/fes/form.php:216 app/features/ix.php:2719
725
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1299
726
+ #: app/features/mec/settings.php:1319 app/features/mec/styling.php:199
727
  msgid "Title"
728
  msgstr "Titel"
729
 
730
+ #: app/features/events.php:665 app/features/events.php:678
731
+ #: app/features/events.php:698 app/features/events.php:720
732
+ #: app/features/events.php:736 app/features/events.php:910
733
+ #: app/features/events.php:926 app/features/events.php:940
734
+ #: app/features/events.php:1013 app/features/events.php:1030
735
+ #: app/features/events.php:1089 app/features/events.php:1114
736
+ #: app/features/events.php:1167 app/features/events.php:1189
737
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1248
738
+ #: app/features/mec/settings.php:1271 app/features/mec/settings.php:1310
739
+ #: app/features/mec/settings.php:1330 app/libraries/main.php:2113
740
+ #: app/libraries/main.php:2142 app/libraries/main.php:2171
741
+ #: app/libraries/main.php:2200 app/libraries/main.php:2222
742
+ #: app/libraries/main.php:2253 app/libraries/main.php:2297
743
+ #: app/libraries/main.php:2341 app/libraries/main.php:2388
744
+ #: app/libraries/main.php:2426
745
  msgid "Remove"
746
  msgstr "Entfernen"
747
 
748
+ #: app/features/events.php:669 app/features/events.php:724
749
  msgid "Add new hourly schedule row"
750
  msgstr "Neue Stundenplan-Zeile hinzufügen"
751
 
752
+ #: app/features/events.php:674 app/features/events.php:694
753
+ #: app/features/events.php:732
754
  msgid "From e.g. 8:15"
755
  msgstr "Von z.B. 08:15 Uhr"
756
 
757
+ #: app/features/events.php:675 app/features/events.php:695
758
+ #: app/features/events.php:733
759
  msgid "To e.g. 8:45"
760
  msgstr "bis zum Beispiel 08:45 Uhr"
761
 
762
+ #: app/features/events.php:677 app/features/events.php:697
763
+ #: app/features/events.php:735 app/features/events.php:891
764
+ #: app/features/events.php:994
765
  msgid "Description"
766
  msgstr "Beschreibung"
767
 
768
+ #: app/features/events.php:681 app/features/events.php:701
769
+ #: app/features/events.php:739 app/features/fes/form.php:603
770
+ #: app/features/mec.php:308 app/features/mec/settings.php:78
771
+ #: app/features/mec/settings.php:1031 app/features/speakers.php:57
772
+ #: app/libraries/main.php:4240 app/modules/speakers/details.php:18
773
  msgid "Speakers"
774
  msgstr ""
775
 
776
+ #: app/features/events.php:715 app/features/events.php:719
777
  msgid "Day :dd:"
778
  msgstr ""
779
 
780
+ #: app/features/events.php:766 app/features/fes/form.php:448
781
+ #: app/features/mec/settings.php:977
782
  msgid "Event Links"
783
  msgstr "Veranstaltungslinks"
784
 
785
+ #: app/features/events.php:768 app/features/fes/form.php:450
786
+ #: app/libraries/main.php:4263
787
  msgid "Event Link"
788
  msgstr "Veranstaltungslink"
789
 
790
+ #: app/features/events.php:769 app/features/events.php:774
791
  #: app/features/fes/form.php:451 app/features/fes/form.php:456
792
  msgid "eg. http://yoursite.com/your-event"
793
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
794
 
795
+ #: app/features/events.php:770 app/features/fes/form.php:452
796
  msgid ""
797
  "If you fill it, it will be replaced instead of default event page link. "
798
  "Insert full link including http(s)://"
801
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
802
  "einschließlich http(s)://"
803
 
804
+ #: app/features/events.php:773 app/features/fes/form.php:455
805
+ #: app/libraries/main.php:4264 app/skins/single/default.php:105
806
  #: app/skins/single/default.php:312 app/skins/single/m1.php:190
807
  #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
808
  #: app/widgets/single.php:107
809
  msgid "More Info"
810
  msgstr "Mehr Informationen"
811
 
812
+ #: app/features/events.php:775 app/features/fes/form.php:457
813
  msgid "More Information"
814
  msgstr "z.B. Noch mehr Informationen "
815
 
816
+ #: app/features/events.php:777 app/features/fes/form.php:459
817
  msgid "Current Window"
818
  msgstr "Aktuelles Fenster"
819
 
820
+ #: app/features/events.php:778 app/features/fes/form.php:460
821
  msgid "New Window"
822
  msgstr "Neues Fenster"
823
 
824
+ #: app/features/events.php:780 app/features/fes/form.php:462
825
  msgid ""
826
  "If you fill it, it will be shown in event details page as an optional link. "
827
  "Insert full link including http(s)://"
832
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
833
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
834
 
835
+ #: app/features/events.php:811
836
  msgid "Total booking limits"
837
  msgstr "Gesamt Verfügbare Plätze"
838
 
839
+ #: app/features/events.php:816 app/features/events.php:908
840
+ #: app/features/events.php:1011 app/modules/booking/default.php:81
841
+ #: app/modules/booking/steps/tickets.php:40
842
+ #: app/skins/available_spot/tpl.php:133
843
  msgid "Unlimited"
844
  msgstr "Unlimitiert"
845
 
846
+ #: app/features/events.php:818
847
  msgid "100"
848
  msgstr "z.B. 100"
849
 
850
+ #: app/features/events.php:836 app/libraries/book.php:60
851
+ #: app/libraries/main.php:4268 app/modules/booking/steps/tickets.php:40
852
  msgid "Tickets"
853
  msgstr "Tickets"
854
 
855
+ #: app/features/events.php:839
856
  msgid ""
857
  "You're translating an event so MEC will use the original event for tickets "
858
  "and booking. You can only translate the ticket name and description. Please "
859
  "define exact tickets that you defined in the original event here."
860
  msgstr ""
861
 
862
+ #: app/features/events.php:850 app/features/events.php:953
863
  msgid "Ticket Name"
864
  msgstr "Ticket Name"
865
 
866
+ #: app/features/events.php:854 app/features/events.php:957
867
+ #: app/features/events.php:1984 app/features/events.php:2028
868
  #: app/features/ix.php:2719 app/features/ix.php:2760
869
  msgid "Start Time"
870
  msgstr "Uhrzeit des Beginns"
871
 
872
+ #: app/features/events.php:872 app/features/events.php:975
873
+ #: app/features/events.php:1984 app/features/events.php:2028
874
  #: app/features/ix.php:2719 app/features/ix.php:2760
875
  msgid "End Time"
876
  msgstr "Uhrzeit Ende"
877
 
878
+ #: app/features/events.php:895 app/features/events.php:924
879
+ #: app/features/events.php:938 app/features/events.php:998
880
+ #: app/features/events.php:1028 app/features/events.php:1160
881
+ #: app/features/events.php:1182 app/features/mec/settings.php:1303
882
+ #: app/features/mec/settings.php:1323
883
  msgid "Price"
884
  msgstr "Preis"
885
 
886
+ #: app/features/events.php:896 app/features/events.php:999
887
  msgid "Insert 0 for free ticket. Only numbers please."
888
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
889
 
890
+ #: app/features/events.php:899 app/features/events.php:1002
891
  msgid "Price Label"
892
  msgstr "Preisschild"
893
 
894
+ #: app/features/events.php:900 app/features/events.php:1003
895
  msgid "For showing on website. e.g. $15"
896
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
897
 
898
+ #: app/features/events.php:904 app/features/events.php:1007
899
  msgid "Available Tickets"
900
  msgstr "Verfügbare Tickets: %s "
901
 
902
+ #: app/features/events.php:914 app/features/events.php:1017
903
  #, fuzzy
904
  #| msgid "Price Label"
905
  msgid "Price per Date"
906
  msgstr "Preisschild"
907
 
908
+ #: app/features/events.php:925 app/features/events.php:939
909
+ #: app/features/events.php:1029 app/features/labels.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
910
  #: app/features/mec/meta_boxes/display_options.php:660
911
  #: app/features/mec/meta_boxes/search_form.php:52
912
  #: app/features/mec/meta_boxes/search_form.php:99
920
  msgid "Label"
921
  msgstr "Label"
922
 
923
+ #: app/features/events.php:1059
924
  msgid "Fees"
925
  msgstr "Gebühren"
926
 
927
+ #: app/features/events.php:1064 app/features/events.php:1145
928
+ #: app/features/events.php:1220
929
  msgid "Inherit from global options"
930
  msgstr "Aus den globalen Einstellungen übernehmen"
931
 
932
+ #: app/features/events.php:1075 app/features/events.php:1100
933
+ #: app/features/mec/settings.php:1234 app/features/mec/settings.php:1257
934
  msgid "Fee Title"
935
  msgstr "Gebühren Name"
936
 
937
+ #: app/features/events.php:1079 app/features/events.php:1104
938
+ #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1261
939
  msgid "Amount"
940
  msgstr "Betrag"
941
 
942
+ #: app/features/events.php:1080 app/features/events.php:1105
943
+ #: app/features/mec/settings.php:1239 app/features/mec/settings.php:1262
944
  msgid ""
945
  "Fee amount, considered as fixed amount if you set the type to amount "
946
  "otherwise considered as percentage"
948
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
949
  "sonst als Prozentsatz"
950
 
951
+ #: app/features/events.php:1084 app/features/events.php:1109
952
+ #: app/features/mec/settings.php:1243 app/features/mec/settings.php:1266
953
  msgid "Percent"
954
  msgstr "Prozent"
955
 
956
+ #: app/features/events.php:1085 app/features/events.php:1110
957
+ #: app/features/mec/settings.php:1244 app/features/mec/settings.php:1267
958
  msgid "Amount (Per Ticket)"
959
  msgstr "Betrag (pro Ticket)"
960
 
961
+ #: app/features/events.php:1086 app/features/events.php:1111
962
+ #: app/features/mec/settings.php:1245 app/features/mec/settings.php:1268
963
  msgid "Amount (Per Booking)"
964
  msgstr "Betrag (pro Buchung)"
965
 
966
+ #: app/features/events.php:1140 app/features/mec/settings.php:1055
967
  msgid "Ticket Variations / Options"
968
  msgstr ""
969
 
970
+ #: app/features/events.php:1161 app/features/events.php:1183
971
+ #: app/features/mec/settings.php:1304 app/features/mec/settings.php:1324
972
  #, fuzzy
973
  #| msgid "Option"
974
  msgid "Option Price"
975
  msgstr "Option"
976
 
977
+ #: app/features/events.php:1164 app/features/events.php:1186
978
+ #: app/features/mec/settings.php:1307 app/features/mec/settings.php:1327
979
  #, fuzzy
980
  #| msgid "Amount (Per Ticket)"
981
  msgid "Maximum Per Ticket"
982
  msgstr "Betrag (pro Ticket)"
983
 
984
+ #: app/features/events.php:1165 app/features/events.php:1187
985
+ #: app/features/mec/settings.php:1308 app/features/mec/settings.php:1328
986
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
987
  msgstr ""
988
 
989
+ #: app/features/events.php:1249 app/features/mec/regform.php:136
990
+ #: app/libraries/main.php:2105
991
  msgid "Text"
992
  msgstr "Text"
993
 
994
+ #: app/features/events.php:1251 app/features/mec/regform.php:138
995
  #: app/features/organizers.php:102 app/features/organizers.php:146
996
  #: app/features/speakers.php:111 app/features/speakers.php:175
997
+ #: app/features/speakers.php:244 app/libraries/main.php:2163
998
  msgid "Tel"
999
  msgstr "Tel"
1000
 
1001
+ #: app/features/events.php:1252 app/features/mec/regform.php:139
1002
+ #: app/libraries/main.php:2192
1003
  msgid "Textarea"
1004
  msgstr "Textbereich"
1005
 
1006
+ #: app/features/events.php:1253 app/features/mec/regform.php:140
1007
+ #: app/libraries/main.php:2245
1008
  msgid "Checkboxes"
1009
  msgstr "Checkboxes"
1010
 
1011
+ #: app/features/events.php:1254 app/features/mec/regform.php:141
1012
+ #: app/libraries/main.php:2289
1013
  msgid "Radio Buttons"
1014
  msgstr "Radio Buttons"
1015
 
1016
+ #: app/features/events.php:1255 app/features/mec/meta_boxes/search_form.php:34
1017
  #: app/features/mec/meta_boxes/search_form.php:41
1018
  #: app/features/mec/meta_boxes/search_form.php:48
1019
  #: app/features/mec/meta_boxes/search_form.php:55
1059
  #: app/features/mec/meta_boxes/search_form.php:443
1060
  #: app/features/mec/meta_boxes/search_form.php:450
1061
  #: app/features/mec/meta_boxes/search_form.php:457
1062
+ #: app/features/mec/regform.php:142 app/libraries/main.php:2333
1063
  msgid "Dropdown"
1064
  msgstr "Dropdown"
1065
 
1066
+ #: app/features/events.php:1256 app/features/mec/regform.php:143
1067
+ #: app/libraries/main.php:2380
1068
  msgid "Agreement"
1069
  msgstr "Zustimmung"
1070
 
1071
+ #: app/features/events.php:1257 app/features/mec/regform.php:144
1072
+ #: app/libraries/main.php:2221
1073
  msgid "Paragraph"
1074
  msgstr "Absatz"
1075
 
1076
+ #: app/features/events.php:1748 app/features/events.php:1763
1077
+ #: app/features/events.php:1777
1078
  #, php-format
1079
  msgid "Show all %s"
1080
  msgstr "Zeige alle %s"
1081
 
1082
+ #: app/features/events.php:1748
1083
  msgid "labels"
1084
  msgstr "Labels + Eventstatus"
1085
 
1086
+ #: app/features/events.php:1763
1087
  msgid "locations"
1088
  msgstr "Orte"
1089
 
1090
+ #: app/features/events.php:1777
1091
  msgid "organizers"
1092
  msgstr "Veranstalter"
1093
 
1094
+ #: app/features/events.php:1803 app/features/events.php:1984
1095
+ #: app/features/events.php:2028 app/features/ix.php:2719
1096
  #: app/features/ix.php:2760 app/features/locations.php:58
1097
  #: app/features/locations.php:229 app/features/locations.php:281
1098
+ #: app/features/locations.php:283
1099
  #: app/features/mec/meta_boxes/display_options.php:661
1100
  #: app/features/mec/meta_boxes/search_form.php:38
1101
  #: app/features/mec/meta_boxes/search_form.php:85
1105
  #: app/features/mec/meta_boxes/search_form.php:299
1106
  #: app/features/mec/meta_boxes/search_form.php:339
1107
  #: app/features/mec/meta_boxes/search_form.php:386
1108
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1643
1109
+ #: app/libraries/main.php:4237 app/libraries/skins.php:737
1110
  #: app/skins/single/default.php:141 app/skins/single/default.php:348
1111
  #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1112
  #: app/skins/single/modern.php:83
1113
  msgid "Location"
1114
  msgstr "Ort"
1115
 
1116
+ #: app/features/events.php:1804 app/features/events.php:1984
1117
+ #: app/features/events.php:2028 app/features/ix.php:2719
1118
+ #: app/features/ix.php:2760 app/features/mec/meta_boxes/display_options.php:662
 
1119
  #: app/features/mec/meta_boxes/search_form.php:45
1120
  #: app/features/mec/meta_boxes/search_form.php:92
1121
  #: app/features/mec/meta_boxes/search_form.php:139
1127
  #: app/features/mec/meta_boxes/search_form.php:440
1128
  #: app/features/organizers.php:58 app/features/organizers.php:199
1129
  #: app/features/organizers.php:255 app/features/organizers.php:257
1130
+ #: app/libraries/main.php:4239 app/libraries/skins.php:763
1131
  #: app/skins/single/default.php:181 app/skins/single/default.php:388
1132
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1133
  #: app/skins/single/modern.php:21
1134
  msgid "Organizer"
1135
  msgstr "Veranstalter"
1136
 
1137
+ #: app/features/events.php:1808
1138
  msgid "Repeat"
1139
  msgstr "Wiederholen"
1140
 
1141
+ #: app/features/events.php:1809
1142
  msgid "Author"
1143
  msgstr "Autor"
1144
 
1145
+ #: app/features/events.php:1919 app/features/events.php:1920
1146
  msgid "iCal Export"
1147
  msgstr "ical Export"
1148
 
1149
+ #: app/features/events.php:1922 app/features/events.php:1923
1150
  msgid "CSV Export"
1151
  msgstr "CSV Export"
1152
 
1153
+ #: app/features/events.php:1925 app/features/events.php:1926
1154
  msgid "MS Excel Export"
1155
  msgstr "MS Excel Export"
1156
 
1157
+ #: app/features/events.php:1928 app/features/events.php:1929
1158
  msgid "XML Export"
1159
  msgstr "XML Export"
1160
 
1161
+ #: app/features/events.php:1931 app/features/events.php:1932
1162
  msgid "JSON Export"
1163
  msgstr "JSON Export"
1164
 
1165
+ #: app/features/events.php:1934 app/features/events.php:1935
1166
  msgid "Duplicate"
1167
  msgstr "Kopie"
1168
 
1169
+ #: app/features/events.php:1984 app/features/events.php:2028
1170
  #: app/features/ix.php:2719 app/features/ix.php:2760
1171
  #: app/features/labels.php:176 app/features/locations.php:228
1172
  #: app/features/organizers.php:198 app/features/speakers.php:241
1173
  msgid "ID"
1174
  msgstr "ID"
1175
 
1176
+ #: app/features/events.php:1984 app/features/events.php:2028
1177
  #: app/features/ix.php:2719 app/features/ix.php:2760
1178
  msgid "Link"
1179
  msgstr "Link"
1180
 
1181
+ #: app/features/events.php:1984 app/features/events.php:2028
1182
  #, php-format
1183
  msgid "%s Tel"
1184
  msgstr "%s Tel"
1185
 
1186
+ #: app/features/events.php:1984 app/features/events.php:2028
1187
  #, php-format
1188
  msgid "%s Email"
1189
  msgstr "%s Email"
1263
  msgid "eg. John Smith"
1264
  msgstr "z.B. Max Mustermann"
1265
 
1266
+ #: app/features/fes/form.php:488 app/features/mec/settings.php:989
1267
  msgid "Featured Image"
1268
  msgstr "Ausgewähltes Bild"
1269
 
1272
  msgstr "Bild entfernen"
1273
 
1274
  #: app/features/fes/form.php:535 app/features/labels.php:61
1275
+ #: app/features/labels.php:220 app/features/mec.php:301
1276
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4234
1277
  #: app/skins/single/default.php:120 app/skins/single/default.php:327
1278
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1279
  msgid "Labels"
1280
  msgstr "Labels"
1281
 
1282
+ #: app/features/fes/form.php:580 app/features/mec.php:299
1283
  #: app/features/mec/meta_boxes/filter.php:138
1284
  msgid "Tags"
1285
  msgstr "Schlagworte"
1317
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1318
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1319
  #: app/features/mec/notifications.php:76 app/features/mec/regform.php:75
1320
+ #: app/features/mec/settings.php:249 app/features/mec/styles.php:77
1321
  #: app/features/mec/styling.php:104 app/features/mec/support.php:73
1322
  msgid "Import / Export"
1323
  msgstr "Import / Export"
1350
  msgid "Both of API key and Calendar ID are required!"
1351
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1352
 
1353
+ #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3184
1354
  msgid "Please select some events to import!"
1355
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1356
 
1401
  msgid "%s events failed to add for following reasons: %s"
1402
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1403
 
1404
+ #: app/features/ix.php:3147
1405
  #, fuzzy
1406
  #| msgid "Please insert your facebook page's link."
1407
  msgid "Please insert your Facebook page's link."
1408
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1409
 
1410
+ #: app/features/ix.php:3156
1411
  #, fuzzy
1412
  #| msgid ""
1413
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1419
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1420
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1421
 
1422
+ #: app/features/ix.php:3188
1423
  msgid "Please insert your facebook page's link."
1424
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1425
 
1426
+ #: app/features/ix.php:3193
1427
  msgid ""
1428
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1429
  "valid facebook page link."
1466
 
1467
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1468
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1469
+ #: app/features/ix/import_f_calendar.php:82
1470
  #: app/features/ix/import_g_calendar.php:16
1471
  #: app/features/ix/import_g_calendar.php:103
1472
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1494
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1495
  "exportieren."
1496
 
1497
+ #: app/features/ix/export.php:25 app/features/mec/settings.php:790
1498
  msgid "iCal"
1499
  msgstr "iCal"
1500
 
1574
  msgstr "Authentifizierung"
1575
 
1576
  #: app/features/ix/export_g_calendar.php:57
1577
+ #: app/features/ix/import_f_calendar.php:56
1578
  #: app/features/ix/import_g_calendar.php:64
1579
  #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1580
  msgid "Select All"
1581
  msgstr "Alles Auswählen"
1582
 
1583
  #: app/features/ix/export_g_calendar.php:58
1584
+ #: app/features/ix/import_f_calendar.php:57
1585
  #: app/features/ix/import_g_calendar.php:65
1586
  #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1587
  msgid "Deselect All"
1588
  msgstr "Alle abwählen"
1589
 
1590
  #: app/features/ix/export_g_calendar.php:59
1591
+ #: app/features/ix/import_f_calendar.php:58
1592
  #: app/features/ix/import_g_calendar.php:66
1593
  #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1594
  msgid "Toggle"
1604
  msgid "Add to Google Calendar"
1605
  msgstr "Zum Google Kalender hinzufügen"
1606
 
1607
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1480
1608
  msgid "Checking ..."
1609
  msgstr "Überprüfung"
1610
 
1648
  msgid "ICS Feed"
1649
  msgstr ""
1650
 
1651
+ #: app/features/ix/import.php:46 app/features/mec/settings.php:671
1652
+ #: app/features/mec/settings.php:821 app/features/mec/settings.php:839
1653
+ #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1201
1654
+ #: app/features/mec/settings.php:1218 app/features/mec/settings.php:1283
1655
  #, php-format
1656
  msgid "%s is required to use this feature."
1657
  msgstr ""
1663
  #: app/features/mec/meta_boxes/display_options.php:578
1664
  #: app/features/mec/meta_boxes/display_options.php:628
1665
  #: app/features/mec/meta_boxes/display_options.php:766
1666
+ #: app/features/mec/settings.php:671 app/features/mec/settings.php:821
1667
+ #: app/features/mec/settings.php:839 app/features/mec/settings.php:1111
1668
+ #: app/features/mec/settings.php:1201 app/features/mec/settings.php:1218
1669
+ #: app/features/mec/settings.php:1283 app/libraries/skins.php:249
 
1670
  msgid "Pro version of Modern Events Calendar"
1671
  msgstr ""
1672
 
1684
  msgid "Import all of your Facebook events into MEC."
1685
  msgstr "Importiere alle Deine Facebook Events zum MEC"
1686
 
1687
+ #: app/features/ix/import_f_calendar.php:27
1688
+ #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1689
+ msgid "Documentation"
1690
+ msgstr "Dokumentation"
1691
+
1692
  #: app/features/ix/import_f_calendar.php:29
1693
+ #, fuzzy
1694
+ #| msgid "Facebook Page Link"
1695
+ msgid "Facebook Page Access Token"
1696
+ msgstr "Facebook Seiten Link"
1697
+
1698
+ #: app/features/ix/import_f_calendar.php:35
1699
  msgid "Facebook Page Link"
1700
  msgstr "Facebook Seiten Link"
1701
 
1702
+ #: app/features/ix/import_f_calendar.php:53
1703
  msgid "Facebook Events"
1704
  msgstr "Facebook events"
1705
 
1706
+ #: app/features/ix/import_f_calendar.php:54
1707
  #, php-format
1708
  msgid ""
1709
  "We found %s events for %s page. Please select your desired events to import."
1711
  "Wir haben % s Events für % s diese Seite gefunden. Bitte wählen Sie Ihre "
1712
  "gewünschten Events zum Import aus."
1713
 
1714
+ #: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
1715
  #, php-format
1716
  msgid "Event Title: %s"
1717
  msgstr "Event Title: %s"
1718
 
1719
+ #: app/features/ix/import_f_calendar.php:72
1720
  #: app/features/ix/import_g_calendar.php:87
1721
  #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1722
  msgid "Import Options"
1723
  msgstr "Import Optionen"
1724
 
1725
+ #: app/features/ix/import_f_calendar.php:76
1726
  #: app/features/ix/import_g_calendar.php:97
1727
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1728
  msgid "Import Locations"
1729
  msgstr "Orte importieren"
1730
 
1731
+ #: app/features/ix/import_f_calendar.php:92
1732
  #, php-format
1733
  msgid "%s events successfully imported to your website from Facebook Calendar."
1734
  msgstr ""
1998
  #: app/features/mec/meta_boxes/display_options.php:684
1999
  #: app/features/mec/meta_boxes/display_options.php:723
2000
  #: app/features/mec/meta_boxes/display_options.php:791
2001
+ #: app/features/mec/meta_boxes/display_options.php:859
2002
  msgid "Style"
2003
  msgstr "Style"
2004
 
2007
  msgstr ""
2008
 
2009
  #: app/features/labels.php:116 app/features/labels.php:141
2010
+ #: app/skins/agenda/render.php:36 app/skins/available_spot/tpl.php:31
2011
+ #: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:24
2012
  #: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:22
2013
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
2014
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
2015
  #: app/skins/monthly_view/calendar_clean.php:81
2016
+ #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:48
2017
+ #: app/skins/timetable/render.php:32 app/skins/timetable/render.php:129
2018
  #: app/skins/weekly_view/render.php:30 app/skins/yearly_view/render.php:47
2019
  #, fuzzy
2020
  #| msgid "Featured Image"
2022
  msgstr "Ausgewähltes Bild"
2023
 
2024
  #: app/features/labels.php:117 app/features/labels.php:142
2025
+ #: app/libraries/main.php:4427 app/skins/agenda/render.php:40
2026
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:48
2027
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
2028
  #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
2029
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:32
2030
  #: app/skins/monthly_view/calendar.php:84
2031
  #: app/skins/monthly_view/calendar_clean.php:85
2032
+ #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:52
2033
+ #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:133
2034
  #: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:51
2035
  msgid "Canceled"
2036
  msgstr "Abgesagt"
2055
  msgid "Event %s"
2056
  msgstr "Event %s"
2057
 
2058
+ #: app/features/locations.php:59 app/features/mec.php:302
2059
+ #: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
2060
+ #: app/libraries/main.php:4236
2061
  msgid "Locations"
2062
  msgstr "Orte"
2063
 
2131
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2132
  "Westfalenhalle"
2133
 
2134
+ #: app/features/locations.php:298 app/features/mec/settings.php:1019
2135
  #: app/widgets/single.php:115
2136
  msgid "Event Location"
2137
  msgstr "Veranstaltungsort"
2164
  msgid "Don't show map in single event page"
2165
  msgstr "Karte in Einzelansicht nicht anzeigen"
2166
 
2167
+ #: app/features/mec.php:142
2168
+ msgid ""
2169
+ "Activation faild. Please check your purchase code or license type."
2170
+ "<br><b>Note: Your purchase code should match your licesne type.</b>"
2171
+ msgstr ""
2172
+
2173
+ #: app/features/mec.php:143
2174
+ msgid "Troubleshooting"
2175
+ msgstr ""
2176
+
2177
+ #: app/features/mec.php:182
2178
  msgid ""
2179
  "Your options is not in JSON format. Please insert correct options in this "
2180
  "field and try again."
2181
  msgstr ""
2182
 
2183
+ #: app/features/mec.php:187
2184
  #, fuzzy
2185
  #| msgid "Your booking cannot verify!"
2186
  msgid "Your options field can not be empty!"
2187
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
2188
 
2189
+ #: app/features/mec.php:191
2190
  #, fuzzy
2191
  #| msgid "Your booking successfully verified."
2192
  msgid "Your options imported successfuly."
2193
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
2194
 
2195
+ #: app/features/mec.php:283
2196
+ #, fuzzy
2197
+ #| msgid "Support"
2198
+ msgid "MEC - Support"
2199
+ msgstr "Support"
2200
+
2201
+ #: app/features/mec.php:283 app/features/mec/gateways.php:84
2202
+ #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2203
+ #: app/features/mec/notifications.php:83 app/features/mec/regform.php:82
2204
+ #: app/features/mec/settings.php:256 app/features/mec/styles.php:84
2205
+ #: app/features/mec/styling.php:111 app/features/mec/support-page.php:9
2206
+ #: app/features/mec/support.php:80 app/features/mec/support.php:93
2207
+ msgid "Support"
2208
+ msgstr "Support"
2209
+
2210
+ #: app/features/mec.php:303 app/features/mec/dashboard.php:178
2211
+ #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2212
+ #: app/libraries/main.php:4238
2213
  msgid "Organizers"
2214
  msgstr "Veranstalter"
2215
 
2216
+ #: app/features/mec.php:311 app/features/mec.php:325
2217
+ #: app/features/mec/dashboard.php:164
2218
  msgid "Shortcodes"
2219
  msgstr "Shortcodes"
2220
 
2221
+ #: app/features/mec.php:312
2222
  msgid "MEC - Settings"
2223
  msgstr "MEC - Einstellungen"
2224
 
2225
+ #: app/features/mec.php:327
2226
  msgid "Add Shortcode"
2227
  msgstr "Shortcode hinzufügen"
2228
 
2229
+ #: app/features/mec.php:328
2230
  msgid "Add New Shortcode"
2231
  msgstr "Neuen Shortcode hinzufügen"
2232
 
2233
+ #: app/features/mec.php:329
2234
  msgid "No shortcodes found!"
2235
  msgstr "Keine Shortcodes gefunden!"
2236
 
2237
+ #: app/features/mec.php:330
2238
  msgid "All Shortcodes"
2239
  msgstr "Alle Shortcodes"
2240
 
2241
+ #: app/features/mec.php:331
2242
  msgid "Edit shortcodes"
2243
  msgstr "Shortcode ändern"
2244
 
2245
+ #: app/features/mec.php:332
2246
  msgid "No shortcodes found in Trash!"
2247
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2248
 
2249
+ #: app/features/mec.php:379
2250
  msgid "Display Options"
2251
  msgstr "Darstellungsoptionen"
2252
 
2253
+ #: app/features/mec.php:380
2254
  msgid "Filter Options"
2255
  msgstr "Filteroptionen"
2256
 
2257
+ #: app/features/mec.php:382
2258
  msgid "Search Form"
2259
  msgstr "Suche Formular"
2260
 
2261
+ #: app/features/mec.php:709
2262
  msgid "Display content's images as Popup"
2263
  msgstr ""
2264
 
2265
+ #: app/features/mec.php:722
2266
  msgid "Single Event Display Method"
2267
  msgstr "Single Event Anzeigemethode"
2268
 
2269
+ #: app/features/mec.php:727
2270
  msgid "Separate Window"
2271
  msgstr "Separates Fenster"
2272
 
2273
+ #: app/features/mec.php:728
2274
  msgid "Modal 1"
2275
  msgstr "Modal 1"
2276
 
2277
+ #: app/features/mec/dashboard.php:60
2278
  #, php-format
2279
  msgid "Welcome %s"
2280
  msgstr "Willkommen %s"
2281
 
2282
+ #: app/features/mec/dashboard.php:63
2283
  #, php-format
2284
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2285
  msgstr ""
2286
 
2287
+ #: app/features/mec/dashboard.php:63
2288
  #, fuzzy
2289
  #| msgid "Modern Events Calendar"
2290
  msgid "Modern Events Calendar (Lite)"
2291
  msgstr "Moderner Event Kalender "
2292
 
2293
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:191
2294
  msgctxt "plugin rate"
2295
  msgid "Rate the plugin ★★★★★"
2296
  msgstr ""
2297
 
2298
+ #: app/features/mec/dashboard.php:75 app/features/mec/support-page.php:21
2299
  msgid "Version"
2300
  msgstr "Version"
2301
 
2302
+ #: app/features/mec/dashboard.php:84
2303
  #, php-format
2304
  msgid ""
2305
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2307
  "Spots, etc you should %s to the Pro version."
2308
  msgstr ""
2309
 
2310
+ #: app/features/mec/dashboard.php:84
2311
  msgid "lite"
2312
  msgstr ""
2313
 
2314
+ #: app/features/mec/dashboard.php:84
2315
  msgid "upgrade"
2316
  msgstr ""
2317
 
2318
+ #: app/features/mec/dashboard.php:94
2319
+ #, fuzzy
2320
+ #| msgid "MEC Activation"
2321
+ msgid "MEC Activate"
2322
+ msgstr "MEC Aktivierung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2323
 
2324
+ #: app/features/mec/dashboard.php:97
2325
  msgid ""
2326
+ "In order to use all plugin features and options, please enter your purchase "
2327
+ "code."
 
 
 
 
 
 
 
 
2328
  msgstr ""
2329
 
2330
+ #: app/features/mec/dashboard.php:189 app/features/mec/settings.php:518
 
 
 
 
2331
  msgid "Upcoming Events"
2332
  msgstr "Bevorstehende Events"
2333
 
2334
+ #: app/features/mec/dashboard.php:213
2335
  msgid "Popular Gateways"
2336
  msgstr "Beliebte Zahlungsgateways"
2337
 
2338
+ #: app/features/mec/dashboard.php:264
2339
  msgid "Total Bookings"
2340
  msgstr "Gesamte Buchungen"
2341
 
2342
+ #: app/features/mec/dashboard.php:291
2343
  msgid "This Month"
2344
  msgstr "Diesen Monat"
2345
 
2346
+ #: app/features/mec/dashboard.php:292
2347
  msgid "Last Month"
2348
  msgstr "Letzten Monat"
2349
 
2350
+ #: app/features/mec/dashboard.php:293
2351
  msgid "This Year"
2352
  msgstr "Diese Jahr"
2353
 
2354
+ #: app/features/mec/dashboard.php:294
2355
  msgid "Last Year"
2356
  msgstr "Letztes Jahr"
2357
 
2358
+ #: app/features/mec/dashboard.php:306
2359
  msgid "Bar"
2360
  msgstr "Bar"
2361
 
2362
+ #: app/features/mec/dashboard.php:307
2363
  msgid "Line"
2364
  msgstr "Linie"
2365
 
2366
+ #: app/features/mec/dashboard.php:309
2367
  msgid "Filter"
2368
  msgstr "Filter"
2369
 
2370
+ #: app/features/mec/dashboard.php:325
2371
  #, php-format
2372
  msgid "Total Sells (%s)"
2373
  msgstr "Alle Verkäufe (%s)"
2374
 
2375
+ #: app/features/mec/dashboard.php:346
2376
  msgid "Change Log"
2377
  msgstr "Änderungsprotokoll"
2378
 
2379
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2380
  #: app/features/mec/messages.php:56 app/features/mec/notifications.php:55
2381
+ #: app/features/mec/regform.php:54 app/features/mec/settings.php:228
2382
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:83
2383
  #: app/features/mec/support.php:52
2384
  msgid "Styling Options"
2386
 
2387
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2388
  #: app/features/mec/messages.php:63 app/features/mec/notifications.php:62
2389
+ #: app/features/mec/regform.php:61 app/features/mec/settings.php:235
2390
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:90
2391
  #: app/features/mec/support.php:59
2392
  msgid "Custom CSS"
2395
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2396
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2397
  #: app/features/mec/notifications.php:69 app/features/mec/regform.php:68
2398
+ #: app/features/mec/settings.php:242 app/features/mec/styles.php:70
2399
  #: app/features/mec/styling.php:97 app/features/mec/support.php:66
2400
  msgid "Messages"
2401
  msgstr "Nachrichten"
2402
 
 
 
 
 
 
 
 
 
2403
  #: app/features/mec/gateways.php:111 app/features/mec/gateways.php:159
2404
  #: app/features/mec/gateways.php:169 app/features/mec/messages.php:11
2405
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:161
2407
  #: app/features/mec/notifications.php:436
2408
  #: app/features/mec/notifications.php:445 app/features/mec/regform.php:150
2409
  #: app/features/mec/regform.php:227 app/features/mec/regform.php:236
2410
+ #: app/features/mec/settings.php:28 app/features/mec/settings.php:1406
2411
+ #: app/features/mec/settings.php:1416 app/features/mec/settings.php:1497
2412
+ #: app/features/mec/settings.php:1511 app/features/mec/styles.php:103
2413
  #: app/features/mec/styles.php:147 app/features/mec/styles.php:156
2414
  #: app/features/mec/styling.php:309 app/features/mec/styling.php:379
2415
  #: app/features/mec/styling.php:388
2418
 
2419
  #: app/features/mec/gateways.php:138 app/features/mec/messages.php:145
2420
  #: app/features/mec/notifications.php:421 app/features/mec/regform.php:211
2421
+ #: app/features/mec/settings.php:1475 app/features/mec/styles.php:131
2422
  #: app/features/mec/styling.php:362
2423
  msgid "Saved"
2424
  msgstr "Gesichert"
2425
 
2426
  #: app/features/mec/gateways.php:139 app/features/mec/messages.php:146
2427
  #: app/features/mec/notifications.php:422 app/features/mec/regform.php:212
2428
+ #: app/features/mec/settings.php:1476 app/features/mec/styles.php:132
2429
  #: app/features/mec/styling.php:363
2430
  msgid "Settings Saved!"
2431
  msgstr ""
2478
  #: app/features/mec/meta_boxes/display_options.php:129
2479
  #: app/features/mec/meta_boxes/display_options.php:431
2480
  #: app/features/mec/meta_boxes/display_options.php:686
2481
+ #: app/features/mec/settings.php:394 app/features/mec/settings.php:418
2482
+ #: app/features/mec/settings.php:427 app/features/mec/settings.php:462
2483
+ #: app/features/mec/settings.php:486 app/features/mec/settings.php:495
2484
  msgid "Classic"
2485
  msgstr "Klassisch"
2486
 
2487
  #: app/features/mec/meta_boxes/display_options.php:35
2488
  #: app/features/mec/meta_boxes/display_options.php:131
2489
+ #: app/features/mec/settings.php:419 app/features/mec/settings.php:429
2490
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:497
2491
  msgid "Minimal"
2492
  msgstr "Minimal"
2493
 
2497
  #: app/features/mec/meta_boxes/display_options.php:433
2498
  #: app/features/mec/meta_boxes/display_options.php:585
2499
  #: app/features/mec/meta_boxes/display_options.php:688
2500
+ #: app/features/mec/settings.php:396 app/features/mec/settings.php:409
2501
+ #: app/features/mec/settings.php:420 app/features/mec/settings.php:430
2502
+ #: app/features/mec/settings.php:464 app/features/mec/settings.php:477
2503
+ #: app/features/mec/settings.php:488 app/features/mec/settings.php:498
2504
  msgid "Modern"
2505
  msgstr "Modern"
2506
 
2507
  #: app/features/mec/meta_boxes/display_options.php:37
2508
+ #: app/features/mec/settings.php:421 app/features/mec/settings.php:489
2509
  msgid "Standard"
2510
  msgstr "Standard"
2511
 
2512
  #: app/features/mec/meta_boxes/display_options.php:38
2513
+ #: app/features/mec/settings.php:422 app/features/mec/settings.php:490
2514
  msgid "Accordion"
2515
  msgstr "Accordion"
2516
 
2520
  #: app/features/mec/meta_boxes/display_options.php:478
2521
  #: app/features/mec/meta_boxes/display_options.php:511
2522
  #: app/features/mec/meta_boxes/display_options.php:635
2523
+ #: app/features/mec/meta_boxes/display_options.php:802
2524
+ #: app/features/mec/meta_boxes/display_options.php:871
2525
  msgid "Today"
2526
  msgstr "Heute"
2527
 
2531
  #: app/features/mec/meta_boxes/display_options.php:479
2532
  #: app/features/mec/meta_boxes/display_options.php:512
2533
  #: app/features/mec/meta_boxes/display_options.php:636
2534
+ #: app/features/mec/meta_boxes/display_options.php:803
2535
+ #: app/features/mec/meta_boxes/display_options.php:872
2536
  msgid "Tomorrow"
2537
  msgstr "Morgen"
2538
 
2546
  #: app/features/mec/meta_boxes/display_options.php:548
2547
  #: app/features/mec/meta_boxes/display_options.php:594
2548
  #: app/features/mec/meta_boxes/display_options.php:637
2549
+ #: app/features/mec/meta_boxes/display_options.php:804
2550
+ #: app/features/mec/meta_boxes/display_options.php:873
2551
  msgid "Start of Current Month"
2552
  msgstr "Mit Beginn des laufenden Monats"
2553
 
2561
  #: app/features/mec/meta_boxes/display_options.php:549
2562
  #: app/features/mec/meta_boxes/display_options.php:595
2563
  #: app/features/mec/meta_boxes/display_options.php:638
2564
+ #: app/features/mec/meta_boxes/display_options.php:805
2565
+ #: app/features/mec/meta_boxes/display_options.php:874
2566
  msgid "Start of Next Month"
2567
  msgstr "Mit Beginn des kommenden Monats"
2568
 
2577
  #: app/features/mec/meta_boxes/display_options.php:550
2578
  #: app/features/mec/meta_boxes/display_options.php:596
2579
  #: app/features/mec/meta_boxes/display_options.php:639
2580
+ #: app/features/mec/meta_boxes/display_options.php:806
2581
+ #: app/features/mec/meta_boxes/display_options.php:875
2582
  msgid "On a certain date"
2583
  msgstr "An einem bestimmten Tag"
2584
 
2593
  #: app/features/mec/meta_boxes/display_options.php:553
2594
  #: app/features/mec/meta_boxes/display_options.php:599
2595
  #: app/features/mec/meta_boxes/display_options.php:642
2596
+ #: app/features/mec/meta_boxes/display_options.php:809
2597
+ #: app/features/mec/meta_boxes/display_options.php:878
2598
  #, php-format
2599
  msgid "eg. %s"
2600
  msgstr "z.B. %s"
2621
  #: app/features/mec/meta_boxes/display_options.php:736
2622
  #: app/features/mec/meta_boxes/display_options.php:741
2623
  #: app/features/mec/meta_boxes/display_options.php:771
2624
+ #: app/features/mec/meta_boxes/display_options.php:813
2625
+ #: app/features/mec/meta_boxes/display_options.php:820
2626
+ #: app/features/mec/meta_boxes/display_options.php:825
2627
+ #: app/features/mec/meta_boxes/display_options.php:882
2628
+ #: app/features/mec/meta_boxes/display_options.php:889
2629
+ #: app/features/mec/meta_boxes/display_options.php:896
2630
+ #: app/features/mec/meta_boxes/display_options.php:903
2631
+ #: app/features/mec/meta_boxes/display_options.php:910
2632
  msgid "Date Formats"
2633
  msgstr "Datumsformate"
2634
 
2644
  #: app/features/mec/meta_boxes/display_options.php:71
2645
  #: app/features/mec/meta_boxes/display_options.php:173
2646
  #: app/features/mec/meta_boxes/display_options.php:185
2647
+ #: app/features/mec/meta_boxes/display_options.php:886
2648
+ #: app/features/mec/meta_boxes/display_options.php:893
2649
+ #: app/features/mec/meta_boxes/display_options.php:900
2650
+ #: app/features/mec/meta_boxes/display_options.php:907
2651
+ #: app/features/mec/meta_boxes/display_options.php:914
2652
  msgid "Default values are d, F and l"
2653
  msgstr ""
2654
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
2666
  #: app/features/mec/meta_boxes/display_options.php:204
2667
  #: app/features/mec/meta_boxes/display_options.php:254
2668
  #: app/features/mec/meta_boxes/display_options.php:652
2669
+ #: app/features/mec/meta_boxes/display_options.php:839
2670
+ #: app/features/mec/meta_boxes/display_options.php:917
2671
  msgid "Limit"
2672
  msgstr "Limit"
2673
 
2679
  #: app/features/mec/meta_boxes/display_options.php:524
2680
  #: app/features/mec/meta_boxes/display_options.php:558
2681
  #: app/features/mec/meta_boxes/display_options.php:604
2682
+ #: app/features/mec/meta_boxes/display_options.php:840
2683
+ #: app/features/mec/meta_boxes/display_options.php:918
2684
  msgid "eg. 6"
2685
  msgstr "z.B. 6"
2686
 
2707
  #: app/features/mec/meta_boxes/display_options.php:432
2708
  #: app/features/mec/meta_boxes/display_options.php:586
2709
  #: app/features/mec/meta_boxes/display_options.php:687
2710
+ #: app/features/mec/settings.php:395 app/features/mec/settings.php:410
2711
+ #: app/features/mec/settings.php:428 app/features/mec/settings.php:463
2712
+ #: app/features/mec/settings.php:478 app/features/mec/settings.php:496
2713
  msgid "Clean"
2714
  msgstr "Clean"
2715
 
2716
  #: app/features/mec/meta_boxes/display_options.php:133
2717
  #: app/features/mec/meta_boxes/display_options.php:309
2718
  #: app/features/mec/meta_boxes/display_options.php:435
2719
+ #: app/features/mec/settings.php:398 app/features/mec/settings.php:431
2720
+ #: app/features/mec/settings.php:466 app/features/mec/settings.php:499
2721
  msgid "Simple"
2722
  msgstr "Schlicht"
2723
 
2728
  #: app/features/mec/meta_boxes/display_options.php:135
2729
  #: app/features/mec/meta_boxes/display_options.php:308
2730
  #: app/features/mec/meta_boxes/display_options.php:434
2731
+ #: app/features/mec/settings.php:397 app/features/mec/settings.php:433
2732
+ #: app/features/mec/settings.php:465 app/features/mec/settings.php:501
2733
  msgid "Novel"
2734
  msgstr ""
2735
 
2743
  msgstr "Standardwerte sind T und M"
2744
 
2745
  #: app/features/mec/meta_boxes/display_options.php:193
2746
+ #: app/features/mec/meta_boxes/display_options.php:830
2747
  msgid "Count in row"
2748
  msgstr "Zeilen zählen"
2749
 
2768
 
2769
  #: app/features/mec/meta_boxes/display_options.php:297
2770
  #: app/features/mec/meta_boxes/display_options.php:314
2771
+ #: app/libraries/main.php:326 app/libraries/main.php:1196
2772
+ #: app/libraries/main.php:1221
2773
  msgid "List View"
2774
  msgstr "Listenansicht"
2775
 
2776
  #: app/features/mec/meta_boxes/display_options.php:298
2777
  #: app/features/mec/meta_boxes/display_options.php:324
2778
+ #: app/libraries/main.php:330 app/libraries/main.php:1190
2779
+ #: app/libraries/main.php:1215
2780
  msgid "Yearly View"
2781
  msgstr "Jahresansicht"
2782
 
2787
 
2788
  #: app/features/mec/meta_boxes/display_options.php:300
2789
  #: app/features/mec/meta_boxes/display_options.php:344
2790
+ #: app/libraries/main.php:333 app/libraries/main.php:1192
2791
+ #: app/libraries/main.php:1217
2792
  msgid "Weekly View"
2793
  msgstr "Wochenansicht"
2794
 
2795
  #: app/features/mec/meta_boxes/display_options.php:301
2796
  #: app/features/mec/meta_boxes/display_options.php:354
2797
+ #: app/libraries/main.php:332 app/libraries/main.php:1193
2798
+ #: app/libraries/main.php:1218
2799
  msgid "Daily View"
2800
  msgstr "Tagesansicht"
2801
 
2943
  msgstr "Hintergrund Farbe"
2944
 
2945
  #: app/features/mec/meta_boxes/display_options.php:793
2946
+ #: app/features/mec/meta_boxes/display_options.php:861
2947
  msgid "Type 1"
2948
  msgstr "Typ 1"
2949
 
2950
  #: app/features/mec/meta_boxes/display_options.php:794
2951
+ #: app/features/mec/meta_boxes/display_options.php:862
2952
  msgid "Type 2"
2953
  msgstr "Typ 2"
2954
 
2955
  #: app/features/mec/meta_boxes/display_options.php:795
2956
+ #: app/features/mec/meta_boxes/display_options.php:863
2957
  msgid "Type 3"
2958
  msgstr "Type 3"
2959
 
2960
+ #: app/features/mec/meta_boxes/display_options.php:796
2961
+ #: app/features/mec/meta_boxes/display_options.php:864
2962
+ msgid "Type 4"
2963
+ msgstr "Typ 4"
2964
+
2965
+ #: app/features/mec/meta_boxes/display_options.php:817
2966
  msgid "Default values are d, F and Y"
2967
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
2968
 
2969
+ #: app/features/mec/meta_boxes/display_options.php:822
2970
+ #: app/features/mec/meta_boxes/display_options.php:827
2971
  msgid "Default value is \"M d, Y\""
2972
  msgstr "Standardwert ist \"M T, J\""
2973
 
2974
+ #: app/features/mec/meta_boxes/display_options.php:843
2975
+ #: app/features/mec/meta_boxes/display_options.php:921
2976
  msgid "Auto Play Time"
2977
  msgstr "Auto Play Time"
2978
 
2979
+ #: app/features/mec/meta_boxes/display_options.php:844
2980
+ #: app/features/mec/meta_boxes/display_options.php:922
2981
  msgid "eg. 3000 default is 3 second"
2982
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
2983
 
2984
+ #: app/features/mec/meta_boxes/display_options.php:848
2985
+ #, fuzzy
2986
+ #| msgid "Archive Page Skin"
2987
+ msgid "Archive Link"
2988
+ msgstr "Skin Seite Archiv"
2989
 
2990
+ #: app/features/mec/meta_boxes/display_options.php:852
2991
+ #, fuzzy
2992
+ #| msgid "Text"
2993
+ msgid "Head Text"
2994
+ msgstr "Text"
2995
+
2996
+ #: app/features/mec/meta_boxes/display_options.php:865
2997
  msgid "Type 5"
2998
  msgstr "Typ 5"
2999
 
3122
  #: app/features/mec/meta_boxes/search_form.php:449
3123
  #: app/features/mec/meta_boxes/search_form.php:456
3124
  #: app/features/mec/meta_boxes/search_form.php:463
3125
+ #: app/features/mec/settings.php:317 app/features/mec/settings.php:530
3126
+ #: app/features/mec/settings.php:714
3127
  msgid "Disabled"
3128
  msgstr "Deaktiviert"
3129
 
3418
  msgid "Email/Booking verification link."
3419
  msgstr "Bestätigungslink für Email/Buchung"
3420
 
3421
+ #: app/features/mec/notifications.php:196 app/features/mec/settings.php:1174
3422
  msgid "Booking Confirmation"
3423
  msgstr "Buchungsbestätigung"
3424
 
3483
  "Sie beispielsweise 3,5 eingeben, wird die Erinnerung 3 und 5 Tage vor dem "
3484
  "Ereignisdatum gesendet."
3485
 
3486
+ #: app/features/mec/notifications.php:336 app/features/mec/support-page.php:80
3487
  msgid "New Event"
3488
  msgstr "Neue Veranstaltung"
3489
 
3507
  msgid "Status of event"
3508
  msgstr "Status der Veranstaltung"
3509
 
3510
+ #: app/features/mec/notifications.php:362 app/features/mec/settings.php:1061
3511
  msgid "Event Note"
3512
  msgstr "Veranstaltungsnotiz"
3513
 
3515
  msgid "Admin events management link."
3516
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3517
 
3518
+ #: app/features/mec/settings.php:54
3519
  msgid "Archive Page Options"
3520
  msgstr ""
3521
 
3522
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:779
3523
  msgid "Export Module Options"
3524
  msgstr "Optionen für Export-Module"
3525
 
3526
+ #: app/features/mec/settings.php:102 app/features/mec/settings.php:806
3527
  msgid "Local Time Module"
3528
  msgstr "Lokales Zeitmodul"
3529
 
3530
+ #: app/features/mec/settings.php:108 app/features/mec/settings.php:818
3531
  msgid "QR Code Module"
3532
  msgstr "QR Code Module"
3533
 
3534
+ #: app/features/mec/settings.php:114 app/features/mec/settings.php:836
3535
  #: app/widgets/single.php:147
3536
  msgid "Weather Module"
3537
  msgstr "Wettermodul"
3538
 
3539
+ #: app/features/mec/settings.php:144 app/features/mec/settings.php:1080
3540
  msgid "User Profile"
3541
  msgstr ""
3542
 
3543
+ #: app/features/mec/settings.php:156 app/features/mec/settings.php:1098
3544
  msgid "Additional Organizers"
3545
  msgstr "Zusätzliche Organisatoren"
3546
 
3547
+ #: app/features/mec/settings.php:174 app/features/mec/settings.php:1215
3548
  msgid "Taxes / Fees"
3549
  msgstr "Steuern/Gebühren"
3550
 
3551
+ #: app/features/mec/settings.php:180 app/features/mec/settings.php:1280
3552
  msgid "Ticket Variations & Options"
3553
  msgstr ""
3554
 
3555
+ #: app/features/mec/settings.php:276
3556
  msgid "Time Format"
3557
  msgstr "Zeitformat"
3558
 
3559
+ #: app/features/mec/settings.php:279
3560
  msgid "12 hours format with AM/PM"
3561
  msgstr "12-Stunden-Format mit AM/FM"
3562
 
3563
+ #: app/features/mec/settings.php:280
3564
  msgid "24 hours format"
3565
  msgstr "24-Stunden-Format"
3566
 
3567
+ #: app/features/mec/settings.php:282 app/features/mec/settings.php:295
3568
  msgid ""
3569
  "This option is for showing start/end time of events on frontend of website."
3570
  msgstr ""
3571
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3572
  "anzuzeigen"
3573
 
3574
+ #: app/features/mec/settings.php:287
3575
  msgid "Hide Events"
3576
  msgstr "Events verbergen"
3577
 
3578
+ #: app/features/mec/settings.php:290
3579
  msgid "On Event Start"
3580
  msgstr "Am Event Start"
3581
 
3582
+ #: app/features/mec/settings.php:291
3583
  msgid "+1 Hour after start"
3584
  msgstr "+1 Stunde nach dem Start"
3585
 
3586
+ #: app/features/mec/settings.php:292
3587
  msgid "+2 Hours after start"
3588
  msgstr "+2 Stunden nach dem Start"
3589
 
3590
+ #: app/features/mec/settings.php:293
3591
  msgid "On Event End"
3592
  msgstr "Am Event Ende"
3593
 
3594
+ #: app/features/mec/settings.php:301
3595
  msgid "Multiple Day Events"
3596
  msgstr "Mehrtagesveranstaltung"
3597
 
3598
+ #: app/features/mec/settings.php:304
3599
  msgid "Show only first day on List/Grid/Slider skins"
3600
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3601
 
3602
+ #: app/features/mec/settings.php:305
3603
  msgid "Show only first day on all skins"
3604
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3605
 
3606
+ #: app/features/mec/settings.php:306
3607
  msgid "Show all days"
3608
  msgstr "Alle Tage anzeigen"
3609
 
3610
+ #: app/features/mec/settings.php:308
3611
  msgid ""
3612
  "For showing all days of multiple day events on frontend or only show the "
3613
  "first day."
3615
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3616
  "den ersten Tag anzeigen"
3617
 
3618
+ #: app/features/mec/settings.php:314
3619
  msgid "Remove MEC Data on Plugin Uninstall"
3620
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3621
 
3622
+ #: app/features/mec/settings.php:318
3623
  msgid "Enabled"
3624
  msgstr "Aktiviert"
3625
 
3626
+ #: app/features/mec/settings.php:324
3627
  msgid "Exclude Date Suffix"
3628
  msgstr "Ausschlussdatum Suffix"
3629
 
3630
+ #: app/features/mec/settings.php:327
3631
  msgid "Remove suffix from calendars"
3632
  msgstr "Suffix aus den Kalendern entfernen"
3633
 
3634
+ #: app/features/mec/settings.php:334 app/libraries/main.php:4245
3635
  msgid "Weekdays"
3636
  msgstr "Wochentage"
3637
 
3638
+ #: app/features/mec/settings.php:342
3639
  msgid ""
3640
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3641
  "and Friday."
3643
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3644
  "Donnerstag und Freitag gesetzt."
3645
 
3646
+ #: app/features/mec/settings.php:349
3647
  msgid "Weekends"
3648
  msgstr "Wochenenden"
3649
 
3650
+ #: app/features/mec/settings.php:357
3651
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3652
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3653
 
3654
+ #: app/features/mec/settings.php:365
3655
  msgid "Archive Pages"
3656
  msgstr ""
3657
 
3658
+ #: app/features/mec/settings.php:368
3659
  msgid "Archive Page Title"
3660
  msgstr "Titel der Archivseite"
3661
 
3662
+ #: app/features/mec/settings.php:371
3663
  msgid "Default value is Events"
3664
  msgstr "Der Standardwert ist Ereignisse (Events)"
3665
 
3666
+ #: app/features/mec/settings.php:376
3667
  msgid "Archive Page Skin"
3668
  msgstr "Skin Seite Archiv"
3669
 
3670
+ #: app/features/mec/settings.php:384
3671
+ #, fuzzy
3672
+ #| msgid "Edit shortcodes"
3673
+ msgid "Put shortcode..."
3674
+ msgstr "Shortcode ändern"
3675
+
3676
+ #: app/features/mec/settings.php:387 app/features/mec/settings.php:402
3677
+ #: app/features/mec/settings.php:405 app/features/mec/settings.php:414
3678
+ #: app/features/mec/settings.php:440 app/features/mec/settings.php:455
3679
+ #: app/features/mec/settings.php:470 app/features/mec/settings.php:473
3680
+ #: app/features/mec/settings.php:482 app/features/mec/settings.php:508
3681
+ #, fuzzy
3682
+ #| msgid "The event is ongoing."
3683
+ msgid "There is no skins"
3684
+ msgstr "Die Veranstaltung ist im Gange."
3685
+
3686
+ #: app/features/mec/settings.php:390 app/features/mec/settings.php:458
3687
+ #: app/features/mec/settings.php:583
3688
+ msgid "Modern Style"
3689
+ msgstr "Moderner Stil"
3690
+
3691
+ #: app/features/mec/settings.php:432 app/features/mec/settings.php:500
3692
+ #, fuzzy
3693
+ #| msgid "Colorful"
3694
+ msgid "colorful"
3695
+ msgstr "Farbenfroh"
3696
+
3697
+ #: app/features/mec/settings.php:437 app/features/mec/settings.php:505
3698
+ #, fuzzy
3699
+ #| msgid "Plain Style"
3700
+ msgid "Clean Style"
3701
+ msgstr "Einfacher schlichter Stil"
3702
+
3703
+ #: app/features/mec/settings.php:442
3704
  msgid "Default value is Calendar/Monthly View"
3705
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3706
 
3707
+ #: app/features/mec/settings.php:447
3708
  msgid "Category Page Skin"
3709
  msgstr "Kategorie Seiten Skin"
3710
 
3711
+ #: app/features/mec/settings.php:510
3712
  msgid "Default value is List View"
3713
  msgstr "Standardwert ist Listenansicht"
3714
 
3715
+ #: app/features/mec/settings.php:515
3716
  msgid "Category Events Method"
3717
  msgstr ""
3718
 
3719
+ #: app/features/mec/settings.php:519
3720
  msgid "Expired Events"
3721
  msgstr ""
3722
 
3723
+ #: app/features/mec/settings.php:521
3724
  msgid "Default value is Upcoming Events"
3725
  msgstr ""
3726
 
3727
+ #: app/features/mec/settings.php:526
3728
  msgid "Events Archive Status"
3729
  msgstr "Events Archiv Status"
3730
 
3731
+ #: app/features/mec/settings.php:529
3732
  msgid "Enabled (Recommended)"
3733
  msgstr "Ist aktiviert (empfohlen)"
3734
 
3735
+ #: app/features/mec/settings.php:532
3736
  msgid ""
3737
  "If you disable it, then you should create a page as archive page of MEC. "
3738
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3742
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3743
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3744
 
3745
+ #: app/features/mec/settings.php:542
3746
  msgid "Main Slug"
3747
  msgstr "Main Slug"
3748
 
3749
+ #: app/features/mec/settings.php:545
3750
  msgid ""
3751
  "Default value is events. Valid characters are lowercase a-z, - character and "
3752
  "numbers."
3754
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3755
  "und Zahlen."
3756
 
3757
+ #: app/features/mec/settings.php:549
3758
  msgid "Category Slug"
3759
  msgstr "Category Slug"
3760
 
3761
+ #: app/features/mec/settings.php:552
3762
  msgid ""
3763
  "It's slug of MEC categories, you can change it to events-cat or something "
3764
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3770
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3771
  "category"
3772
 
3773
+ #: app/features/mec/settings.php:562
3774
  msgid "Single Event Date Format"
3775
  msgstr "Einzelveranstaltung Datumformat"
3776
 
3777
+ #: app/features/mec/settings.php:565 app/features/mec/settings.php:927
3778
  msgid "Default is M d Y"
3779
  msgstr "Standardwert ist M-T-J"
3780
 
3781
+ #: app/features/mec/settings.php:569
3782
  msgid "Date Method"
3783
  msgstr "Datum Methode"
3784
 
3785
+ #: app/features/mec/settings.php:572
3786
  msgid "Next occurrence date"
3787
  msgstr "Nächstes vorkommende Datum"
3788
 
3789
+ #: app/features/mec/settings.php:573
3790
  msgid "Referred date"
3791
  msgstr "Gewünschtes Datum"
3792
 
3793
+ #: app/features/mec/settings.php:575
3794
  msgid ""
3795
  "\"Referred date\" shows the event date based on referred date in event list."
3796
  msgstr ""
3797
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3798
  "Datum in der Eventliste an."
3799
 
3800
+ #: app/features/mec/settings.php:579
3801
  msgid "Single Event Style"
3802
  msgstr "Single Event Stil"
3803
 
3804
+ #: app/features/mec/settings.php:582
3805
  msgid "Default Style"
3806
  msgstr "Standardstil voreingestellt"
3807
 
3808
+ #: app/features/mec/settings.php:585
 
 
 
 
3809
  msgid "Choose your single event style."
3810
  msgstr "Wählen Sie Ihren Single Event Stil"
3811
 
3812
+ #: app/features/mec/settings.php:589
3813
  #, fuzzy
3814
  #| msgid "Booking"
3815
  msgid "Booking Style"
3816
  msgstr "Buchung / Reservierung"
3817
 
3818
+ #: app/features/mec/settings.php:592 app/features/mec/settings.php:703
3819
  msgid "Default"
3820
  msgstr "Standardeinstellung"
3821
 
3822
+ #: app/features/mec/settings.php:593
3823
  #, fuzzy
3824
  #| msgid "Modal 1"
3825
  msgid "Modal"
3826
  msgstr "Modal 1"
3827
 
3828
+ #: app/features/mec/settings.php:595
3829
  #, fuzzy
3830
  #| msgid "Choose your single event style."
3831
  msgid "Choose your Booking style."
3832
  msgstr "Wählen Sie Ihren Single Event Stil"
3833
 
3834
+ #: app/features/mec/settings.php:603
3835
  msgid "Currency"
3836
  msgstr "Währung"
3837
 
3838
+ #: app/features/mec/settings.php:613
3839
  msgid "Currency Sign"
3840
  msgstr "Währungssymbol"
3841
 
3842
+ #: app/features/mec/settings.php:616
3843
  msgid "Default value will be \"currency\" if you leave it empty."
3844
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3845
 
3846
+ #: app/features/mec/settings.php:620
3847
  msgid "Currency Position"
3848
  msgstr "Position des Währungssymbols"
3849
 
3850
+ #: app/features/mec/settings.php:623
3851
  msgid "Before $10"
3852
  msgstr "Vor $10"
3853
 
3854
+ #: app/features/mec/settings.php:624
3855
  msgid "After 10$"
3856
  msgstr "Nach 10$"
3857
 
3858
+ #: app/features/mec/settings.php:629
3859
  msgid "Thousand Separator"
3860
  msgstr "Tausendertrennzeichen"
3861
 
3862
+ #: app/features/mec/settings.php:635
3863
  msgid "Decimal Separator"
3864
  msgstr "Dezimaltrennzeichen"
3865
 
3866
+ #: app/features/mec/settings.php:645
3867
  msgid "No decimal"
3868
  msgstr "Keine Dezimale"
3869
 
3870
+ #: app/features/mec/settings.php:654
3871
  #, fuzzy
3872
  #| msgid "No Search Options"
3873
  msgid "Speakers Options"
3874
  msgstr "Keine Suchoptionen"
3875
 
3876
+ #: app/features/mec/settings.php:660
3877
  #, fuzzy
3878
  #| msgid "Enable taxes / fees module"
3879
  msgid "Enable speakers feature"
3880
  msgstr "Modul für Gebühren/Steuern aktivieren"
3881
 
3882
+ #: app/features/mec/settings.php:676
3883
  msgid "Show Google Maps on event page"
3884
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3885
 
3886
+ #: app/features/mec/settings.php:681 app/features/mec/settings.php:849
3887
+ #: app/features/mec/settings.php:1378
3888
  msgid "API Key"
3889
  msgstr "API Schlüssel"
3890
 
3891
+ #: app/features/mec/settings.php:684 app/features/mec/settings.php:1381
3892
+ #: app/features/mec/settings.php:1388
3893
  msgid "Required!"
3894
  msgstr "Erforderlich (Pflichtfeld)"
3895
 
3896
+ #: app/features/mec/settings.php:688
3897
  msgid "Zoom level"
3898
  msgstr "Zoom"
3899
 
3900
+ #: app/features/mec/settings.php:695
3901
  msgid ""
3902
  "For Google Maps module in single event page. In Google Maps skin, it will "
3903
  "caculate the zoom level automatically based on event boundaries."
3906
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3907
  "Angrenzungen"
3908
 
3909
+ #: app/features/mec/settings.php:699
3910
  msgid "Google Maps Style"
3911
  msgstr "Google Maps Stil"
3912
 
3913
+ #: app/features/mec/settings.php:711
3914
  msgid "Direction on single event"
3915
  msgstr "Richtung auf einzelne Veranstaltung"
3916
 
3917
+ #: app/features/mec/settings.php:715
3918
  msgid "Simple Method"
3919
  msgstr "Einfache Methode"
3920
 
3921
+ #: app/features/mec/settings.php:716
3922
  msgid "Advanced Method"
3923
  msgstr "Fortgeschrittene Methode"
3924
 
3925
+ #: app/features/mec/settings.php:721
3926
  msgid "Lightbox Date Format"
3927
  msgstr "Leuchtkasten Datumsformat"
3928
 
3929
+ #: app/features/mec/settings.php:724
3930
  msgid "Default value is M d Y"
3931
  msgstr "Standardwert ist M T J"
3932
 
3933
+ #: app/features/mec/settings.php:728
3934
  msgid "Google Maps API"
3935
  msgstr "Google Maps API"
3936
 
3937
+ #: app/features/mec/settings.php:732
3938
  msgid "Don't load Google Maps API library"
3939
  msgstr "Google Maps API Bibliothek nicht laden"
3940
 
3941
+ #: app/features/mec/settings.php:734
3942
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3943
  msgstr ""
3944
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3945
 
3946
+ #: app/features/mec/settings.php:746
3947
  msgid "Enable Google Recaptcha"
3948
  msgstr "Google Recaptcha aktivieren"
3949
 
3950
+ #: app/features/mec/settings.php:753
3951
  msgid "Enable on booking form"
3952
  msgstr "Auf dem Buchungsformular aktivieren"
3953
 
3954
+ #: app/features/mec/settings.php:759
3955
  #, fuzzy
3956
  #| msgid "Enable on \"Frontend Event Submittion\" form"
3957
  msgid "Enable on \"Frontend Event Submission\" form"
3958
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3959
 
3960
+ #: app/features/mec/settings.php:763
3961
  msgid "Site Key"
3962
  msgstr "Site Key (Seitenschlüssel)"
3963
 
3964
+ #: app/features/mec/settings.php:769
3965
  msgid "Secret Key"
3966
  msgstr "Geheimschlüssel"
3967
 
3968
+ #: app/features/mec/settings.php:783
3969
  msgid ""
3970
  "Show export module (iCal export and add to Google calendars) on event page"
3971
  msgstr ""
3972
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3973
  "Google calendars)"
3974
 
3975
+ #: app/features/mec/settings.php:790
3976
  msgid "Google Calendar"
3977
  msgstr "Google Calendar"
3978
 
3979
+ #: app/features/mec/settings.php:810
3980
  msgid "Show event time based on local time of visitor on event page"
3981
  msgstr ""
3982
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3983
  "Eventseite"
3984
 
3985
+ #: app/features/mec/settings.php:826
3986
  msgid "Show QR code of event in details page and booking invoice"
3987
  msgstr ""
3988
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3989
  "an"
3990
 
3991
+ #: app/features/mec/settings.php:844
3992
  msgid "Show weather module on event page"
3993
  msgstr "Wettermodul auf der Eventseite anzeigen"
3994
 
3995
+ #: app/features/mec/settings.php:852
3996
  #, php-format
3997
  msgid "You can get a free API Key from %s"
3998
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3999
 
4000
+ #: app/features/mec/settings.php:864
4001
  msgid "Show countdown module on event page"
4002
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
4003
 
4004
+ #: app/features/mec/settings.php:869
4005
  msgid "Countdown Style"
4006
  msgstr "Countdown Stil"
4007
 
4008
+ #: app/features/mec/settings.php:872
4009
  msgid "Plain Style"
4010
  msgstr "Einfacher schlichter Stil"
4011
 
4012
+ #: app/features/mec/settings.php:873
4013
  msgid "Flip Style"
4014
  msgstr "Flip Stil"
4015
 
4016
+ #: app/features/mec/settings.php:885
4017
  msgid "Show social network module"
4018
  msgstr "Modul für Soziale Netzwerke anzeigen"
4019
 
4020
+ #: app/features/mec/settings.php:910
4021
  msgid "Show next event module on event page"
4022
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4023
 
4024
+ #: app/features/mec/settings.php:915
4025
  msgid "Method"
4026
  msgstr "Methode"
4027
 
4028
+ #: app/features/mec/settings.php:918
4029
  msgid "Next Occurrence of Current Event"
4030
  msgstr "Nächstes Auftreten des aktuellen Events"
4031
 
4032
+ #: app/features/mec/settings.php:919
4033
  msgid "Next Occurrence of Other Events"
4034
  msgstr "Nächstes Auftreten von anderen Events."
4035
 
4036
+ #: app/features/mec/settings.php:924 app/features/mec/settings.php:1121
4037
  msgid "Date Format"
4038
  msgstr "Datumsformat"
4039
 
4040
+ #: app/features/mec/settings.php:936
4041
  msgid "Events List Page"
4042
  msgstr "Seite Liste der Veranstaltungen"
4043
 
4044
+ #: app/features/mec/settings.php:945 app/features/mec/settings.php:957
4045
  #, php-format
4046
  msgid "Put %s shortcode into the page."
4047
  msgstr "%s shortcode in die Seite einfügen"
4048
 
4049
+ #: app/features/mec/settings.php:948
4050
  msgid "Add/Edit Events Page"
4051
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
4052
 
4053
+ #: app/features/mec/settings.php:962
4054
  msgid "Enable event submission by guest (Not logged-in) users"
4055
  msgstr ""
4056
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
4057
  "erlauben"
4058
 
4059
+ #: app/features/mec/settings.php:969
4060
  msgid "Enable mandatory email and name for guest user"
4061
  msgstr ""
4062
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4063
 
4064
+ #: app/features/mec/settings.php:973
4065
  msgid "Frontend Event Submission Sections"
4066
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4067
 
4068
+ #: app/features/mec/settings.php:995 app/widgets/single.php:119
4069
  msgid "Event Categories"
4070
  msgstr "Veranstaltungskategorien"
4071
 
4072
+ #: app/features/mec/settings.php:1001
4073
  msgid "Event Labels"
4074
  msgstr "Event Labels"
4075
 
4076
+ #: app/features/mec/settings.php:1013
4077
  msgid "Event Tags"
4078
  msgstr "Event Schlagworte"
4079
 
4080
+ #: app/features/mec/settings.php:1025 app/widgets/single.php:123
4081
  msgid "Event Organizer"
4082
  msgstr "Veranstaltungsmanager"
4083
 
4084
+ #: app/features/mec/settings.php:1043
4085
  msgid "Booking Options"
4086
  msgstr "Buchungsoptionen"
4087
 
4088
+ #: app/features/mec/settings.php:1049
4089
  #, fuzzy
4090
  #| msgid "Fees/Taxes Options"
4091
  msgid "Fees / Taxes Options"
4092
  msgstr "Gebühren/Steuer Optionen"
4093
 
4094
+ #: app/features/mec/settings.php:1063
4095
  #, php-format
4096
  msgid ""
4097
  "Users can put a note for editors while they're submitting the event. Also "
4103
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
4104
  "erhalten."
4105
 
4106
+ #: app/features/mec/settings.php:1067
4107
  msgid "Visibility of Note"
4108
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
4109
 
4110
+ #: app/features/mec/settings.php:1070
4111
  msgid "Always"
4112
  msgstr "Immer"
4113
 
4114
+ #: app/features/mec/settings.php:1071
4115
  msgid "While event is not published"
4116
  msgstr "Das Ereignis wird nicht veröffentlicht"
4117
 
4118
+ #: app/features/mec/settings.php:1074
4119
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4120
  msgstr ""
4121
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4122
  "Ereignis im Backend bearbeitet."
4123
 
4124
+ #: app/features/mec/settings.php:1082
4125
  #, php-format
4126
  msgid ""
4127
  "Put %s shortcode into your desired page. Then users are able to see history "
4128
  "of their bookings."
4129
  msgstr ""
4130
 
4131
+ #: app/features/mec/settings.php:1087
4132
  msgid "Exceptional days"
4133
  msgstr "Ausgesuchte ausnehmende Tage"
4134
 
4135
+ #: app/features/mec/settings.php:1091
4136
  msgid "Show exceptional days option on Add/Edit events page"
4137
  msgstr ""
4138
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
4139
  "(Show exceptional days option on Add/Edit events page)"
4140
 
4141
+ #: app/features/mec/settings.php:1092
4142
  msgid ""
4143
  "Using this option you can include/exclude certain days to/from event "
4144
  "occurrence dates."
4146
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
4147
  "ausschließen."
4148
 
4149
+ #: app/features/mec/settings.php:1102
4150
  msgid ""
4151
  "Show additional organizers option on Add/Edit events page and single event "
4152
  "page."
4154
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
4155
  "bearbeiten und auf der Seite für einzelne Events an."
4156
 
4157
+ #: app/features/mec/settings.php:1116
4158
  msgid "Enable booking module"
4159
  msgstr "Buchungsmodul aktivieren"
4160
 
4161
+ #: app/features/mec/settings.php:1124
4162
  msgid "Default is Y-m-d"
4163
  msgstr "Voreinstellung ist J-M-T"
4164
 
4165
+ #: app/features/mec/settings.php:1128
4166
  msgid "Maximum Dates"
4167
  msgstr "Maximale Anzahl von Daten"
4168
 
4169
+ #: app/features/mec/settings.php:1130
4170
  msgid "Default is 6"
4171
  msgstr "Die Voreinstellung ist 6"
4172
 
4173
+ #: app/features/mec/settings.php:1134
4174
  msgid "Thank You Page"
4175
  msgstr "Danke Seite"
4176
 
4177
+ #: app/features/mec/settings.php:1142
4178
  msgid ""
4179
  "User redirects to this page after booking. Leave it empty if you want to "
4180
  "disable it."
4182
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
4183
  "es leer, wenn Sie es deaktivieren möchten."
4184
 
4185
+ #: app/features/mec/settings.php:1150
4186
  msgid "Enable Express Attendees Form"
4187
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
4188
 
4189
+ #: app/features/mec/settings.php:1152
4190
  msgid ""
4191
  "Users are able to apply first attendee information for other attendees in "
4192
  "the booking form."
4194
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
4195
  "Buchungsformular anwenden."
4196
 
4197
+ #: app/features/mec/settings.php:1155
4198
  msgid "Email verification"
4199
  msgstr "Email-Verifizierung"
4200
 
4201
+ #: app/features/mec/settings.php:1161
4202
  msgid "Auto verification for free bookings"
4203
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
4204
 
4205
+ #: app/features/mec/settings.php:1170
4206
  msgid "Auto verification for paid bookings"
4207
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
4208
 
4209
+ #: app/features/mec/settings.php:1180
4210
  msgid "Auto confirmation for free bookings"
4211
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
4212
 
4213
+ #: app/features/mec/settings.php:1189
4214
  msgid "Auto confirmation for paid bookings"
4215
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
4216
 
4217
+ #: app/features/mec/settings.php:1206
4218
  msgid "Enable coupons module"
4219
  msgstr "Gutscheinmodul aktivieren"
4220
 
4221
+ #: app/features/mec/settings.php:1223
4222
  msgid "Enable taxes / fees module"
4223
  msgstr "Modul für Gebühren/Steuern aktivieren"
4224
 
4225
+ #: app/features/mec/settings.php:1228
4226
  msgid "Add Fee"
4227
  msgstr "Gebühr hinzufügen"
4228
 
4229
+ #: app/features/mec/settings.php:1288
4230
  #, fuzzy
4231
  #| msgid "Enable coupons module"
4232
  msgid "Enable ticket options module"
4233
  msgstr "Gutscheinmodul aktivieren"
4234
 
4235
+ #: app/features/mec/settings.php:1293
4236
  msgid "Add Variation / Option"
4237
  msgstr ""
4238
 
4239
+ #: app/features/mec/settings.php:1343
4240
  msgid "Enable BuddyPress Integration"
4241
  msgstr "Buddy Press Integration deaktivieren"
4242
 
4243
+ #: app/features/mec/settings.php:1350
4244
  msgid "Show \"Attendees Module\" in event details page"
4245
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4246
 
4247
+ #: app/features/mec/settings.php:1354
4248
  msgid "Attendees Limit"
4249
  msgstr "Teilnehmer Limit, maximale Anzahl"
4250
 
4251
+ #: app/features/mec/settings.php:1362
4252
  msgid "Add booking activity to user profile"
4253
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4254
 
4255
+ #: app/features/mec/settings.php:1373
4256
  msgid "Enable Mailchimp Integration"
4257
  msgstr "Mailchimp Integration deaktivieren"
4258
 
4259
+ #: app/features/mec/settings.php:1385
4260
  msgid "List ID"
4261
  msgstr "List ID"
4262
 
4263
+ #: app/features/mec/settings.php:1392
4264
  msgid "Subscription Status"
4265
  msgstr "Buchungsstatus"
4266
 
4267
+ #: app/features/mec/settings.php:1395
4268
  msgid "Subscribe automatically"
4269
  msgstr "automatisch Anmelden/Abonnieren"
4270
 
4271
+ #: app/features/mec/settings.php:1396
4272
  msgid "Subscribe by verification"
4273
  msgstr ""
4274
  "Anmelden/Abonnieren durch Bestätigung\n"
4275
  " "
4276
 
4277
+ #: app/features/mec/settings.php:1398
4278
  msgid ""
4279
  "If you choose \"Subscribe by verification\" then an email will send to user "
4280
  "by mailchimp for subscription verification."
4282
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
4283
  "Benutzer per Mailchimp zur Bestätigung gesendet."
4284
 
4285
+ #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1500
4286
+ #: app/libraries/main.php:4426
 
 
 
 
 
 
 
 
 
4287
  msgid "Verified"
4288
  msgstr "Verifiziert"
4289
 
4290
+ #: app/features/mec/settings.php:1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4291
  msgid "Please Refresh Page"
4292
  msgstr "Bitte Seiten Refresh vornehmen"
4293
 
4375
  msgid "Desktop Large Screens"
4376
  msgstr ""
4377
 
4378
+ #: app/features/mec/support-page.php:12
4379
+ #, fuzzy
4380
+ #| msgid "All Events"
4381
+ msgid "All videos"
4382
+ msgstr "Alle Veranstaltungen"
4383
+
4384
+ #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
4385
+ msgid "View all Articles"
4386
+ msgstr "Alle Artikel anzeigen"
4387
+
4388
+ #: app/features/mec/support-page.php:15
4389
+ msgid ""
4390
+ "If you have any questions regarding Modern Events Calendar and how to use "
4391
+ "it, you can use the following four methods we have prepared in this page. "
4392
+ "The detailed documentations of MEC along with its instructional videos will "
4393
+ "help you have a great experience working with it.So, if you need futher "
4394
+ "instructions using the plugin, please first refer to the following to find "
4395
+ "your answers."
4396
+ msgstr ""
4397
+
4398
+ #: app/features/mec/support-page.php:31
4399
+ msgid "Advice and answers from the Webnus Team"
4400
+ msgstr ""
4401
+
4402
+ #: app/features/mec/support-page.php:34
4403
+ #, fuzzy
4404
+ #| msgid "Search %s"
4405
+ msgid "Search..."
4406
+ msgstr "Suche %s"
4407
+
4408
+ #: app/features/mec/support-page.php:46
4409
+ msgid "Quick Setup"
4410
+ msgstr ""
4411
+
4412
+ #: app/features/mec/support-page.php:50
4413
+ #, fuzzy
4414
+ #| msgid "Download Invoice"
4415
+ msgid "Download the Plugin"
4416
+ msgstr "Download Rechnung\n"
4417
+
4418
+ #: app/features/mec/support-page.php:51
4419
+ msgid "Install and Activate the Plugin"
4420
+ msgstr ""
4421
+
4422
+ #: app/features/mec/support-page.php:52
4423
+ #, fuzzy
4424
+ #| msgid "Add New Event"
4425
+ msgid "Add a New Event"
4426
+ msgstr "Neue Veranstaltung hinzufügen"
4427
+
4428
+ #: app/features/mec/support-page.php:55 app/features/mec/support-page.php:72
4429
+ #: app/features/mec/support-page.php:89 app/features/mec/support-page.php:106
4430
+ #: app/features/mec/support-page.php:126 app/features/mec/support-page.php:143
4431
+ #: app/features/mec/support-page.php:160 app/features/mec/support-page.php:177
4432
+ msgid "Watch Video"
4433
+ msgstr ""
4434
+
4435
+ #: app/features/mec/support-page.php:63
4436
+ #, fuzzy
4437
+ #| msgid "MEC Activation"
4438
+ msgid "Activate License"
4439
+ msgstr "MEC Aktivierung"
4440
+
4441
+ #: app/features/mec/support-page.php:67
4442
+ msgid "Login to Dashboard"
4443
+ msgstr ""
4444
+
4445
+ #: app/features/mec/support-page.php:68
4446
+ msgid "Get the License Key"
4447
+ msgstr ""
4448
+
4449
+ #: app/features/mec/support-page.php:69
4450
+ msgid "Activate the plugin"
4451
+ msgstr ""
4452
+
4453
+ #: app/features/mec/support-page.php:84
4454
+ #, fuzzy
4455
+ #| msgid "Hide Event End Time"
4456
+ msgid "Add New Events, Date and Time"
4457
+ msgstr "Ende-Zeit der Veranstaltung verbergen"
4458
+
4459
+ #: app/features/mec/support-page.php:85
4460
+ msgid "Tags, Categories, Organizer, Location"
4461
+ msgstr ""
4462
+
4463
+ #: app/features/mec/support-page.php:86
4464
+ #, fuzzy
4465
+ #| msgid "Hourly Schedule"
4466
+ msgid "Hourly Schedule, Set Up Shortcodes"
4467
+ msgstr "Stundenplan"
4468
+
4469
+ #: app/features/mec/support-page.php:97 app/features/mec/support-page.php:101
4470
+ #, fuzzy
4471
+ #| msgid "Enable booking module"
4472
+ msgid "Enable Booking"
4473
+ msgstr "Buchungsmodul aktivieren"
4474
+
4475
+ #: app/features/mec/support-page.php:102 app/features/mec/support-page.php:123
4476
+ #, fuzzy
4477
+ #| msgid "Booking Form"
4478
+ msgid "Customize the Booking Form"
4479
+ msgstr "Buchungsformular"
4480
+
4481
+ #: app/features/mec/support-page.php:103
4482
+ #, fuzzy
4483
+ #| msgid "Payment Gateways"
4484
+ msgid "Set Up a Payment Gateway"
4485
+ msgstr "Zahlungs-Gateways"
4486
+
4487
+ #: app/features/mec/support-page.php:117
4488
+ msgid "Add booking form to event"
4489
+ msgstr ""
4490
+
4491
+ #: app/features/mec/support-page.php:121
4492
+ #, fuzzy
4493
+ #| msgid "Enable booking notification"
4494
+ msgid "Enable Booking from Settings"
4495
+ msgstr "Buchungsbenachrichtigung aktivieren"
4496
+
4497
+ #: app/features/mec/support-page.php:122
4498
+ #, fuzzy
4499
+ #| msgid "Booking Form"
4500
+ msgid "Set Up a Booking Form"
4501
+ msgstr "Buchungsformular"
4502
+
4503
+ #: app/features/mec/support-page.php:134
4504
+ #, fuzzy
4505
+ #| msgid "Shortcodes"
4506
+ msgid "Create Shortcodes"
4507
+ msgstr "Shortcodes"
4508
+
4509
+ #: app/features/mec/support-page.php:138
4510
+ #, fuzzy
4511
+ #| msgid "Add New Shortcode"
4512
+ msgid "Create a New Shortcode"
4513
+ msgstr "Neuen Shortcode hinzufügen"
4514
+
4515
+ #: app/features/mec/support-page.php:139
4516
+ #, fuzzy
4517
+ #| msgid "Shortcodes"
4518
+ msgid "Customize Shortcodes"
4519
+ msgstr "Shortcodes"
4520
+
4521
+ #: app/features/mec/support-page.php:140
4522
+ #, fuzzy
4523
+ #| msgid "All Shortcodes"
4524
+ msgid "Use Filters in Shortcodes"
4525
+ msgstr "Alle Shortcodes"
4526
+
4527
+ #: app/features/mec/support-page.php:151
4528
+ msgid "WooCommerce gateways"
4529
+ msgstr ""
4530
+
4531
+ #: app/features/mec/support-page.php:155
4532
+ msgid "Install and Activate WooCommerce"
4533
+ msgstr ""
4534
+
4535
+ #: app/features/mec/support-page.php:156
4536
+ msgid "Integrate with MEC"
4537
+ msgstr ""
4538
+
4539
+ #: app/features/mec/support-page.php:157
4540
+ msgid "Set Up WooCommerce Gateway"
4541
+ msgstr ""
4542
+
4543
+ #: app/features/mec/support-page.php:172
4544
+ msgid "An Overview of the Settings"
4545
+ msgstr ""
4546
+
4547
+ #: app/features/mec/support-page.php:173
4548
+ #, fuzzy
4549
+ #| msgid "Import Options"
4550
+ msgid "Set Up Different Settings"
4551
+ msgstr "Import Optionen"
4552
+
4553
+ #: app/features/mec/support-page.php:174
4554
+ #, fuzzy
4555
+ #| msgid "Filter Options"
4556
+ msgid "Use Different Options"
4557
+ msgstr "Filteroptionen"
4558
+
4559
+ #: app/features/mec/support-page.php:188
4560
+ msgid "FAQ"
4561
+ msgstr ""
4562
+
4563
+ #: app/features/mec/support-page.php:192
4564
+ msgid "How should I update plugin?"
4565
+ msgstr ""
4566
+
4567
+ #: app/features/mec/support-page.php:194
4568
+ #, php-format
4569
+ msgid ""
4570
+ "You have two options:<br>\n"
4571
+ " 1-\tUploading the plugin file using FTP. For "
4572
+ "more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
4573
+ "<br>\n"
4574
+ " 2-\tUsing the auto-update feature which needs "
4575
+ "the adding of the purchase code in the corresponding section in the plugin. "
4576
+ "For more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
4577
+ msgstr ""
4578
+
4579
+ #: app/features/mec/support-page.php:199
4580
+ msgid "Do I lose all my data or customization if I update MEC?"
4581
+ msgstr ""
4582
+
4583
+ #: app/features/mec/support-page.php:200
4584
+ msgid ""
4585
+ "If you’ve added a file to the main folder of MEC, this file will be removed "
4586
+ "after the update. Therefore, please do get a full back up before proceeding "
4587
+ "with the update process."
4588
+ msgstr ""
4589
+
4590
+ #: app/features/mec/support-page.php:203
4591
+ msgid "Can I customize the event pages?"
4592
+ msgstr ""
4593
+
4594
+ #: app/features/mec/support-page.php:205
4595
+ #, php-format
4596
+ msgid ""
4597
+ "Yes, it is possible. In order to see the related documentations, please <a "
4598
+ "href=\"%s\" target=\"_blank\">click here</a>."
4599
+ msgstr ""
4600
+
4601
+ #: app/features/mec/support-page.php:208
4602
+ msgid "Does MEC have default languages or it needs to be translated?"
4603
+ msgstr ""
4604
+
4605
+ #: app/features/mec/support-page.php:210
4606
+ #, php-format
4607
+ msgid ""
4608
+ "Yes, for some of the languages MEC has the translation file as default. "
4609
+ "However, since these translations have been done by the users, they may be "
4610
+ "incomplete, hence updating them might be required. For more information, "
4611
+ "please <a href=\"%s\" target=\"_blank\">click here</a>."
4612
+ msgstr ""
4613
+
4614
+ #: app/features/mec/support-page.php:213
4615
+ msgid "Can I have more than one calendar in one website?"
4616
+ msgstr ""
4617
+
4618
+ #: app/features/mec/support-page.php:214
4619
+ msgid ""
4620
+ "Unfortunately, MEC does not support more than 1 calendar in a single "
4621
+ "website, however, it will be added in its upcoming updates."
4622
+ msgstr ""
4623
+
4624
+ #: app/features/mec/support-page.php:216
4625
+ msgid "Can I import/export from/to MEC?"
4626
+ msgstr ""
4627
+
4628
+ #: app/features/mec/support-page.php:217
4629
+ msgid ""
4630
+ "Yes, you can get an XML export from MEC data or import the file you've "
4631
+ "exported to MEC. Also, if you are using one of the following plugins (The "
4632
+ "event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then "
4633
+ "you can easily transfer your events to MEC."
4634
+ msgstr ""
4635
+
4636
+ #: app/features/mec/support-page.php:225
4637
+ #, fuzzy
4638
+ #| msgid "View all Articles"
4639
+ msgid "Articles"
4640
+ msgstr "Alle Artikel anzeigen"
4641
+
4642
+ #: app/features/mec/support-page.php:228
4643
+ msgid "MEC And Integrate With WooCommerce"
4644
+ msgstr ""
4645
+
4646
+ #: app/features/mec/support-page.php:229
4647
+ msgid "Create Events With Your Page Builder"
4648
+ msgstr ""
4649
+
4650
+ #: app/features/mec/support-page.php:230
4651
+ msgid "Why can't I use HTML tags?"
4652
+ msgstr ""
4653
+
4654
+ #: app/features/mec/support-page.php:231
4655
+ msgid "Setup Date Option On Shortcodes"
4656
+ msgstr ""
4657
+
4658
+ #: app/features/mec/support-page.php:232
4659
+ msgid "I want to export booking, what should I do?"
4660
+ msgstr ""
4661
+
4662
+ #: app/features/mec/support-page.php:233
4663
+ #, fuzzy
4664
+ #| msgid "iCal Export"
4665
+ msgid "I Can't Export iCal"
4666
+ msgstr "ical Export"
4667
+
4668
+ #: app/features/mec/support-page.php:234
4669
+ #, fuzzy
4670
+ #| msgid "Booking module doesn't work"
4671
+ msgid "Booking Module Not Working"
4672
+ msgstr "Das Buchungsmodul arbeitet nicht."
4673
+
4674
+ #: app/features/mec/support-page.php:235
4675
+ msgid "Translate MEC"
4676
+ msgstr ""
4677
+
4678
+ #: app/features/mec/support-page.php:236
4679
+ #, fuzzy
4680
+ #| msgid "No event found!"
4681
+ msgid "No Event Found!"
4682
+ msgstr "Keine Veranstaltung gefunden"
4683
+
4684
+ #: app/features/mec/support-page.php:237
4685
+ #, fuzzy
4686
+ #| msgid "Mailchimp Integration"
4687
+ msgid "MEC Theme Integration Guide"
4688
+ msgstr "Mailchimp Integration"
4689
+
4690
+ #: app/features/mec/support-page.php:238
4691
+ #, fuzzy
4692
+ #| msgid "How to override MEC template files?"
4693
+ msgid "Can I Override MEC Template ?"
4694
+ msgstr "Wie kann ich MEC-Vorlagendateien überschreiben?"
4695
+
4696
+ #: app/features/mec/support-page.php:248
4697
+ #, fuzzy
4698
+ #| msgid ""
4699
+ #| "Webnus is elite and trusted author with high percentage of satisfied "
4700
+ #| "user. If you have any issues please don't hesitate to contact us, we will "
4701
+ #| "reply as soon as possible."
4702
+ msgid ""
4703
+ "Webnus is an elite and trusted author with a high percentage of satisfied "
4704
+ "users. If you have any issues please don't hesitate to contact us, we will "
4705
+ "reply as soon as possible."
4706
+ msgstr ""
4707
+ "Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl von "
4708
+ "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
4709
+ "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
4710
+
4711
+ #: app/features/mec/support-page.php:249
4712
+ #, fuzzy
4713
+ #| msgid "Support Forum"
4714
+ msgid "Go to support forum"
4715
+ msgstr "Support Forum"
4716
+
4717
+ #: app/features/mec/support.php:104
4718
+ msgid ""
4719
+ "Our documentation is simple and functional with full details and cover all "
4720
+ "essential aspects from beginning to the most advanced parts."
4721
+ msgstr ""
4722
+ "Unsere Dokumentation ist einfach und funktionell mit vollen Details und "
4723
+ "deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
4724
+ "ab."
4725
+
4726
+ #: app/features/mec/support.php:107
4727
+ msgid "DOCUMENTATION"
4728
+ msgstr "Dokumentation"
4729
+
4730
+ #: app/features/mec/support.php:116
4731
+ msgid "Support Forum"
4732
+ msgstr "Support Forum"
4733
+
4734
+ #: app/features/mec/support.php:120
4735
+ msgid ""
4736
+ "Webnus is elite and trusted author with high percentage of satisfied user. "
4737
+ "If you want to use this service you need to upgrade your plugin to Pro "
4738
+ "version. Click on the following button."
4739
+ msgstr ""
4740
+
4741
+ #: app/features/mec/support.php:122
4742
+ msgid ""
4743
+ "Webnus is elite and trusted author with high percentage of satisfied user. "
4744
+ "If you have any issues please don't hesitate to contact us, we will reply as "
4745
+ "soon as possible."
4746
+ msgstr ""
4747
+ "Webnus ist ein Elite- und vertrauenswürdiger Autor mit hoher Prozentzahl von "
4748
+ "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
4749
+ "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
4750
+
4751
+ #: app/features/mec/support.php:126
4752
+ msgid "GO PREMIUM"
4753
+ msgstr ""
4754
+
4755
+ #: app/features/mec/support.php:128
4756
+ msgid "OPEN A TICKET"
4757
+ msgstr "Ein Ticket eröffnen"
4758
+
4759
  #: app/features/mec/support.php:138
4760
  msgid "Knowledgebase"
4761
  msgstr "Wissensbasis"
4782
  msgid "How to add/manage shortcodes?"
4783
  msgstr "Wie kann man shortcodes hinzufügen / managen?"
4784
 
 
 
 
 
4785
  #: app/features/organizers.php:105 app/features/organizers.php:147
4786
  #: app/features/speakers.php:176
4787
  msgid "Insert organizer phone number."
4848
  msgid "eg. https://webnus.net"
4849
  msgstr "http://webnus.net"
4850
 
4851
+ #: app/features/organizers.php:300 app/libraries/main.php:4269
4852
  #: app/skins/single.php:194
4853
  msgid "Other Organizers"
4854
  msgstr "Andere Veranstalter"
4870
  msgid "#"
4871
  msgstr ""
4872
 
4873
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2402
4874
  msgid "Status"
4875
  msgstr ""
4876
 
4877
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1664
4878
  msgid "Attendees"
4879
  msgstr "Teilnehmer"
4880
 
4889
  msgid "<i class=\"mec-sl-eye\"></i> %s"
4890
  msgstr ""
4891
 
4892
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1678
4893
+ #: app/libraries/main.php:4267
4894
  msgid "Ticket"
4895
  msgstr "Ticket"
4896
 
4905
  msgstr "Keine Buchungen gefunden"
4906
 
4907
  #: app/features/speakers.php:56 app/features/speakers.php:242
4908
+ #: app/libraries/main.php:4241
4909
  msgid "Speaker"
4910
  msgstr ""
4911
 
4945
  msgstr "Vom Facebook Kalender Importieren"
4946
 
4947
  #: app/features/speakers.php:135 app/features/speakers.php:187
4948
+ #: app/libraries/main.php:1078
4949
  msgid "Google+"
4950
  msgstr "Google+"
4951
 
5005
  msgstr "Tag"
5006
 
5007
  #: app/libraries/factory.php:302 app/modules/countdown/details.php:122
5008
+ #: app/skins/available_spot/tpl.php:140 app/skins/countdown/tpl.php:125
5009
+ #: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:218
5010
  msgid "days"
5011
  msgstr "Tage"
5012
 
5015
  msgstr "Stunde"
5016
 
5017
  #: app/libraries/factory.php:304 app/modules/countdown/details.php:129
5018
+ #: app/skins/available_spot/tpl.php:144 app/skins/countdown/tpl.php:131
5019
+ #: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
5020
  msgid "hours"
5021
  msgstr "Stunden"
5022
 
5025
  msgstr "Minute"
5026
 
5027
  #: app/libraries/factory.php:306 app/modules/countdown/details.php:136
5028
+ #: app/skins/available_spot/tpl.php:148 app/skins/countdown/tpl.php:137
5029
+ #: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
5030
  msgid "minutes"
5031
  msgstr "Minuten"
5032
 
5035
  msgstr "Sekunde"
5036
 
5037
  #: app/libraries/factory.php:308 app/modules/countdown/details.php:143
5038
+ #: app/skins/available_spot/tpl.php:152 app/skins/countdown/tpl.php:143
5039
+ #: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
5040
  msgid "seconds"
5041
  msgstr "Sekunden"
5042
 
5054
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
5055
  "Beitrag handelt."
5056
 
5057
+ #: app/libraries/main.php:327 app/libraries/main.php:1197
5058
+ #: app/libraries/main.php:1222
5059
  msgid "Grid View"
5060
  msgstr "Rasterdarstellung"
5061
 
5062
+ #: app/libraries/main.php:328 app/libraries/main.php:1198
5063
+ #: app/libraries/main.php:1223
5064
  msgid "Agenda View"
5065
  msgstr "Agendaansicht"
5066
 
5067
+ #: app/libraries/main.php:329 app/libraries/main.php:1189
5068
+ #: app/libraries/main.php:1214
5069
  msgid "Full Calendar"
5070
  msgstr "Ganzer Kalender"
5071
 
5072
+ #: app/libraries/main.php:331 app/libraries/main.php:1191
5073
+ #: app/libraries/main.php:1216
5074
  msgid "Calendar/Monthly View"
5075
  msgstr "Kalender-/Monatsansicht"
5076
 
5077
+ #: app/libraries/main.php:334 app/libraries/main.php:1194
5078
+ #: app/libraries/main.php:1219
5079
  msgid "Timetable View"
5080
  msgstr "Stundenplan"
5081
 
5082
+ #: app/libraries/main.php:335 app/libraries/main.php:1195
5083
+ #: app/libraries/main.php:1220
5084
  msgid "Masonry View"
5085
  msgstr "Kachel Ansicht"
5086
 
5087
+ #: app/libraries/main.php:336 app/libraries/main.php:1199
5088
+ #: app/libraries/main.php:1224
5089
  msgid "Map View"
5090
  msgstr "Kartenansicht"
5091
 
5109
  msgid "Slider View"
5110
  msgstr "Slideransicht"
5111
 
5112
+ #: app/libraries/main.php:378 app/libraries/main.php:4247
5113
  msgid "SU"
5114
  msgstr "SO"
5115
 
5116
+ #: app/libraries/main.php:379 app/libraries/main.php:4248
5117
  msgid "MO"
5118
  msgstr "MO"
5119
 
5120
+ #: app/libraries/main.php:380 app/libraries/main.php:4249
5121
  msgid "TU"
5122
  msgstr "DI"
5123
 
5124
+ #: app/libraries/main.php:381 app/libraries/main.php:4250
5125
  msgid "WE"
5126
  msgstr "MI"
5127
 
5128
+ #: app/libraries/main.php:382 app/libraries/main.php:4251
5129
  msgid "TH"
5130
  msgstr "DO"
5131
 
5132
+ #: app/libraries/main.php:383 app/libraries/main.php:4252
5133
  msgid "FR"
5134
  msgstr "FR"
5135
 
5136
+ #: app/libraries/main.php:384 app/libraries/main.php:4253
5137
  msgid "SA"
5138
  msgstr "SA"
5139
 
5140
+ #: app/libraries/main.php:1036
5141
  msgid "Events at this location"
5142
  msgstr "Veranstaltungen an diesem Ort "
5143
 
5144
+ #: app/libraries/main.php:1036
5145
  msgid "Event at this location"
5146
  msgstr "Veranstaltung an diesem Ort "
5147
 
5148
+ #: app/libraries/main.php:1077
5149
  msgid "Facebook"
5150
  msgstr "Facebook"
5151
 
5152
+ #: app/libraries/main.php:1079
5153
  msgid "Twitter"
5154
  msgstr "Twitter"
5155
 
5156
+ #: app/libraries/main.php:1080 app/libraries/main.php:1145
5157
  msgid "Linkedin"
5158
  msgstr "Linkedin"
5159
 
5160
+ #: app/libraries/main.php:1081 app/libraries/main.php:1178
5161
  msgid "VK"
5162
  msgstr ""
5163
 
5164
+ #: app/libraries/main.php:1100
5165
  msgid "Share on Facebook"
5166
  msgstr "Teilen auf Facebook"
5167
 
5168
+ #: app/libraries/main.php:1115
5169
  msgid "Google Plus"
5170
  msgstr "Google Plus"
5171
 
5172
+ #: app/libraries/main.php:1130
5173
  msgid "Tweet"
5174
  msgstr "Tweet"
5175
 
5176
+ #: app/libraries/main.php:1200
5177
+ #, fuzzy
5178
+ #| msgid "Shortcode"
5179
+ msgid "Custom Shortcode"
5180
+ msgstr "Shortcode"
5181
+
5182
+ #: app/libraries/main.php:1559
5183
  msgid "Your booking successfully verified."
5184
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
5185
 
5186
+ #: app/libraries/main.php:1560
5187
  msgid "Your booking cannot verify!"
5188
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
5189
 
5190
+ #: app/libraries/main.php:1572
5191
  msgid "Your booking successfully canceled."
5192
  msgstr "Ihre Buchung wurde erfolgreich storniert."
5193
 
5194
+ #: app/libraries/main.php:1573
5195
  msgid "Your booking cannot be canceled."
5196
  msgstr "Ihre Buchung kann nicht storniert werden."
5197
 
5198
+ #: app/libraries/main.php:1577
5199
  msgid "You canceled the payment successfully."
5200
  msgstr "Sie haben die Zahlung erfolgreich storniert."
5201
 
5202
+ #: app/libraries/main.php:1581
5203
  msgid "You returned from payment gateway successfully."
5204
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
5205
 
5206
+ #: app/libraries/main.php:1605
5207
  msgid "Cannot find the booking!"
5208
  msgstr "Kann die Buchung nicht finden!"
5209
 
5210
+ #: app/libraries/main.php:1605
5211
  msgid "Booking is invalid."
5212
  msgstr "Buchung ist ungültig."
5213
 
5214
+ #: app/libraries/main.php:1634
5215
  #, php-format
5216
  msgid "%s Invoice"
5217
  msgstr "% s Rechnung"
5218
 
5219
+ #: app/libraries/main.php:1655
5220
  msgid "Transaction ID"
5221
  msgstr "Transaktions-ID"
5222
 
5223
+ #: app/libraries/main.php:1708
5224
  msgid "Billing"
5225
  msgstr "Abrechnung"
5226
 
5227
+ #: app/libraries/main.php:1719
5228
  msgid "Total"
5229
  msgstr "Gesamt"
5230
 
5231
+ #: app/libraries/main.php:1752
5232
  msgid "Security nonce is not valid."
5233
  msgstr "Sicherheits-Nonce ist ungültig."
5234
 
5235
+ #: app/libraries/main.php:1752 app/libraries/main.php:1784
5236
  msgid "iCal export stopped!"
5237
  msgstr "iCal Export wurde unterbrochen!"
5238
 
5239
+ #: app/libraries/main.php:1784
5240
  #, fuzzy
5241
  #| msgid "Request is invalid!"
5242
  msgid "Request is not valid."
5243
  msgstr "Die Anfrage ist ungültig!"
5244
 
5245
+ #: app/libraries/main.php:2104 app/libraries/main.php:2133
5246
+ #: app/libraries/main.php:2162 app/libraries/main.php:2191
5247
+ #: app/libraries/main.php:2220 app/libraries/main.php:2244
5248
+ #: app/libraries/main.php:2288 app/libraries/main.php:2332
5249
+ #: app/libraries/main.php:2379 app/libraries/main.php:2425
5250
  msgid "Sort"
5251
  msgstr "Sortieren"
5252
 
5253
+ #: app/libraries/main.php:2110 app/libraries/main.php:2139
5254
+ #: app/libraries/main.php:2168 app/libraries/main.php:2197
5255
+ #: app/libraries/main.php:2250 app/libraries/main.php:2294
5256
+ #: app/libraries/main.php:2338 app/libraries/main.php:2385
5257
  msgid "Required Field"
5258
  msgstr "Pflichtfeld"
5259
 
5260
+ #: app/libraries/main.php:2116 app/libraries/main.php:2145
5261
+ #: app/libraries/main.php:2174 app/libraries/main.php:2203
5262
+ #: app/libraries/main.php:2256 app/libraries/main.php:2300
5263
+ #: app/libraries/main.php:2344 app/libraries/main.php:2391
5264
  msgid "Insert a label for this field"
5265
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
5266
 
5267
+ #: app/libraries/main.php:2226
5268
  msgid "HTML and shortcode are allowed."
5269
  msgstr "HTML und shortcodes sind erlaubt."
5270
 
5271
+ #: app/libraries/main.php:2269 app/libraries/main.php:2313
5272
+ #: app/libraries/main.php:2357
5273
  msgid "Option"
5274
  msgstr "Option"
5275
 
5276
+ #: app/libraries/main.php:2391
5277
  #, php-format
5278
  msgid "Instead of %s, the page title with a link will be show."
5279
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
5280
 
5281
+ #: app/libraries/main.php:2393
5282
  msgid "Agreement Page"
5283
  msgstr "Zustimmungsseite"
5284
 
5285
+ #: app/libraries/main.php:2404
5286
  msgid "Checked by default"
5287
  msgstr ""
5288
 
5289
+ #: app/libraries/main.php:2405
5290
  msgid "Unchecked by default"
5291
  msgstr ""
5292
 
5293
+ #: app/libraries/main.php:2427
5294
  msgid "Insert a label for this option"
5295
  msgstr "Ein neues Label für diese Option einfügen"
5296
 
5297
+ #: app/libraries/main.php:2442
5298
  msgid "Free"
5299
  msgstr "kostenfrei"
5300
 
5301
+ #: app/libraries/main.php:3094
5302
  #, php-format
5303
  msgid "Copy of %s"
5304
  msgstr "Kopie von %s"
5305
 
5306
+ #: app/libraries/main.php:3747
5307
  msgid "Booked an event."
5308
  msgstr "Eine Veranstaltung wurde gebucht."
5309
 
5310
+ #: app/libraries/main.php:3788
5311
  #, php-format
5312
  msgid "%s booked %s event."
5313
  msgstr "%s gebuchtes %s Event"
5314
 
5315
+ #: app/libraries/main.php:4230
5316
  msgid "Taxonomies"
5317
  msgstr "Klassifizierung "
5318
 
5319
+ #: app/libraries/main.php:4232
5320
  msgid "Category Plural Label"
5321
  msgstr "Kategorien"
5322
 
5323
+ #: app/libraries/main.php:4233
5324
  msgid "Category Singular Label"
5325
  msgstr "Kategorie"
5326
 
5327
+ #: app/libraries/main.php:4234
5328
  msgid "Label Plural Label"
5329
  msgstr "Labels"
5330
 
5331
+ #: app/libraries/main.php:4235
5332
  msgid "Label Singular Label"
5333
  msgstr "Label"
5334
 
5335
+ #: app/libraries/main.php:4235
5336
  msgid "label"
5337
  msgstr "label"
5338
 
5339
+ #: app/libraries/main.php:4236
5340
  msgid "Location Plural Label"
5341
  msgstr "Veranstaltungsorte"
5342
 
5343
+ #: app/libraries/main.php:4237
5344
  msgid "Location Singular Label"
5345
  msgstr "Veranstaltungsort"
5346
 
5347
+ #: app/libraries/main.php:4238
5348
  msgid "Organizer Plural Label"
5349
  msgstr "Veranstalter"
5350
 
5351
+ #: app/libraries/main.php:4239
5352
  msgid "Organizer Singular Label"
5353
  msgstr "Veranstalter"
5354
 
5355
+ #: app/libraries/main.php:4240
5356
  #, fuzzy
5357
  #| msgid "Label Plural Label"
5358
  msgid "Speaker Plural Label"
5359
  msgstr "Labels"
5360
 
5361
+ #: app/libraries/main.php:4241
5362
  #, fuzzy
5363
  #| msgid "Label Singular Label"
5364
  msgid "Speaker Singular Label"
5365
  msgstr "Label"
5366
 
5367
+ #: app/libraries/main.php:4247
5368
  msgid "Sunday abbreviation"
5369
  msgstr "Sonntag Abkürzung"
5370
 
5371
+ #: app/libraries/main.php:4248
5372
  msgid "Monday abbreviation"
5373
  msgstr "Montag Abkürzung"
5374
 
5375
+ #: app/libraries/main.php:4249
5376
  msgid "Tuesday abbreviation"
5377
  msgstr "Dienstag Abkürzung"
5378
 
5379
+ #: app/libraries/main.php:4250
5380
  msgid "Wednesday abbreviation"
5381
  msgstr "Mittwoch Abkürzung"
5382
 
5383
+ #: app/libraries/main.php:4251
5384
  msgid "Thursday abbreviation"
5385
  msgstr "Donnerstag Abkürzung"
5386
 
5387
+ #: app/libraries/main.php:4252
5388
  msgid "Friday abbreviation"
5389
  msgstr "Freitag Abkürzung"
5390
 
5391
+ #: app/libraries/main.php:4253
5392
  msgid "Saturday abbreviation"
5393
  msgstr "Samstag Abkürzung "
5394
 
5395
+ #: app/libraries/main.php:4257
5396
  msgid "Others"
5397
  msgstr "Andere"
5398
 
5399
+ #: app/libraries/main.php:4259
5400
  msgid "Booking Success Message"
5401
  msgstr "Buchung erfolgreich Mitteilung"
5402
 
5403
+ #: app/libraries/main.php:4259
5404
  msgid ""
5405
  "Thanks for your booking. Your tickets booked, booking verification might be "
5406
  "needed, please check your email."
5408
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
5409
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
5410
 
5411
+ #: app/libraries/main.php:4260 app/widgets/single.php:131
5412
  msgid "Register Button"
5413
  msgstr "Register Button"
5414
 
5415
+ #: app/libraries/main.php:4260 app/skins/available_spot/tpl.php:198
5416
+ #: app/skins/carousel/render.php:128 app/skins/carousel/render.php:153
5417
+ #: app/skins/grid/render.php:111 app/skins/grid/render.php:142
5418
+ #: app/skins/grid/render.php:174 app/skins/grid/render.php:202
5419
+ #: app/skins/list/render.php:94 app/skins/list/render.php:175
5420
+ #: app/skins/masonry/render.php:127 app/skins/single/default.php:218
5421
  #: app/skins/single/default.php:220 app/skins/single/default.php:425
5422
  #: app/skins/single/default.php:427 app/skins/single/m1.php:126
5423
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
5424
  #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
5425
+ #: app/skins/single/modern.php:60 app/skins/slider/render.php:109
5426
+ #: app/skins/slider/render.php:130 app/skins/slider/render.php:150
5427
+ #: app/skins/slider/render.php:170 app/skins/slider/render.php:201
5428
  msgid "REGISTER"
5429
  msgstr "ANMELDEN"
5430
 
5431
+ #: app/libraries/main.php:4261
5432
  msgid "View Detail Button"
5433
  msgstr "Ansicht Detail Button"
5434
 
5435
+ #: app/libraries/main.php:4261 app/skins/carousel/render.php:128
5436
+ #: app/skins/carousel/render.php:153 app/skins/grid/render.php:111
5437
+ #: app/skins/grid/render.php:142 app/skins/grid/render.php:174
5438
+ #: app/skins/grid/render.php:202 app/skins/list/render.php:94
5439
+ #: app/skins/list/render.php:175 app/skins/masonry/render.php:127
5440
+ #: app/skins/slider/render.php:109 app/skins/slider/render.php:130
5441
+ #: app/skins/slider/render.php:150 app/skins/slider/render.php:170
5442
+ #: app/skins/slider/render.php:201
5443
  msgid "View Detail"
5444
  msgstr "Details "
5445
 
5446
+ #: app/libraries/main.php:4262
5447
  msgid "Event Detail Button"
5448
  msgstr "Event Detail Button"
5449
 
5450
+ #: app/libraries/main.php:4262 app/skins/countdown/tpl.php:211
5451
  msgid "Event Detail"
5452
  msgstr "Veranstaltungsdetails"
5453
 
5454
+ #: app/libraries/main.php:4264
5455
  msgid "More Info Link"
5456
  msgstr "Link Mehr Informationen"
5457
 
5458
+ #: app/libraries/main.php:4267
5459
  msgid "Ticket (Singular)"
5460
  msgstr "Ticket"
5461
 
5462
+ #: app/libraries/main.php:4268
5463
  msgid "Tickets (Plural)"
5464
  msgstr "Tickets"
5465
 
5466
+ #: app/libraries/main.php:4334
5467
  msgid "EventON"
5468
  msgstr "EventON"
5469
 
5470
+ #: app/libraries/main.php:4335
5471
  msgid "The Events Calendar"
5472
  msgstr "The Events Calendar"
5473
 
5474
+ #: app/libraries/main.php:4336
5475
  msgid "Events Schedule WP Plugin"
5476
  msgstr "Event Zeitplan WP-Plugin"
5477
 
5478
+ #: app/libraries/main.php:4337
5479
  msgid "Calendarize It"
5480
  msgstr ""
5481
 
5482
+ #: app/libraries/main.php:4411
5483
  msgid "Confirmed"
5484
  msgstr "Bestätigt"
5485
 
5486
+ #: app/libraries/main.php:4412
5487
  msgid "Rejected"
5488
  msgstr "Abgelehnt"
5489
 
5490
+ #: app/libraries/main.php:4413
5491
  msgid "Pending"
5492
  msgstr "Ausstehend"
5493
 
5494
+ #: app/libraries/main.php:4428
5495
  msgid "Waiting"
5496
  msgstr "in Bearbeitung"
5497
 
5535
  msgid "No"
5536
  msgstr "Nein"
5537
 
5538
+ #: app/libraries/render.php:366
5539
  msgid "Skin controller does not exist."
5540
  msgstr "Skin contoller existiert nicht."
5541
 
5542
+ #: app/libraries/render.php:436 app/modules/local-time/details.php:47
5543
  #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
5544
  #: app/skins/single/default.php:280 app/skins/single/m1.php:34
5545
  #: app/skins/single/modern.php:169
5591
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
5592
 
5593
  #: app/modules/booking/steps/form.php:120
5594
+ #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:112
5595
+ #: app/skins/countdown/tpl.php:156 app/skins/countdown/tpl.php:201
5596
  msgid "Next"
5597
  msgstr "Weiter"
5598
 
5718
  msgstr "Keine Veranstaltung gefunden"
5719
 
5720
  #: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
5721
+ #: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:115
5722
  msgid "Load More"
5723
  msgstr "Weitere anzeigen"
5724
 
5725
+ #: app/skins/available_spot/tpl.php:133
5726
  msgid "Available Spot(s):"
5727
  msgstr "Verfügbare Spot (s):"
5728
 
5729
+ #: app/skins/carousel/render.php:20
5730
+ #, fuzzy
5731
+ #| msgid "View %s"
5732
+ msgid "View All"
5733
+ msgstr "Ansicht %s"
5734
 
5735
+ #: app/skins/carousel/render.php:168 app/skins/countdown/tpl.php:150
5736
+ #: app/skins/countdown/tpl.php:194 app/skins/cover/tpl.php:94
5737
+ #: app/skins/list/render.php:111
5738
  msgid "EVENT DETAIL"
5739
  msgstr "VERANSTALTUNGSDETAILS"
5740
 
5741
+ #: app/skins/countdown/tpl.php:112 app/skins/countdown/tpl.php:156
5742
+ #: app/skins/countdown/tpl.php:201
5743
+ #, php-format
5744
+ msgid "%s Upcoming Event"
5745
+ msgstr "%s Kommendes Event"
5746
+
5747
+ #: app/skins/cover/tpl.php:76
5748
  msgid "featured event"
5749
  msgstr "Ausgewählte Veranstaltung"
5750
 
5751
+ #: app/skins/daily_view/render.php:72
5752
  msgid "No event"
5753
  msgstr "Keine Veranstaltung"
5754
 
5761
  msgstr "Alle"
5762
 
5763
  #: app/skins/monthly_view/calendar.php:66
5764
+ #: app/skins/monthly_view/calendar.php:145
5765
  #: app/skins/monthly_view/calendar_clean.php:67
5766
+ #: app/skins/monthly_view/calendar_clean.php:146
5767
  #, php-format
5768
  msgid "Events for %s"
5769
  msgstr "Veranstaltungen für %s"
5770
 
5771
+ #: app/skins/monthly_view/calendar.php:147
5772
+ #: app/skins/monthly_view/calendar_clean.php:148
5773
+ #: app/skins/timetable/render.php:104 app/skins/weekly_view/render.php:84
5774
  msgid "No Events"
5775
  msgstr "Keine Veranstaltungen"
5776
 
6231
  #~ msgid "This booking is not free!"
6232
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
6233
 
6234
+ #~ msgid "Purchase Code"
6235
+ #~ msgstr "Kaufcode"
6236
+
6237
+ #~ msgid "UnVerified"
6238
+ #~ msgstr "Unbestätigt"
6239
+
6240
+ #, fuzzy
6241
+ #~| msgid ""
6242
+ #~| "Please insert your purchase code validation. read documentation for more "
6243
+ #~| "information."
6244
+ #~ msgid ""
6245
+ #~ "Please insert your purchase code validation. Read documentation for more "
6246
+ #~ "information."
6247
+ #~ msgstr ""
6248
+ #~ "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
6249
+ #~ "Dokumentation für mehr Informationen."
6250
+
6251
+ #~ msgid "MEC Deactivation"
6252
+ #~ msgstr "MEC Deaktivierung"
6253
+
6254
+ #~ msgid "Deactivate"
6255
+ #~ msgstr "Deaktivieren"
6256
+
6257
+ #~ msgid ""
6258
+ #~ "For deactivation first delete your purchase from above field then press "
6259
+ #~ "save after that click on deactivate for deactivate this purchase code "
6260
+ #~ "from this domain then you can activate another domain."
6261
+ #~ msgstr ""
6262
+ #~ "Zur Deaktivierung löschen Sie zuerst Ihren Kauf vom obigen Feld, dann "
6263
+ #~ "drücken Sie speichern, nachdem klicken Sie auf deaktivieren um diesen "
6264
+ #~ "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
6265
+ #~ "Domain aktivieren."
6266
+
6267
  #~ msgid "Local Time : "
6268
  #~ msgstr "Lokale Zeit:"
6269
 
languages/modern-events-calendar-lite-en_US.mo CHANGED
Binary file
languages/modern-events-calendar-lite-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
- "POT-Creation-Date: 2019-02-27 11:59+0330\n"
5
- "PO-Revision-Date: 2019-02-27 11:59+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -17,7 +17,7 @@ msgstr ""
17
 
18
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
19
  #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
20
- #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
@@ -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:281
29
- #: app/features/mec.php:310 app/features/mec.php:336
30
  msgid "Shortcode"
31
  msgstr ""
32
 
@@ -47,24 +47,24 @@ msgid "Select Type"
47
  msgstr ""
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:558
50
- #: app/features/mec/settings.php:897
51
  msgid "Event Color"
52
  msgstr ""
53
 
54
- #: app/features/contextual.php:55 app/features/mec.php:267
55
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
56
  #: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
57
- #: app/features/mec/regform.php:24 app/features/mec/settings.php:40
58
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:51
59
- #: app/features/mec/support.php:20
60
  msgid "Settings"
61
  msgstr ""
62
 
63
- #: app/features/contextual.php:62 app/features/events.php:1214
64
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
65
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
66
  #: app/features/mec/regform.php:32 app/features/mec/regform.php:95
67
- #: app/features/mec/settings.php:209 app/features/mec/styles.php:33
68
  #: app/features/mec/styling.php:60 app/features/mec/support.php:29
69
  msgid "Booking Form"
70
  msgstr ""
@@ -81,7 +81,7 @@ msgstr ""
81
  #: app/features/contextual.php:70 app/features/mec/gateways.php:40
82
  #: app/features/mec/gateways.php:97 app/features/mec/ie.php:36
83
  #: app/features/mec/messages.php:40 app/features/mec/notifications.php:39
84
- #: app/features/mec/regform.php:39 app/features/mec/settings.php:216
85
  #: app/features/mec/styles.php:40 app/features/mec/styling.php:67
86
  #: app/features/mec/support.php:36
87
  msgid "Payment Gateways"
@@ -97,7 +97,7 @@ msgstr ""
97
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
98
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
99
  #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:96
100
- #: app/features/mec/regform.php:47 app/features/mec/settings.php:226
101
  #: app/features/mec/styles.php:49 app/features/mec/styling.php:76
102
  #: app/features/mec/support.php:45
103
  msgid "Notifications"
@@ -162,88 +162,87 @@ msgid ""
162
  "\"0\" allowfullscreen></iframe>"
163
  msgstr ""
164
 
165
- #: app/features/contextual.php:117 app/features/mec/settings.php:47
166
- #: app/features/mec/settings.php:278
167
  msgid "General Options"
168
  msgstr ""
169
 
170
- #: app/features/contextual.php:139 app/features/mec/settings.php:59
171
- #: app/features/mec/settings.php:430
172
  msgid "Slugs/Permalinks"
173
  msgstr ""
174
 
175
- #: app/features/contextual.php:152 app/features/mec/settings.php:65
176
- #: app/features/mec/settings.php:450
177
  msgid "Event Details/Single Event Page"
178
  msgstr ""
179
 
180
- #: app/features/contextual.php:166 app/features/mec/settings.php:71
181
- #: app/features/mec/settings.php:491
182
  msgid "Currency Options"
183
  msgstr ""
184
 
185
- #: app/features/contextual.php:182 app/features/mec/settings.php:83
186
- #: app/features/mec/settings.php:558
187
  msgid "Google Maps Options"
188
  msgstr ""
189
 
190
- #: app/features/contextual.php:244 app/features/mec/settings.php:89
191
- #: app/features/mec/settings.php:632
192
  msgid "Google Recaptcha Options"
193
  msgstr ""
194
 
195
- #: app/features/contextual.php:258 app/features/mec/settings.php:119
196
- #: app/features/mec/settings.php:750
197
  msgid "Countdown Options"
198
  msgstr ""
199
 
200
- #: app/features/contextual.php:268 app/features/mec/settings.php:125
201
- #: app/features/mec/settings.php:771
202
  msgid "Social Networks"
203
  msgstr ""
204
 
205
- #: app/features/contextual.php:278 app/features/mec/settings.php:131
206
- #: app/features/mec/settings.php:796
207
  msgid "Next Event Module"
208
  msgstr ""
209
 
210
- #: app/features/contextual.php:286 app/features/mec/settings.php:137
211
- #: app/features/mec/settings.php:824
212
  msgid "Frontend Event Submission"
213
  msgstr ""
214
 
215
- #: app/features/contextual.php:298 app/features/events.php:580
216
- #: app/features/mec/settings.php:149
217
  msgid "Exceptional Days"
218
  msgstr ""
219
 
220
  #: app/features/contextual.php:308 app/features/events.php:263
221
- #: app/features/mec/settings.php:161 app/features/mec/settings.php:998
222
  msgid "Booking"
223
  msgstr ""
224
 
225
- #: app/features/contextual.php:318 app/features/mec/settings.php:167
226
- #: app/features/mec/settings.php:1088
227
  msgid "Coupons"
228
  msgstr ""
229
 
230
- #: app/features/contextual.php:326 app/features/mec/settings.php:185
231
- #: app/features/mec/settings.php:1229
232
  msgid "BuddyPress Integration"
233
  msgstr ""
234
 
235
- #: app/features/contextual.php:334 app/features/mec/settings.php:191
236
- #: app/features/mec/settings.php:1259
237
  msgid "Mailchimp Integration"
238
  msgstr ""
239
 
240
- #: app/features/contextual.php:346 app/features/mec/settings.php:197
241
- #: app/features/mec/settings.php:1295
242
  msgid "MEC Activation"
243
  msgstr ""
244
 
245
  #: app/features/events.php:132 app/features/ix/export.php:34
246
- #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
247
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
248
  msgid "Events"
249
  msgstr ""
@@ -257,7 +256,7 @@ msgstr ""
257
  msgid "Event"
258
  msgstr ""
259
 
260
- #: app/features/events.php:134 app/features/mec.php:253
261
  msgid "Add Event"
262
  msgstr ""
263
 
@@ -265,7 +264,7 @@ msgstr ""
265
  msgid "Add New Event"
266
  msgstr ""
267
 
268
- #: app/features/events.php:136 app/features/ix.php:3175
269
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
270
  msgid "No events found!"
271
  msgstr ""
@@ -297,7 +296,7 @@ msgstr ""
297
  #: app/features/mec/meta_boxes/search_form.php:292
298
  #: app/features/mec/meta_boxes/search_form.php:332
299
  #: app/features/mec/meta_boxes/search_form.php:379
300
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4197
301
  #: app/libraries/skins.php:711 app/skins/single/default.php:156
302
  #: app/skins/single/default.php:363 app/skins/single/m1.php:169
303
  #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
@@ -305,8 +304,8 @@ msgid "Category"
305
  msgstr ""
306
 
307
  #: app/features/events.php:153 app/features/fes/form.php:510
308
- #: app/features/mec.php:255 app/features/mec/meta_boxes/filter.php:70
309
- #: app/libraries/main.php:4196
310
  msgid "Categories"
311
  msgstr ""
312
 
@@ -378,16 +377,16 @@ msgstr ""
378
  msgid "Event Details"
379
  msgstr ""
380
 
381
- #: app/features/events.php:296 app/features/events.php:1966
382
- #: app/features/events.php:2010 app/features/fes/form.php:471
383
  #: app/features/ix.php:2719 app/features/ix.php:2760
384
- #: app/features/mec/settings.php:873 app/libraries/main.php:4229
385
  #: app/widgets/single.php:103
386
  msgid "Event Cost"
387
  msgstr ""
388
 
389
  #: app/features/events.php:299 app/features/fes/form.php:474
390
- #: app/libraries/main.php:4230 app/skins/single/default.php:91
391
  #: app/skins/single/default.php:298 app/skins/single/m1.php:49
392
  #: app/skins/single/modern.php:184
393
  msgid "Cost"
@@ -408,12 +407,12 @@ msgstr ""
408
  msgid "Name"
409
  msgstr ""
410
 
411
- #: app/features/events.php:381 app/features/events.php:1249
412
  #: app/features/fes/form.php:429 app/features/mec/regform.php:137
413
  #: app/features/organizers.php:110 app/features/organizers.php:150
414
  #: app/features/profile/profile.php:93 app/features/speakers.php:119
415
- #: app/features/speakers.php:179 app/libraries/main.php:1080
416
- #: app/libraries/main.php:1161 app/libraries/main.php:2107
417
  #: app/libraries/notifications.php:560 app/modules/booking/steps/form.php:31
418
  #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
419
  #: app/skins/single/default.php:198 app/skins/single/default.php:405
@@ -427,11 +426,11 @@ msgid "Date and Time"
427
  msgstr ""
428
 
429
  #: app/features/events.php:389 app/features/events.php:393
430
- #: app/features/events.php:1787 app/features/events.php:1966
431
- #: app/features/events.php:2010 app/features/fes/form.php:227
432
  #: app/features/fes/form.php:231 app/features/ix.php:2719
433
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
434
- #: app/features/mec/dashboard.php:269
435
  #: app/features/mec/meta_boxes/display_options.php:42
436
  #: app/features/mec/meta_boxes/display_options.php:139
437
  #: app/features/mec/meta_boxes/display_options.php:235
@@ -443,31 +442,31 @@ msgstr ""
443
  #: app/features/mec/meta_boxes/display_options.php:544
444
  #: app/features/mec/meta_boxes/display_options.php:590
445
  #: app/features/mec/meta_boxes/display_options.php:633
446
- #: app/features/mec/meta_boxes/display_options.php:799
447
- #: app/features/mec/meta_boxes/display_options.php:861
448
  msgid "Start Date"
449
  msgstr ""
450
 
451
  #: app/features/events.php:421 app/features/events.php:461
452
- #: app/features/events.php:866 app/features/events.php:884
453
- #: app/features/events.php:969 app/features/events.php:987
454
  #: app/features/fes/form.php:259 app/features/fes/form.php:299
455
  msgid "AM"
456
  msgstr ""
457
 
458
  #: app/features/events.php:422 app/features/events.php:462
459
- #: app/features/events.php:867 app/features/events.php:885
460
- #: app/features/events.php:970 app/features/events.php:988
461
  #: app/features/fes/form.php:260 app/features/fes/form.php:300
462
  msgid "PM"
463
  msgstr ""
464
 
465
  #: app/features/events.php:429 app/features/events.php:433
466
- #: app/features/events.php:1788 app/features/events.php:1966
467
- #: app/features/events.php:2010 app/features/fes/form.php:267
468
  #: app/features/fes/form.php:271 app/features/ix.php:2719
469
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
470
- #: app/features/mec/dashboard.php:270
471
  msgid "End Date"
472
  msgstr ""
473
 
@@ -502,7 +501,7 @@ msgid "Repeats"
502
  msgstr ""
503
 
504
  #: app/features/events.php:491 app/features/fes/form.php:329
505
- #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:71
506
  msgid "Daily"
507
  msgstr ""
508
 
@@ -524,12 +523,12 @@ msgid "Weekly"
524
  msgstr ""
525
 
526
  #: app/features/events.php:496 app/features/fes/form.php:334
527
- #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:69
528
  msgid "Monthly"
529
  msgstr ""
530
 
531
  #: app/features/events.php:497 app/features/fes/form.php:335
532
- #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:68
533
  msgid "Yearly"
534
  msgstr ""
535
 
@@ -584,277 +583,279 @@ msgstr ""
584
  msgid "Sunday"
585
  msgstr ""
586
 
587
- #: app/features/events.php:518 app/features/events.php:590
588
- #: app/features/fes/form.php:356 app/features/profile/profile.php:31
589
- #: app/libraries/main.php:1622 app/modules/booking/steps/tickets.php:22
590
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
591
- #: app/skins/single/default.php:262 app/skins/single/m1.php:16
592
- #: app/skins/single/modern.php:151
593
- msgid "Date"
 
 
 
 
594
  msgstr ""
595
 
596
- #: app/features/events.php:519 app/features/events.php:591
597
- #: app/features/events.php:667 app/features/events.php:722
598
- #: app/features/events.php:843 app/features/events.php:914
599
- #: app/features/events.php:1017 app/features/events.php:1068
600
- #: app/features/events.php:1149 app/features/fes/form.php:357
601
  msgid "Add"
602
  msgstr ""
603
 
604
- #: app/features/events.php:520 app/features/fes/form.php:358
605
  msgid "Add certain days to event occurrence dates."
606
  msgstr ""
607
 
608
- #: app/features/events.php:542 app/features/fes/form.php:380
609
  msgid "Ends Repeat"
610
  msgstr ""
611
 
612
- #: app/features/events.php:546 app/features/fes/form.php:384
613
  msgid "Never"
614
  msgstr ""
615
 
616
- #: app/features/events.php:551 app/features/fes/form.php:389
617
  msgid "On"
618
  msgstr ""
619
 
620
- #: app/features/events.php:558 app/features/fes/form.php:396
621
  msgid "After"
622
  msgstr ""
623
 
624
- #: app/features/events.php:560 app/features/fes/form.php:398
625
  msgid "Occurrences times"
626
  msgstr ""
627
 
628
- #: app/features/events.php:561 app/features/fes/form.php:399
629
  msgid ""
630
  "The event will finish after certain repeats. For example if you set it to "
631
  "10, the event will finish after 10 repeats."
632
  msgstr ""
633
 
634
- #: app/features/events.php:586
635
  msgid "Exclude certain days"
636
  msgstr ""
637
 
638
- #: app/features/events.php:592
 
 
 
 
 
 
 
 
 
639
  msgid "Exclude certain days from event occurrence dates."
640
  msgstr ""
641
 
642
- #: app/features/events.php:636 app/libraries/render.php:428
643
  msgid "Day 1"
644
  msgstr ""
645
 
646
- #: app/features/events.php:649 app/features/mec/settings.php:927
647
  #: app/skins/single.php:246
648
  msgid "Hourly Schedule"
649
  msgstr ""
650
 
651
- #: app/features/events.php:652
652
  msgid "Add Day"
653
  msgstr ""
654
 
655
- #: app/features/events.php:653
656
  msgid ""
657
  "Add new days for schedule. For example if your event is multiple days, you "
658
  "can add a different schedule for each day!"
659
  msgstr ""
660
 
661
- #: app/features/events.php:659
662
  #, php-format
663
  msgid "Day %s"
664
  msgstr ""
665
 
666
- #: app/features/events.php:662 app/features/events.php:675
667
- #: app/features/events.php:695 app/features/events.php:717
668
- #: app/features/events.php:733 app/features/events.php:1155
669
- #: app/features/events.php:1177 app/features/events.php:1784
670
- #: app/features/events.php:1966 app/features/events.php:2010
671
  #: app/features/fes/form.php:216 app/features/ix.php:2719
672
- #: app/features/ix.php:2760 app/features/mec/settings.php:1189
673
- #: app/features/mec/settings.php:1209 app/features/mec/styling.php:199
674
  msgid "Title"
675
  msgstr ""
676
 
677
- #: app/features/events.php:664 app/features/events.php:677
678
- #: app/features/events.php:697 app/features/events.php:719
679
- #: app/features/events.php:735 app/features/events.php:909
680
- #: app/features/events.php:925 app/features/events.php:939
681
- #: app/features/events.php:1012 app/features/events.php:1029
682
- #: app/features/events.php:1088 app/features/events.php:1113
683
- #: app/features/events.php:1166 app/features/events.php:1188
684
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1138
685
- #: app/features/mec/settings.php:1161 app/features/mec/settings.php:1200
686
- #: app/features/mec/settings.php:1220 app/libraries/main.php:2086
687
- #: app/libraries/main.php:2115 app/libraries/main.php:2144
688
- #: app/libraries/main.php:2173 app/libraries/main.php:2195
689
- #: app/libraries/main.php:2226 app/libraries/main.php:2270
690
- #: app/libraries/main.php:2314 app/libraries/main.php:2361
691
- #: app/libraries/main.php:2399
692
  msgid "Remove"
693
  msgstr ""
694
 
695
- #: app/features/events.php:668 app/features/events.php:723
696
  msgid "Add new hourly schedule row"
697
  msgstr ""
698
 
699
- #: app/features/events.php:673 app/features/events.php:693
700
- #: app/features/events.php:731
701
  msgid "From e.g. 8:15"
702
  msgstr ""
703
 
704
- #: app/features/events.php:674 app/features/events.php:694
705
- #: app/features/events.php:732
706
  msgid "To e.g. 8:45"
707
  msgstr ""
708
 
709
- #: app/features/events.php:676 app/features/events.php:696
710
- #: app/features/events.php:734 app/features/events.php:890
711
- #: app/features/events.php:993
712
  msgid "Description"
713
  msgstr ""
714
 
715
- #: app/features/events.php:680 app/features/events.php:700
716
- #: app/features/events.php:738 app/features/fes/form.php:603
717
- #: app/features/mec.php:263 app/features/mec/settings.php:77
718
- #: app/features/mec/settings.php:921 app/features/speakers.php:57
719
- #: app/libraries/main.php:4204 app/modules/speakers/details.php:18
720
  msgid "Speakers"
721
  msgstr ""
722
 
723
- #: app/features/events.php:714 app/features/events.php:718
724
  msgid "Day :dd:"
725
  msgstr ""
726
 
727
- #: app/features/events.php:765 app/features/fes/form.php:448
728
- #: app/features/mec/settings.php:867
729
  msgid "Event Links"
730
  msgstr ""
731
 
732
- #: app/features/events.php:767 app/features/fes/form.php:450
733
- #: app/libraries/main.php:4227
734
  msgid "Event Link"
735
  msgstr ""
736
 
737
- #: app/features/events.php:768 app/features/events.php:773
738
  #: app/features/fes/form.php:451 app/features/fes/form.php:456
739
  msgid "eg. http://yoursite.com/your-event"
740
  msgstr ""
741
 
742
- #: app/features/events.php:769 app/features/fes/form.php:452
743
  msgid ""
744
  "If you fill it, it will be replaced instead of default event page link. "
745
  "Insert full link including http(s)://"
746
  msgstr ""
747
 
748
- #: app/features/events.php:772 app/features/fes/form.php:455
749
- #: app/libraries/main.php:4228 app/skins/single/default.php:105
750
  #: app/skins/single/default.php:312 app/skins/single/m1.php:190
751
  #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
752
  #: app/widgets/single.php:107
753
  msgid "More Info"
754
  msgstr ""
755
 
756
- #: app/features/events.php:774 app/features/fes/form.php:457
757
  msgid "More Information"
758
  msgstr ""
759
 
760
- #: app/features/events.php:776 app/features/fes/form.php:459
761
  msgid "Current Window"
762
  msgstr ""
763
 
764
- #: app/features/events.php:777 app/features/fes/form.php:460
765
  msgid "New Window"
766
  msgstr ""
767
 
768
- #: app/features/events.php:779 app/features/fes/form.php:462
769
  msgid ""
770
  "If you fill it, it will be shown in event details page as an optional link. "
771
  "Insert full link including http(s)://"
772
  msgstr ""
773
 
774
- #: app/features/events.php:810
775
  msgid "Total booking limits"
776
  msgstr ""
777
 
778
- #: app/features/events.php:815 app/features/events.php:907
779
- #: app/features/events.php:1010 app/modules/booking/default.php:81
780
- #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
 
781
  msgid "Unlimited"
782
  msgstr ""
783
 
784
- #: app/features/events.php:817
785
  msgid "100"
786
  msgstr ""
787
 
788
- #: app/features/events.php:835 app/libraries/book.php:60
789
- #: app/libraries/main.php:4232 app/modules/booking/steps/tickets.php:40
790
  msgid "Tickets"
791
  msgstr ""
792
 
793
- #: app/features/events.php:838
794
  msgid ""
795
  "You're translating an event so MEC will use the original event for tickets "
796
  "and booking. You can only translate the ticket name and description. Please "
797
  "define exact tickets that you defined in the original event here."
798
  msgstr ""
799
 
800
- #: app/features/events.php:849 app/features/events.php:952
801
  msgid "Ticket Name"
802
  msgstr ""
803
 
804
- #: app/features/events.php:853 app/features/events.php:956
805
- #: app/features/events.php:1966 app/features/events.php:2010
806
  #: app/features/ix.php:2719 app/features/ix.php:2760
807
  msgid "Start Time"
808
  msgstr ""
809
 
810
- #: app/features/events.php:871 app/features/events.php:974
811
- #: app/features/events.php:1966 app/features/events.php:2010
812
  #: app/features/ix.php:2719 app/features/ix.php:2760
813
  msgid "End Time"
814
  msgstr ""
815
 
816
- #: app/features/events.php:894 app/features/events.php:923
817
- #: app/features/events.php:937 app/features/events.php:997
818
- #: app/features/events.php:1027 app/features/events.php:1159
819
- #: app/features/events.php:1181 app/features/mec/settings.php:1193
820
- #: app/features/mec/settings.php:1213
821
  msgid "Price"
822
  msgstr ""
823
 
824
- #: app/features/events.php:895 app/features/events.php:998
825
  msgid "Insert 0 for free ticket. Only numbers please."
826
  msgstr ""
827
 
828
- #: app/features/events.php:898 app/features/events.php:1001
829
  msgid "Price Label"
830
  msgstr ""
831
 
832
- #: app/features/events.php:899 app/features/events.php:1002
833
  msgid "For showing on website. e.g. $15"
834
  msgstr ""
835
 
836
- #: app/features/events.php:903 app/features/events.php:1006
837
  msgid "Available Tickets"
838
  msgstr ""
839
 
840
- #: app/features/events.php:913 app/features/events.php:1016
841
  msgid "Price per Date"
842
  msgstr ""
843
 
844
- #: app/features/events.php:921 app/features/events.php:935
845
- #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
846
- #: app/features/ix/import_g_calendar.php:51
847
- #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
848
- msgid "Start"
849
- msgstr ""
850
-
851
- #: app/features/events.php:922 app/features/events.php:936
852
- #: app/features/events.php:1026
853
- msgid "End"
854
- msgstr ""
855
-
856
- #: app/features/events.php:924 app/features/events.php:938
857
- #: app/features/events.php:1028 app/features/labels.php:60
858
  #: app/features/mec/meta_boxes/display_options.php:660
859
  #: app/features/mec/meta_boxes/search_form.php:52
860
  #: app/features/mec/meta_boxes/search_form.php:99
@@ -868,94 +869,94 @@ msgstr ""
868
  msgid "Label"
869
  msgstr ""
870
 
871
- #: app/features/events.php:1058
872
  msgid "Fees"
873
  msgstr ""
874
 
875
- #: app/features/events.php:1063 app/features/events.php:1144
876
- #: app/features/events.php:1219
877
  msgid "Inherit from global options"
878
  msgstr ""
879
 
880
- #: app/features/events.php:1074 app/features/events.php:1099
881
- #: app/features/mec/settings.php:1124 app/features/mec/settings.php:1147
882
  msgid "Fee Title"
883
  msgstr ""
884
 
885
- #: app/features/events.php:1078 app/features/events.php:1103
886
- #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
887
  msgid "Amount"
888
  msgstr ""
889
 
890
- #: app/features/events.php:1079 app/features/events.php:1104
891
- #: app/features/mec/settings.php:1129 app/features/mec/settings.php:1152
892
  msgid ""
893
  "Fee amount, considered as fixed amount if you set the type to amount "
894
  "otherwise considered as percentage"
895
  msgstr ""
896
 
897
- #: app/features/events.php:1083 app/features/events.php:1108
898
- #: app/features/mec/settings.php:1133 app/features/mec/settings.php:1156
899
  msgid "Percent"
900
  msgstr ""
901
 
902
- #: app/features/events.php:1084 app/features/events.php:1109
903
- #: app/features/mec/settings.php:1134 app/features/mec/settings.php:1157
904
  msgid "Amount (Per Ticket)"
905
  msgstr ""
906
 
907
- #: app/features/events.php:1085 app/features/events.php:1110
908
- #: app/features/mec/settings.php:1135 app/features/mec/settings.php:1158
909
  msgid "Amount (Per Booking)"
910
  msgstr ""
911
 
912
- #: app/features/events.php:1139 app/features/mec/settings.php:945
913
  msgid "Ticket Variations / Options"
914
  msgstr ""
915
 
916
- #: app/features/events.php:1160 app/features/events.php:1182
917
- #: app/features/mec/settings.php:1194 app/features/mec/settings.php:1214
918
  msgid "Option Price"
919
  msgstr ""
920
 
921
- #: app/features/events.php:1163 app/features/events.php:1185
922
- #: app/features/mec/settings.php:1197 app/features/mec/settings.php:1217
923
  msgid "Maximum Per Ticket"
924
  msgstr ""
925
 
926
- #: app/features/events.php:1164 app/features/events.php:1186
927
- #: app/features/mec/settings.php:1198 app/features/mec/settings.php:1218
928
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
929
  msgstr ""
930
 
931
- #: app/features/events.php:1248 app/features/mec/regform.php:136
932
- #: app/libraries/main.php:2078
933
  msgid "Text"
934
  msgstr ""
935
 
936
- #: app/features/events.php:1250 app/features/mec/regform.php:138
937
  #: app/features/organizers.php:102 app/features/organizers.php:146
938
  #: app/features/speakers.php:111 app/features/speakers.php:175
939
- #: app/features/speakers.php:244 app/libraries/main.php:2136
940
  msgid "Tel"
941
  msgstr ""
942
 
943
- #: app/features/events.php:1251 app/features/mec/regform.php:139
944
- #: app/libraries/main.php:2165
945
  msgid "Textarea"
946
  msgstr ""
947
 
948
- #: app/features/events.php:1252 app/features/mec/regform.php:140
949
- #: app/libraries/main.php:2218
950
  msgid "Checkboxes"
951
  msgstr ""
952
 
953
- #: app/features/events.php:1253 app/features/mec/regform.php:141
954
- #: app/libraries/main.php:2262
955
  msgid "Radio Buttons"
956
  msgstr ""
957
 
958
- #: app/features/events.php:1254 app/features/mec/meta_boxes/search_form.php:34
959
  #: app/features/mec/meta_boxes/search_form.php:41
960
  #: app/features/mec/meta_boxes/search_form.php:48
961
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1001,43 +1002,43 @@ msgstr ""
1001
  #: app/features/mec/meta_boxes/search_form.php:443
1002
  #: app/features/mec/meta_boxes/search_form.php:450
1003
  #: app/features/mec/meta_boxes/search_form.php:457
1004
- #: app/features/mec/regform.php:142 app/libraries/main.php:2306
1005
  msgid "Dropdown"
1006
  msgstr ""
1007
 
1008
- #: app/features/events.php:1255 app/features/mec/regform.php:143
1009
- #: app/libraries/main.php:2353
1010
  msgid "Agreement"
1011
  msgstr ""
1012
 
1013
- #: app/features/events.php:1256 app/features/mec/regform.php:144
1014
- #: app/libraries/main.php:2194
1015
  msgid "Paragraph"
1016
  msgstr ""
1017
 
1018
- #: app/features/events.php:1730 app/features/events.php:1745
1019
- #: app/features/events.php:1759
1020
  #, php-format
1021
  msgid "Show all %s"
1022
  msgstr ""
1023
 
1024
- #: app/features/events.php:1730
1025
  msgid "labels"
1026
  msgstr ""
1027
 
1028
- #: app/features/events.php:1745
1029
  msgid "locations"
1030
  msgstr ""
1031
 
1032
- #: app/features/events.php:1759
1033
  msgid "organizers"
1034
  msgstr ""
1035
 
1036
- #: app/features/events.php:1785 app/features/events.php:1966
1037
- #: app/features/events.php:2010 app/features/ix.php:2719
1038
  #: app/features/ix.php:2760 app/features/locations.php:58
1039
  #: app/features/locations.php:229 app/features/locations.php:281
1040
- #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1041
  #: app/features/mec/meta_boxes/display_options.php:661
1042
  #: app/features/mec/meta_boxes/search_form.php:38
1043
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1047,18 +1048,17 @@ msgstr ""
1047
  #: app/features/mec/meta_boxes/search_form.php:299
1048
  #: app/features/mec/meta_boxes/search_form.php:339
1049
  #: app/features/mec/meta_boxes/search_form.php:386
1050
- #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1616
1051
- #: app/libraries/main.php:4201 app/libraries/skins.php:737
1052
  #: app/skins/single/default.php:141 app/skins/single/default.php:348
1053
  #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1054
  #: app/skins/single/modern.php:83
1055
  msgid "Location"
1056
  msgstr ""
1057
 
1058
- #: app/features/events.php:1786 app/features/events.php:1966
1059
- #: app/features/events.php:2010 app/features/ix.php:2719
1060
- #: app/features/ix.php:2760 app/features/mec/dashboard.php:113
1061
- #: app/features/mec/meta_boxes/display_options.php:662
1062
  #: app/features/mec/meta_boxes/search_form.php:45
1063
  #: app/features/mec/meta_boxes/search_form.php:92
1064
  #: app/features/mec/meta_boxes/search_form.php:139
@@ -1070,63 +1070,63 @@ msgstr ""
1070
  #: app/features/mec/meta_boxes/search_form.php:440
1071
  #: app/features/organizers.php:58 app/features/organizers.php:199
1072
  #: app/features/organizers.php:255 app/features/organizers.php:257
1073
- #: app/libraries/main.php:4203 app/libraries/skins.php:763
1074
  #: app/skins/single/default.php:181 app/skins/single/default.php:388
1075
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1076
  #: app/skins/single/modern.php:21
1077
  msgid "Organizer"
1078
  msgstr ""
1079
 
1080
- #: app/features/events.php:1790
1081
  msgid "Repeat"
1082
  msgstr ""
1083
 
1084
- #: app/features/events.php:1791
1085
  msgid "Author"
1086
  msgstr ""
1087
 
1088
- #: app/features/events.php:1901 app/features/events.php:1902
1089
  msgid "iCal Export"
1090
  msgstr ""
1091
 
1092
- #: app/features/events.php:1904 app/features/events.php:1905
1093
  msgid "CSV Export"
1094
  msgstr ""
1095
 
1096
- #: app/features/events.php:1907 app/features/events.php:1908
1097
  msgid "MS Excel Export"
1098
  msgstr ""
1099
 
1100
- #: app/features/events.php:1910 app/features/events.php:1911
1101
  msgid "XML Export"
1102
  msgstr ""
1103
 
1104
- #: app/features/events.php:1913 app/features/events.php:1914
1105
  msgid "JSON Export"
1106
  msgstr ""
1107
 
1108
- #: app/features/events.php:1916 app/features/events.php:1917
1109
  msgid "Duplicate"
1110
  msgstr ""
1111
 
1112
- #: app/features/events.php:1966 app/features/events.php:2010
1113
  #: app/features/ix.php:2719 app/features/ix.php:2760
1114
  #: app/features/labels.php:176 app/features/locations.php:228
1115
  #: app/features/organizers.php:198 app/features/speakers.php:241
1116
  msgid "ID"
1117
  msgstr ""
1118
 
1119
- #: app/features/events.php:1966 app/features/events.php:2010
1120
  #: app/features/ix.php:2719 app/features/ix.php:2760
1121
  msgid "Link"
1122
  msgstr ""
1123
 
1124
- #: app/features/events.php:1966 app/features/events.php:2010
1125
  #, php-format
1126
  msgid "%s Tel"
1127
  msgstr ""
1128
 
1129
- #: app/features/events.php:1966 app/features/events.php:2010
1130
  #, php-format
1131
  msgid "%s Email"
1132
  msgstr ""
@@ -1201,7 +1201,7 @@ msgstr ""
1201
  msgid "eg. John Smith"
1202
  msgstr ""
1203
 
1204
- #: app/features/fes/form.php:488 app/features/mec/settings.php:879
1205
  msgid "Featured Image"
1206
  msgstr ""
1207
 
@@ -1210,14 +1210,14 @@ msgid "Remove Image"
1210
  msgstr ""
1211
 
1212
  #: app/features/fes/form.php:535 app/features/labels.php:61
1213
- #: app/features/labels.php:220 app/features/mec.php:256
1214
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4198
1215
  #: app/skins/single/default.php:120 app/skins/single/default.php:327
1216
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1217
  msgid "Labels"
1218
  msgstr ""
1219
 
1220
- #: app/features/fes/form.php:580 app/features/mec.php:254
1221
  #: app/features/mec/meta_boxes/filter.php:138
1222
  msgid "Tags"
1223
  msgstr ""
@@ -1254,7 +1254,7 @@ msgstr ""
1254
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1255
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1256
  #: app/features/mec/notifications.php:76 app/features/mec/regform.php:75
1257
- #: app/features/mec/settings.php:254 app/features/mec/styles.php:77
1258
  #: app/features/mec/styling.php:104 app/features/mec/support.php:73
1259
  msgid "Import / Export"
1260
  msgstr ""
@@ -1287,7 +1287,7 @@ msgstr ""
1287
  msgid "Both of API key and Calendar ID are required!"
1288
  msgstr ""
1289
 
1290
- #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3182
1291
  msgid "Please select some events to import!"
1292
  msgstr ""
1293
 
@@ -1335,21 +1335,21 @@ msgstr ""
1335
  msgid "%s events failed to add for following reasons: %s"
1336
  msgstr ""
1337
 
1338
- #: app/features/ix.php:3145
1339
  msgid "Please insert your Facebook page's link."
1340
  msgstr ""
1341
 
1342
- #: app/features/ix.php:3153
1343
  msgid ""
1344
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1345
  "valid Facebook page link."
1346
  msgstr ""
1347
 
1348
- #: app/features/ix.php:3185
1349
  msgid "Please insert your facebook page's link."
1350
  msgstr ""
1351
 
1352
- #: app/features/ix.php:3190
1353
  msgid ""
1354
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1355
  "valid facebook page link."
@@ -1388,7 +1388,7 @@ msgstr ""
1388
 
1389
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1390
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1391
- #: app/features/ix/import_f_calendar.php:75
1392
  #: app/features/ix/import_g_calendar.php:16
1393
  #: app/features/ix/import_g_calendar.php:103
1394
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
@@ -1414,7 +1414,7 @@ msgid ""
1414
  "This will export all of your website events' data into your desired format."
1415
  msgstr ""
1416
 
1417
- #: app/features/ix/export.php:25 app/features/mec/settings.php:680
1418
  msgid "iCal"
1419
  msgstr ""
1420
 
@@ -1489,21 +1489,21 @@ msgid "Authenticate"
1489
  msgstr ""
1490
 
1491
  #: app/features/ix/export_g_calendar.php:57
1492
- #: app/features/ix/import_f_calendar.php:50
1493
  #: app/features/ix/import_g_calendar.php:64
1494
  #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1495
  msgid "Select All"
1496
  msgstr ""
1497
 
1498
  #: app/features/ix/export_g_calendar.php:58
1499
- #: app/features/ix/import_f_calendar.php:51
1500
  #: app/features/ix/import_g_calendar.php:65
1501
  #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1502
  msgid "Deselect All"
1503
  msgstr ""
1504
 
1505
  #: app/features/ix/export_g_calendar.php:59
1506
- #: app/features/ix/import_f_calendar.php:52
1507
  #: app/features/ix/import_g_calendar.php:66
1508
  #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1509
  msgid "Toggle"
@@ -1519,7 +1519,7 @@ msgstr ""
1519
  msgid "Add to Google Calendar"
1520
  msgstr ""
1521
 
1522
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1392
1523
  msgid "Checking ..."
1524
  msgstr ""
1525
 
@@ -1561,10 +1561,10 @@ msgstr ""
1561
  msgid "ICS Feed"
1562
  msgstr ""
1563
 
1564
- #: app/features/ix/import.php:46 app/features/mec/settings.php:561
1565
- #: app/features/mec/settings.php:711 app/features/mec/settings.php:729
1566
- #: app/features/mec/settings.php:1001 app/features/mec/settings.php:1091
1567
- #: app/features/mec/settings.php:1108 app/features/mec/settings.php:1173
1568
  #, php-format
1569
  msgid "%s is required to use this feature."
1570
  msgstr ""
@@ -1576,11 +1576,10 @@ msgstr ""
1576
  #: app/features/mec/meta_boxes/display_options.php:578
1577
  #: app/features/mec/meta_boxes/display_options.php:628
1578
  #: app/features/mec/meta_boxes/display_options.php:766
1579
- #: app/features/mec/settings.php:561 app/features/mec/settings.php:711
1580
- #: app/features/mec/settings.php:729 app/features/mec/settings.php:1001
1581
- #: app/features/mec/settings.php:1091 app/features/mec/settings.php:1108
1582
- #: app/features/mec/settings.php:1173 app/features/mec/settings.php:1298
1583
- #: app/libraries/skins.php:249
1584
  msgid "Pro version of Modern Events Calendar"
1585
  msgstr ""
1586
 
@@ -1596,38 +1595,47 @@ msgstr ""
1596
  msgid "Import all of your Facebook events into MEC."
1597
  msgstr ""
1598
 
 
 
 
 
 
1599
  #: app/features/ix/import_f_calendar.php:29
 
 
 
 
1600
  msgid "Facebook Page Link"
1601
  msgstr ""
1602
 
1603
- #: app/features/ix/import_f_calendar.php:47
1604
  msgid "Facebook Events"
1605
  msgstr ""
1606
 
1607
- #: app/features/ix/import_f_calendar.php:48
1608
  #, php-format
1609
  msgid ""
1610
  "We found %s events for %s page. Please select your desired events to import."
1611
  msgstr ""
1612
 
1613
- #: app/features/ix/import_f_calendar.php:59 app/features/ix/thirdparty.php:58
1614
  #, php-format
1615
  msgid "Event Title: %s"
1616
  msgstr ""
1617
 
1618
- #: app/features/ix/import_f_calendar.php:66
1619
  #: app/features/ix/import_g_calendar.php:87
1620
  #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1621
  msgid "Import Options"
1622
  msgstr ""
1623
 
1624
- #: app/features/ix/import_f_calendar.php:70
1625
  #: app/features/ix/import_g_calendar.php:97
1626
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1627
  msgid "Import Locations"
1628
  msgstr ""
1629
 
1630
- #: app/features/ix/import_f_calendar.php:85
1631
  #, php-format
1632
  msgid "%s events successfully imported to your website from Facebook Calendar."
1633
  msgstr ""
@@ -1847,7 +1855,7 @@ msgstr ""
1847
  #: app/features/mec/meta_boxes/display_options.php:684
1848
  #: app/features/mec/meta_boxes/display_options.php:723
1849
  #: app/features/mec/meta_boxes/display_options.php:791
1850
- #: app/features/mec/meta_boxes/display_options.php:851
1851
  msgid "Style"
1852
  msgstr ""
1853
 
@@ -1856,28 +1864,28 @@ msgid "Normal"
1856
  msgstr ""
1857
 
1858
  #: app/features/labels.php:116 app/features/labels.php:141
1859
- #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:31
1860
- #: app/skins/carousel/render.php:29 app/skins/countdown/tpl.php:24
1861
  #: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:22
1862
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
1863
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
1864
  #: app/skins/monthly_view/calendar_clean.php:81
1865
- #: app/skins/monthly_view/calendar_novel.php:76 app/skins/slider/render.php:48
1866
- #: app/skins/timetable/render.php:32 app/skins/timetable/render.php:95
1867
  #: app/skins/weekly_view/render.php:30 app/skins/yearly_view/render.php:47
1868
  msgid "Featured"
1869
  msgstr ""
1870
 
1871
  #: app/features/labels.php:117 app/features/labels.php:142
1872
- #: app/libraries/main.php:4391 app/skins/agenda/render.php:41
1873
- #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:33
1874
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
1875
  #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
1876
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:32
1877
  #: app/skins/monthly_view/calendar.php:84
1878
  #: app/skins/monthly_view/calendar_clean.php:85
1879
- #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:52
1880
- #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:99
1881
  #: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:51
1882
  msgid "Canceled"
1883
  msgstr ""
@@ -1902,8 +1910,9 @@ msgstr ""
1902
  msgid "Event %s"
1903
  msgstr ""
1904
 
1905
- #: app/features/locations.php:59 app/features/mec.php:257
1906
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:4200
 
1907
  msgid "Locations"
1908
  msgstr ""
1909
 
@@ -1974,7 +1983,7 @@ msgstr ""
1974
  msgid "eg. City Hall"
1975
  msgstr ""
1976
 
1977
- #: app/features/locations.php:298 app/features/mec/settings.php:909
1978
  #: app/widgets/single.php:115
1979
  msgid "Event Location"
1980
  msgstr ""
@@ -1997,110 +2006,134 @@ msgstr ""
1997
  msgid "Don't show map in single event page"
1998
  msgstr ""
1999
 
2000
- #: app/features/mec.php:146
 
 
 
 
 
 
 
 
 
 
2001
  msgid ""
2002
  "Your options is not in JSON format. Please insert correct options in this "
2003
  "field and try again."
2004
  msgstr ""
2005
 
2006
- #: app/features/mec.php:151
2007
  msgid "Your options field can not be empty!"
2008
  msgstr ""
2009
 
2010
- #: app/features/mec.php:155
2011
  msgid "Your options imported successfuly."
2012
  msgstr ""
2013
 
2014
- #: app/features/mec.php:258 app/features/mec/meta_boxes/filter.php:104
2015
- #: app/features/organizers.php:59 app/libraries/main.php:4202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2016
  msgid "Organizers"
2017
  msgstr ""
2018
 
2019
- #: app/features/mec.php:266 app/features/mec.php:280
2020
- #: app/features/mec/dashboard.php:99
2021
  msgid "Shortcodes"
2022
  msgstr ""
2023
 
2024
- #: app/features/mec.php:267
2025
  msgid "MEC - Settings"
2026
  msgstr ""
2027
 
2028
- #: app/features/mec.php:282
2029
  msgid "Add Shortcode"
2030
  msgstr ""
2031
 
2032
- #: app/features/mec.php:283
2033
  msgid "Add New Shortcode"
2034
  msgstr ""
2035
 
2036
- #: app/features/mec.php:284
2037
  msgid "No shortcodes found!"
2038
  msgstr ""
2039
 
2040
- #: app/features/mec.php:285
2041
  msgid "All Shortcodes"
2042
  msgstr ""
2043
 
2044
- #: app/features/mec.php:286
2045
  msgid "Edit shortcodes"
2046
  msgstr ""
2047
 
2048
- #: app/features/mec.php:287
2049
  msgid "No shortcodes found in Trash!"
2050
  msgstr ""
2051
 
2052
- #: app/features/mec.php:334
2053
  msgid "Display Options"
2054
  msgstr ""
2055
 
2056
- #: app/features/mec.php:335
2057
  msgid "Filter Options"
2058
  msgstr ""
2059
 
2060
- #: app/features/mec.php:337
2061
  msgid "Search Form"
2062
  msgstr ""
2063
 
2064
- #: app/features/mec.php:641
2065
  msgid "Display content's images as Popup"
2066
  msgstr ""
2067
 
2068
- #: app/features/mec.php:654
2069
  msgid "Single Event Display Method"
2070
  msgstr ""
2071
 
2072
- #: app/features/mec.php:659
2073
  msgid "Separate Window"
2074
  msgstr ""
2075
 
2076
- #: app/features/mec.php:660
2077
  msgid "Modal 1"
2078
  msgstr ""
2079
 
2080
- #: app/features/mec/dashboard.php:58
2081
  #, php-format
2082
  msgid "Welcome %s"
2083
  msgstr ""
2084
 
2085
- #: app/features/mec/dashboard.php:61
2086
  #, php-format
2087
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2088
  msgstr ""
2089
 
2090
- #: app/features/mec/dashboard.php:61
2091
  msgid "Modern Events Calendar (Lite)"
2092
  msgstr ""
2093
 
2094
- #: app/features/mec/dashboard.php:63 app/libraries/factory.php:191
2095
  msgctxt "plugin rate"
2096
  msgid "Rate the plugin ★★★★★"
2097
  msgstr ""
2098
 
2099
- #: app/features/mec/dashboard.php:73
2100
  msgid "Version"
2101
  msgstr ""
2102
 
2103
- #: app/features/mec/dashboard.php:82
2104
  #, php-format
2105
  msgid ""
2106
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2108,106 +2141,76 @@ msgid ""
2108
  "Spots, etc you should %s to the Pro version."
2109
  msgstr ""
2110
 
2111
- #: app/features/mec/dashboard.php:82
2112
  msgid "lite"
2113
  msgstr ""
2114
 
2115
- #: app/features/mec/dashboard.php:82
2116
  msgid "upgrade"
2117
  msgstr ""
2118
 
2119
- #: app/features/mec/dashboard.php:121 app/features/mec/support.php:100
2120
- msgid "Documentation"
2121
  msgstr ""
2122
 
2123
- #: app/features/mec/dashboard.php:124 app/features/mec/support.php:104
2124
  msgid ""
2125
- "Our documentation is simple and functional with full details and cover all "
2126
- "essential aspects from beginning to the most advanced parts."
2127
- msgstr ""
2128
-
2129
- #: app/features/mec/dashboard.php:126 app/features/mec/support.php:107
2130
- msgid "DOCUMENTATION"
2131
- msgstr ""
2132
-
2133
- #: app/features/mec/dashboard.php:135 app/features/mec/support.php:116
2134
- msgid "Support Forum"
2135
- msgstr ""
2136
-
2137
- #: app/features/mec/dashboard.php:139 app/features/mec/support.php:120
2138
- msgid ""
2139
- "Webnus is elite and trusted author with high percentage of satisfied user. "
2140
- "If you want to use this service you need to upgrade your plugin to Pro "
2141
- "version. Click on the following button."
2142
- msgstr ""
2143
-
2144
- #: app/features/mec/dashboard.php:141 app/features/mec/support.php:122
2145
- msgid ""
2146
- "Webnus is elite and trusted author with high percentage of satisfied user. "
2147
- "If you have any issues please don't hesitate to contact us, we will reply as "
2148
- "soon as possible."
2149
- msgstr ""
2150
-
2151
- #: app/features/mec/dashboard.php:145 app/features/mec/support.php:126
2152
- msgid "GO PREMIUM"
2153
  msgstr ""
2154
 
2155
- #: app/features/mec/dashboard.php:147 app/features/mec/support.php:128
2156
- msgid "OPEN A TICKET"
2157
- msgstr ""
2158
-
2159
- #: app/features/mec/dashboard.php:160 app/features/mec/settings.php:408
2160
  msgid "Upcoming Events"
2161
  msgstr ""
2162
 
2163
- #: app/features/mec/dashboard.php:184
2164
  msgid "Popular Gateways"
2165
  msgstr ""
2166
 
2167
- #: app/features/mec/dashboard.php:235
2168
  msgid "Total Bookings"
2169
  msgstr ""
2170
 
2171
- #: app/features/mec/dashboard.php:262
2172
  msgid "This Month"
2173
  msgstr ""
2174
 
2175
- #: app/features/mec/dashboard.php:263
2176
  msgid "Last Month"
2177
  msgstr ""
2178
 
2179
- #: app/features/mec/dashboard.php:264
2180
  msgid "This Year"
2181
  msgstr ""
2182
 
2183
- #: app/features/mec/dashboard.php:265
2184
  msgid "Last Year"
2185
  msgstr ""
2186
 
2187
- #: app/features/mec/dashboard.php:277
2188
  msgid "Bar"
2189
  msgstr ""
2190
 
2191
- #: app/features/mec/dashboard.php:278
2192
  msgid "Line"
2193
  msgstr ""
2194
 
2195
- #: app/features/mec/dashboard.php:280
2196
  msgid "Filter"
2197
  msgstr ""
2198
 
2199
- #: app/features/mec/dashboard.php:296
2200
  #, php-format
2201
  msgid "Total Sells (%s)"
2202
  msgstr ""
2203
 
2204
- #: app/features/mec/dashboard.php:317
2205
  msgid "Change Log"
2206
  msgstr ""
2207
 
2208
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2209
  #: app/features/mec/messages.php:56 app/features/mec/notifications.php:55
2210
- #: app/features/mec/regform.php:54 app/features/mec/settings.php:233
2211
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:83
2212
  #: app/features/mec/support.php:52
2213
  msgid "Styling Options"
@@ -2215,7 +2218,7 @@ msgstr ""
2215
 
2216
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2217
  #: app/features/mec/messages.php:63 app/features/mec/notifications.php:62
2218
- #: app/features/mec/regform.php:61 app/features/mec/settings.php:240
2219
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:90
2220
  #: app/features/mec/support.php:59
2221
  msgid "Custom CSS"
@@ -2224,19 +2227,11 @@ msgstr ""
2224
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2225
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2226
  #: app/features/mec/notifications.php:69 app/features/mec/regform.php:68
2227
- #: app/features/mec/settings.php:247 app/features/mec/styles.php:70
2228
  #: app/features/mec/styling.php:97 app/features/mec/support.php:66
2229
  msgid "Messages"
2230
  msgstr ""
2231
 
2232
- #: app/features/mec/gateways.php:84 app/features/mec/ie.php:80
2233
- #: app/features/mec/messages.php:84 app/features/mec/notifications.php:83
2234
- #: app/features/mec/regform.php:82 app/features/mec/settings.php:261
2235
- #: app/features/mec/styles.php:84 app/features/mec/styling.php:111
2236
- #: app/features/mec/support.php:80 app/features/mec/support.php:93
2237
- msgid "Support"
2238
- msgstr ""
2239
-
2240
  #: app/features/mec/gateways.php:111 app/features/mec/gateways.php:159
2241
  #: app/features/mec/gateways.php:169 app/features/mec/messages.php:11
2242
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:161
@@ -2244,9 +2239,9 @@ msgstr ""
2244
  #: app/features/mec/notifications.php:436
2245
  #: app/features/mec/notifications.php:445 app/features/mec/regform.php:150
2246
  #: app/features/mec/regform.php:227 app/features/mec/regform.php:236
2247
- #: app/features/mec/settings.php:27 app/features/mec/settings.php:1336
2248
- #: app/features/mec/settings.php:1346 app/features/mec/settings.php:1409
2249
- #: app/features/mec/settings.php:1423 app/features/mec/styles.php:103
2250
  #: app/features/mec/styles.php:147 app/features/mec/styles.php:156
2251
  #: app/features/mec/styling.php:309 app/features/mec/styling.php:379
2252
  #: app/features/mec/styling.php:388
@@ -2255,14 +2250,14 @@ msgstr ""
2255
 
2256
  #: app/features/mec/gateways.php:138 app/features/mec/messages.php:145
2257
  #: app/features/mec/notifications.php:421 app/features/mec/regform.php:211
2258
- #: app/features/mec/settings.php:1387 app/features/mec/styles.php:131
2259
  #: app/features/mec/styling.php:362
2260
  msgid "Saved"
2261
  msgstr ""
2262
 
2263
  #: app/features/mec/gateways.php:139 app/features/mec/messages.php:146
2264
  #: app/features/mec/notifications.php:422 app/features/mec/regform.php:212
2265
- #: app/features/mec/settings.php:1388 app/features/mec/styles.php:132
2266
  #: app/features/mec/styling.php:363
2267
  msgid "Settings Saved!"
2268
  msgstr ""
@@ -2307,11 +2302,16 @@ msgstr ""
2307
  #: app/features/mec/meta_boxes/display_options.php:129
2308
  #: app/features/mec/meta_boxes/display_options.php:431
2309
  #: app/features/mec/meta_boxes/display_options.php:686
 
 
 
2310
  msgid "Classic"
2311
  msgstr ""
2312
 
2313
  #: app/features/mec/meta_boxes/display_options.php:35
2314
  #: app/features/mec/meta_boxes/display_options.php:131
 
 
2315
  msgid "Minimal"
2316
  msgstr ""
2317
 
@@ -2321,14 +2321,20 @@ msgstr ""
2321
  #: app/features/mec/meta_boxes/display_options.php:433
2322
  #: app/features/mec/meta_boxes/display_options.php:585
2323
  #: app/features/mec/meta_boxes/display_options.php:688
 
 
 
 
2324
  msgid "Modern"
2325
  msgstr ""
2326
 
2327
  #: app/features/mec/meta_boxes/display_options.php:37
 
2328
  msgid "Standard"
2329
  msgstr ""
2330
 
2331
  #: app/features/mec/meta_boxes/display_options.php:38
 
2332
  msgid "Accordion"
2333
  msgstr ""
2334
 
@@ -2338,8 +2344,8 @@ msgstr ""
2338
  #: app/features/mec/meta_boxes/display_options.php:478
2339
  #: app/features/mec/meta_boxes/display_options.php:511
2340
  #: app/features/mec/meta_boxes/display_options.php:635
2341
- #: app/features/mec/meta_boxes/display_options.php:801
2342
- #: app/features/mec/meta_boxes/display_options.php:863
2343
  msgid "Today"
2344
  msgstr ""
2345
 
@@ -2349,8 +2355,8 @@ msgstr ""
2349
  #: app/features/mec/meta_boxes/display_options.php:479
2350
  #: app/features/mec/meta_boxes/display_options.php:512
2351
  #: app/features/mec/meta_boxes/display_options.php:636
2352
- #: app/features/mec/meta_boxes/display_options.php:802
2353
- #: app/features/mec/meta_boxes/display_options.php:864
2354
  msgid "Tomorrow"
2355
  msgstr ""
2356
 
@@ -2364,8 +2370,8 @@ msgstr ""
2364
  #: app/features/mec/meta_boxes/display_options.php:548
2365
  #: app/features/mec/meta_boxes/display_options.php:594
2366
  #: app/features/mec/meta_boxes/display_options.php:637
2367
- #: app/features/mec/meta_boxes/display_options.php:803
2368
- #: app/features/mec/meta_boxes/display_options.php:865
2369
  msgid "Start of Current Month"
2370
  msgstr ""
2371
 
@@ -2379,8 +2385,8 @@ msgstr ""
2379
  #: app/features/mec/meta_boxes/display_options.php:549
2380
  #: app/features/mec/meta_boxes/display_options.php:595
2381
  #: app/features/mec/meta_boxes/display_options.php:638
2382
- #: app/features/mec/meta_boxes/display_options.php:804
2383
- #: app/features/mec/meta_boxes/display_options.php:866
2384
  msgid "Start of Next Month"
2385
  msgstr ""
2386
 
@@ -2395,8 +2401,8 @@ msgstr ""
2395
  #: app/features/mec/meta_boxes/display_options.php:550
2396
  #: app/features/mec/meta_boxes/display_options.php:596
2397
  #: app/features/mec/meta_boxes/display_options.php:639
2398
- #: app/features/mec/meta_boxes/display_options.php:805
2399
- #: app/features/mec/meta_boxes/display_options.php:867
2400
  msgid "On a certain date"
2401
  msgstr ""
2402
 
@@ -2411,8 +2417,8 @@ msgstr ""
2411
  #: app/features/mec/meta_boxes/display_options.php:553
2412
  #: app/features/mec/meta_boxes/display_options.php:599
2413
  #: app/features/mec/meta_boxes/display_options.php:642
2414
- #: app/features/mec/meta_boxes/display_options.php:808
2415
- #: app/features/mec/meta_boxes/display_options.php:870
2416
  #, php-format
2417
  msgid "eg. %s"
2418
  msgstr ""
@@ -2439,14 +2445,14 @@ msgstr ""
2439
  #: app/features/mec/meta_boxes/display_options.php:736
2440
  #: app/features/mec/meta_boxes/display_options.php:741
2441
  #: app/features/mec/meta_boxes/display_options.php:771
2442
- #: app/features/mec/meta_boxes/display_options.php:812
2443
- #: app/features/mec/meta_boxes/display_options.php:819
2444
- #: app/features/mec/meta_boxes/display_options.php:824
2445
- #: app/features/mec/meta_boxes/display_options.php:874
2446
- #: app/features/mec/meta_boxes/display_options.php:881
2447
- #: app/features/mec/meta_boxes/display_options.php:888
2448
- #: app/features/mec/meta_boxes/display_options.php:895
2449
- #: app/features/mec/meta_boxes/display_options.php:902
2450
  msgid "Date Formats"
2451
  msgstr ""
2452
 
@@ -2462,11 +2468,11 @@ msgstr ""
2462
  #: app/features/mec/meta_boxes/display_options.php:71
2463
  #: app/features/mec/meta_boxes/display_options.php:173
2464
  #: app/features/mec/meta_boxes/display_options.php:185
2465
- #: app/features/mec/meta_boxes/display_options.php:878
2466
- #: app/features/mec/meta_boxes/display_options.php:885
2467
- #: app/features/mec/meta_boxes/display_options.php:892
2468
- #: app/features/mec/meta_boxes/display_options.php:899
2469
- #: app/features/mec/meta_boxes/display_options.php:906
2470
  msgid "Default values are d, F and l"
2471
  msgstr ""
2472
 
@@ -2483,8 +2489,8 @@ msgstr ""
2483
  #: app/features/mec/meta_boxes/display_options.php:204
2484
  #: app/features/mec/meta_boxes/display_options.php:254
2485
  #: app/features/mec/meta_boxes/display_options.php:652
2486
- #: app/features/mec/meta_boxes/display_options.php:838
2487
- #: app/features/mec/meta_boxes/display_options.php:909
2488
  msgid "Limit"
2489
  msgstr ""
2490
 
@@ -2496,8 +2502,8 @@ msgstr ""
2496
  #: app/features/mec/meta_boxes/display_options.php:524
2497
  #: app/features/mec/meta_boxes/display_options.php:558
2498
  #: app/features/mec/meta_boxes/display_options.php:604
2499
- #: app/features/mec/meta_boxes/display_options.php:839
2500
- #: app/features/mec/meta_boxes/display_options.php:910
2501
  msgid "eg. 6"
2502
  msgstr ""
2503
 
@@ -2522,12 +2528,17 @@ msgstr ""
2522
  #: app/features/mec/meta_boxes/display_options.php:432
2523
  #: app/features/mec/meta_boxes/display_options.php:586
2524
  #: app/features/mec/meta_boxes/display_options.php:687
 
 
 
2525
  msgid "Clean"
2526
  msgstr ""
2527
 
2528
  #: app/features/mec/meta_boxes/display_options.php:133
2529
  #: app/features/mec/meta_boxes/display_options.php:309
2530
  #: app/features/mec/meta_boxes/display_options.php:435
 
 
2531
  msgid "Simple"
2532
  msgstr ""
2533
 
@@ -2538,6 +2549,8 @@ msgstr ""
2538
  #: app/features/mec/meta_boxes/display_options.php:135
2539
  #: app/features/mec/meta_boxes/display_options.php:308
2540
  #: app/features/mec/meta_boxes/display_options.php:434
 
 
2541
  msgid "Novel"
2542
  msgstr ""
2543
 
@@ -2551,7 +2564,7 @@ msgid "Default values are d and M"
2551
  msgstr ""
2552
 
2553
  #: app/features/mec/meta_boxes/display_options.php:193
2554
- #: app/features/mec/meta_boxes/display_options.php:829
2555
  msgid "Count in row"
2556
  msgstr ""
2557
 
@@ -2576,13 +2589,15 @@ msgstr ""
2576
 
2577
  #: app/features/mec/meta_boxes/display_options.php:297
2578
  #: app/features/mec/meta_boxes/display_options.php:314
2579
- #: app/libraries/main.php:326 app/libraries/main.php:1194
 
2580
  msgid "List View"
2581
  msgstr ""
2582
 
2583
  #: app/features/mec/meta_boxes/display_options.php:298
2584
  #: app/features/mec/meta_boxes/display_options.php:324
2585
- #: app/libraries/main.php:330 app/libraries/main.php:1188
 
2586
  msgid "Yearly View"
2587
  msgstr ""
2588
 
@@ -2593,13 +2608,15 @@ msgstr ""
2593
 
2594
  #: app/features/mec/meta_boxes/display_options.php:300
2595
  #: app/features/mec/meta_boxes/display_options.php:344
2596
- #: app/libraries/main.php:333 app/libraries/main.php:1190
 
2597
  msgid "Weekly View"
2598
  msgstr ""
2599
 
2600
  #: app/features/mec/meta_boxes/display_options.php:301
2601
  #: app/features/mec/meta_boxes/display_options.php:354
2602
- #: app/libraries/main.php:332 app/libraries/main.php:1191
 
2603
  msgid "Daily View"
2604
  msgstr ""
2605
 
@@ -2740,44 +2757,53 @@ msgid "Background Color"
2740
  msgstr ""
2741
 
2742
  #: app/features/mec/meta_boxes/display_options.php:793
2743
- #: app/features/mec/meta_boxes/display_options.php:853
2744
  msgid "Type 1"
2745
  msgstr ""
2746
 
2747
  #: app/features/mec/meta_boxes/display_options.php:794
2748
- #: app/features/mec/meta_boxes/display_options.php:854
2749
  msgid "Type 2"
2750
  msgstr ""
2751
 
2752
  #: app/features/mec/meta_boxes/display_options.php:795
2753
- #: app/features/mec/meta_boxes/display_options.php:855
2754
  msgid "Type 3"
2755
  msgstr ""
2756
 
2757
- #: app/features/mec/meta_boxes/display_options.php:816
 
 
 
 
 
2758
  msgid "Default values are d, F and Y"
2759
  msgstr ""
2760
 
2761
- #: app/features/mec/meta_boxes/display_options.php:821
2762
- #: app/features/mec/meta_boxes/display_options.php:826
2763
  msgid "Default value is \"M d, Y\""
2764
  msgstr ""
2765
 
2766
- #: app/features/mec/meta_boxes/display_options.php:842
2767
- #: app/features/mec/meta_boxes/display_options.php:913
2768
  msgid "Auto Play Time"
2769
  msgstr ""
2770
 
2771
- #: app/features/mec/meta_boxes/display_options.php:843
2772
- #: app/features/mec/meta_boxes/display_options.php:914
2773
  msgid "eg. 3000 default is 3 second"
2774
  msgstr ""
2775
 
2776
- #: app/features/mec/meta_boxes/display_options.php:856
2777
- msgid "Type 4"
 
 
 
 
2778
  msgstr ""
2779
 
2780
- #: app/features/mec/meta_boxes/display_options.php:857
2781
  msgid "Type 5"
2782
  msgstr ""
2783
 
@@ -2903,8 +2929,8 @@ msgstr ""
2903
  #: app/features/mec/meta_boxes/search_form.php:449
2904
  #: app/features/mec/meta_boxes/search_form.php:456
2905
  #: app/features/mec/meta_boxes/search_form.php:463
2906
- #: app/features/mec/settings.php:322 app/features/mec/settings.php:420
2907
- #: app/features/mec/settings.php:604
2908
  msgid "Disabled"
2909
  msgstr ""
2910
 
@@ -3187,7 +3213,7 @@ msgstr ""
3187
  msgid "Email/Booking verification link."
3188
  msgstr ""
3189
 
3190
- #: app/features/mec/notifications.php:196 app/features/mec/settings.php:1064
3191
  msgid "Booking Confirmation"
3192
  msgstr ""
3193
 
@@ -3242,7 +3268,7 @@ msgid ""
3242
  "enter 3,5 then the reminder will send 3 and 5 days before the event date."
3243
  msgstr ""
3244
 
3245
- #: app/features/mec/notifications.php:336
3246
  msgid "New Event"
3247
  msgstr ""
3248
 
@@ -3264,7 +3290,7 @@ msgstr ""
3264
  msgid "Status of event"
3265
  msgstr ""
3266
 
3267
- #: app/features/mec/notifications.php:362 app/features/mec/settings.php:951
3268
  msgid "Event Note"
3269
  msgstr ""
3270
 
@@ -3272,509 +3298,530 @@ msgstr ""
3272
  msgid "Admin events management link."
3273
  msgstr ""
3274
 
3275
- #: app/features/mec/settings.php:53
3276
  msgid "Archive Page Options"
3277
  msgstr ""
3278
 
3279
- #: app/features/mec/settings.php:95 app/features/mec/settings.php:669
3280
  msgid "Export Module Options"
3281
  msgstr ""
3282
 
3283
- #: app/features/mec/settings.php:101 app/features/mec/settings.php:696
3284
  msgid "Local Time Module"
3285
  msgstr ""
3286
 
3287
- #: app/features/mec/settings.php:107 app/features/mec/settings.php:708
3288
  msgid "QR Code Module"
3289
  msgstr ""
3290
 
3291
- #: app/features/mec/settings.php:113 app/features/mec/settings.php:726
3292
  #: app/widgets/single.php:147
3293
  msgid "Weather Module"
3294
  msgstr ""
3295
 
3296
- #: app/features/mec/settings.php:143 app/features/mec/settings.php:970
3297
  msgid "User Profile"
3298
  msgstr ""
3299
 
3300
- #: app/features/mec/settings.php:155 app/features/mec/settings.php:988
3301
  msgid "Additional Organizers"
3302
  msgstr ""
3303
 
3304
- #: app/features/mec/settings.php:173 app/features/mec/settings.php:1105
3305
  msgid "Taxes / Fees"
3306
  msgstr ""
3307
 
3308
- #: app/features/mec/settings.php:179 app/features/mec/settings.php:1170
3309
  msgid "Ticket Variations & Options"
3310
  msgstr ""
3311
 
3312
- #: app/features/mec/settings.php:281
3313
  msgid "Time Format"
3314
  msgstr ""
3315
 
3316
- #: app/features/mec/settings.php:284
3317
  msgid "12 hours format with AM/PM"
3318
  msgstr ""
3319
 
3320
- #: app/features/mec/settings.php:285
3321
  msgid "24 hours format"
3322
  msgstr ""
3323
 
3324
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:300
3325
  msgid ""
3326
  "This option is for showing start/end time of events on frontend of website."
3327
  msgstr ""
3328
 
3329
- #: app/features/mec/settings.php:292
3330
  msgid "Hide Events"
3331
  msgstr ""
3332
 
3333
- #: app/features/mec/settings.php:295
3334
  msgid "On Event Start"
3335
  msgstr ""
3336
 
3337
- #: app/features/mec/settings.php:296
3338
  msgid "+1 Hour after start"
3339
  msgstr ""
3340
 
3341
- #: app/features/mec/settings.php:297
3342
  msgid "+2 Hours after start"
3343
  msgstr ""
3344
 
3345
- #: app/features/mec/settings.php:298
3346
  msgid "On Event End"
3347
  msgstr ""
3348
 
3349
- #: app/features/mec/settings.php:306
3350
  msgid "Multiple Day Events"
3351
  msgstr ""
3352
 
3353
- #: app/features/mec/settings.php:309
3354
  msgid "Show only first day on List/Grid/Slider skins"
3355
  msgstr ""
3356
 
3357
- #: app/features/mec/settings.php:310
3358
  msgid "Show only first day on all skins"
3359
  msgstr ""
3360
 
3361
- #: app/features/mec/settings.php:311
3362
  msgid "Show all days"
3363
  msgstr ""
3364
 
3365
- #: app/features/mec/settings.php:313
3366
  msgid ""
3367
  "For showing all days of multiple day events on frontend or only show the "
3368
  "first day."
3369
  msgstr ""
3370
 
3371
- #: app/features/mec/settings.php:319
3372
  msgid "Remove MEC Data on Plugin Uninstall"
3373
  msgstr ""
3374
 
3375
- #: app/features/mec/settings.php:323
3376
  msgid "Enabled"
3377
  msgstr ""
3378
 
3379
- #: app/features/mec/settings.php:329
3380
  msgid "Exclude Date Suffix"
3381
  msgstr ""
3382
 
3383
- #: app/features/mec/settings.php:332
3384
  msgid "Remove suffix from calendars"
3385
  msgstr ""
3386
 
3387
- #: app/features/mec/settings.php:339 app/libraries/main.php:4209
3388
  msgid "Weekdays"
3389
  msgstr ""
3390
 
3391
- #: app/features/mec/settings.php:347
3392
  msgid ""
3393
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3394
  "and Friday."
3395
  msgstr ""
3396
 
3397
- #: app/features/mec/settings.php:354
3398
  msgid "Weekends"
3399
  msgstr ""
3400
 
3401
- #: app/features/mec/settings.php:362
3402
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3403
  msgstr ""
3404
 
3405
- #: app/features/mec/settings.php:370
3406
  msgid "Archive Pages"
3407
  msgstr ""
3408
 
3409
- #: app/features/mec/settings.php:373
3410
  msgid "Archive Page Title"
3411
  msgstr ""
3412
 
3413
- #: app/features/mec/settings.php:376
3414
  msgid "Default value is Events"
3415
  msgstr ""
3416
 
3417
- #: app/features/mec/settings.php:381
3418
  msgid "Archive Page Skin"
3419
  msgstr ""
3420
 
3421
- #: app/features/mec/settings.php:388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3422
  msgid "Default value is Calendar/Monthly View"
3423
  msgstr ""
3424
 
3425
- #: app/features/mec/settings.php:393
3426
  msgid "Category Page Skin"
3427
  msgstr ""
3428
 
3429
- #: app/features/mec/settings.php:400
3430
  msgid "Default value is List View"
3431
  msgstr ""
3432
 
3433
- #: app/features/mec/settings.php:405
3434
  msgid "Category Events Method"
3435
  msgstr ""
3436
 
3437
- #: app/features/mec/settings.php:409
3438
  msgid "Expired Events"
3439
  msgstr ""
3440
 
3441
- #: app/features/mec/settings.php:411
3442
  msgid "Default value is Upcoming Events"
3443
  msgstr ""
3444
 
3445
- #: app/features/mec/settings.php:416
3446
  msgid "Events Archive Status"
3447
  msgstr ""
3448
 
3449
- #: app/features/mec/settings.php:419
3450
  msgid "Enabled (Recommended)"
3451
  msgstr ""
3452
 
3453
- #: app/features/mec/settings.php:422
3454
  msgid ""
3455
  "If you disable it, then you should create a page as archive page of MEC. "
3456
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3457
  "MEC rewrite rules."
3458
  msgstr ""
3459
 
3460
- #: app/features/mec/settings.php:432
3461
  msgid "Main Slug"
3462
  msgstr ""
3463
 
3464
- #: app/features/mec/settings.php:435
3465
  msgid ""
3466
  "Default value is events. Valid characters are lowercase a-z, - character and "
3467
  "numbers."
3468
  msgstr ""
3469
 
3470
- #: app/features/mec/settings.php:439
3471
  msgid "Category Slug"
3472
  msgstr ""
3473
 
3474
- #: app/features/mec/settings.php:442
3475
  msgid ""
3476
  "It's slug of MEC categories, you can change it to events-cat or something "
3477
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3478
  "character and numbers."
3479
  msgstr ""
3480
 
3481
- #: app/features/mec/settings.php:452
3482
  msgid "Single Event Date Format"
3483
  msgstr ""
3484
 
3485
- #: app/features/mec/settings.php:455 app/features/mec/settings.php:817
3486
  msgid "Default is M d Y"
3487
  msgstr ""
3488
 
3489
- #: app/features/mec/settings.php:459
3490
  msgid "Date Method"
3491
  msgstr ""
3492
 
3493
- #: app/features/mec/settings.php:462
3494
  msgid "Next occurrence date"
3495
  msgstr ""
3496
 
3497
- #: app/features/mec/settings.php:463
3498
  msgid "Referred date"
3499
  msgstr ""
3500
 
3501
- #: app/features/mec/settings.php:465
3502
  msgid ""
3503
  "\"Referred date\" shows the event date based on referred date in event list."
3504
  msgstr ""
3505
 
3506
- #: app/features/mec/settings.php:469
3507
  msgid "Single Event Style"
3508
  msgstr ""
3509
 
3510
- #: app/features/mec/settings.php:472
3511
  msgid "Default Style"
3512
  msgstr ""
3513
 
3514
- #: app/features/mec/settings.php:473
3515
- msgid "Modern Style"
3516
- msgstr ""
3517
-
3518
- #: app/features/mec/settings.php:475
3519
  msgid "Choose your single event style."
3520
  msgstr ""
3521
 
3522
- #: app/features/mec/settings.php:479
3523
  msgid "Booking Style"
3524
  msgstr ""
3525
 
3526
- #: app/features/mec/settings.php:482 app/features/mec/settings.php:593
3527
  msgid "Default"
3528
  msgstr ""
3529
 
3530
- #: app/features/mec/settings.php:483
3531
  msgid "Modal"
3532
  msgstr ""
3533
 
3534
- #: app/features/mec/settings.php:485
3535
  msgid "Choose your Booking style."
3536
  msgstr ""
3537
 
3538
- #: app/features/mec/settings.php:493
3539
  msgid "Currency"
3540
  msgstr ""
3541
 
3542
- #: app/features/mec/settings.php:503
3543
  msgid "Currency Sign"
3544
  msgstr ""
3545
 
3546
- #: app/features/mec/settings.php:506
3547
  msgid "Default value will be \"currency\" if you leave it empty."
3548
  msgstr ""
3549
 
3550
- #: app/features/mec/settings.php:510
3551
  msgid "Currency Position"
3552
  msgstr ""
3553
 
3554
- #: app/features/mec/settings.php:513
3555
  msgid "Before $10"
3556
  msgstr ""
3557
 
3558
- #: app/features/mec/settings.php:514
3559
  msgid "After 10$"
3560
  msgstr ""
3561
 
3562
- #: app/features/mec/settings.php:519
3563
  msgid "Thousand Separator"
3564
  msgstr ""
3565
 
3566
- #: app/features/mec/settings.php:525
3567
  msgid "Decimal Separator"
3568
  msgstr ""
3569
 
3570
- #: app/features/mec/settings.php:535
3571
  msgid "No decimal"
3572
  msgstr ""
3573
 
3574
- #: app/features/mec/settings.php:544
3575
  msgid "Speakers Options"
3576
  msgstr ""
3577
 
3578
- #: app/features/mec/settings.php:550
3579
  msgid "Enable speakers feature"
3580
  msgstr ""
3581
 
3582
- #: app/features/mec/settings.php:566
3583
  msgid "Show Google Maps on event page"
3584
  msgstr ""
3585
 
3586
- #: app/features/mec/settings.php:571 app/features/mec/settings.php:739
3587
- #: app/features/mec/settings.php:1268
3588
  msgid "API Key"
3589
  msgstr ""
3590
 
3591
- #: app/features/mec/settings.php:574 app/features/mec/settings.php:1271
3592
- #: app/features/mec/settings.php:1278
3593
  msgid "Required!"
3594
  msgstr ""
3595
 
3596
- #: app/features/mec/settings.php:578
3597
  msgid "Zoom level"
3598
  msgstr ""
3599
 
3600
- #: app/features/mec/settings.php:585
3601
  msgid ""
3602
  "For Google Maps module in single event page. In Google Maps skin, it will "
3603
  "caculate the zoom level automatically based on event boundaries."
3604
  msgstr ""
3605
 
3606
- #: app/features/mec/settings.php:589
3607
  msgid "Google Maps Style"
3608
  msgstr ""
3609
 
3610
- #: app/features/mec/settings.php:601
3611
  msgid "Direction on single event"
3612
  msgstr ""
3613
 
3614
- #: app/features/mec/settings.php:605
3615
  msgid "Simple Method"
3616
  msgstr ""
3617
 
3618
- #: app/features/mec/settings.php:606
3619
  msgid "Advanced Method"
3620
  msgstr ""
3621
 
3622
- #: app/features/mec/settings.php:611
3623
  msgid "Lightbox Date Format"
3624
  msgstr ""
3625
 
3626
- #: app/features/mec/settings.php:614
3627
  msgid "Default value is M d Y"
3628
  msgstr ""
3629
 
3630
- #: app/features/mec/settings.php:618
3631
  msgid "Google Maps API"
3632
  msgstr ""
3633
 
3634
- #: app/features/mec/settings.php:622
3635
  msgid "Don't load Google Maps API library"
3636
  msgstr ""
3637
 
3638
- #: app/features/mec/settings.php:624
3639
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3640
  msgstr ""
3641
 
3642
- #: app/features/mec/settings.php:636
3643
  msgid "Enable Google Recaptcha"
3644
  msgstr ""
3645
 
3646
- #: app/features/mec/settings.php:643
3647
  msgid "Enable on booking form"
3648
  msgstr ""
3649
 
3650
- #: app/features/mec/settings.php:649
3651
  msgid "Enable on \"Frontend Event Submission\" form"
3652
  msgstr ""
3653
 
3654
- #: app/features/mec/settings.php:653
3655
  msgid "Site Key"
3656
  msgstr ""
3657
 
3658
- #: app/features/mec/settings.php:659
3659
  msgid "Secret Key"
3660
  msgstr ""
3661
 
3662
- #: app/features/mec/settings.php:673
3663
  msgid ""
3664
  "Show export module (iCal export and add to Google calendars) on event page"
3665
  msgstr ""
3666
 
3667
- #: app/features/mec/settings.php:680
3668
  msgid "Google Calendar"
3669
  msgstr ""
3670
 
3671
- #: app/features/mec/settings.php:700
3672
  msgid "Show event time based on local time of visitor on event page"
3673
  msgstr ""
3674
 
3675
- #: app/features/mec/settings.php:716
3676
  msgid "Show QR code of event in details page and booking invoice"
3677
  msgstr ""
3678
 
3679
- #: app/features/mec/settings.php:734
3680
  msgid "Show weather module on event page"
3681
  msgstr ""
3682
 
3683
- #: app/features/mec/settings.php:742
3684
  #, php-format
3685
  msgid "You can get a free API Key from %s"
3686
  msgstr ""
3687
 
3688
- #: app/features/mec/settings.php:754
3689
  msgid "Show countdown module on event page"
3690
  msgstr ""
3691
 
3692
- #: app/features/mec/settings.php:759
3693
  msgid "Countdown Style"
3694
  msgstr ""
3695
 
3696
- #: app/features/mec/settings.php:762
3697
  msgid "Plain Style"
3698
  msgstr ""
3699
 
3700
- #: app/features/mec/settings.php:763
3701
  msgid "Flip Style"
3702
  msgstr ""
3703
 
3704
- #: app/features/mec/settings.php:775
3705
  msgid "Show social network module"
3706
  msgstr ""
3707
 
3708
- #: app/features/mec/settings.php:800
3709
  msgid "Show next event module on event page"
3710
  msgstr ""
3711
 
3712
- #: app/features/mec/settings.php:805
3713
  msgid "Method"
3714
  msgstr ""
3715
 
3716
- #: app/features/mec/settings.php:808
3717
  msgid "Next Occurrence of Current Event"
3718
  msgstr ""
3719
 
3720
- #: app/features/mec/settings.php:809
3721
  msgid "Next Occurrence of Other Events"
3722
  msgstr ""
3723
 
3724
- #: app/features/mec/settings.php:814 app/features/mec/settings.php:1011
3725
  msgid "Date Format"
3726
  msgstr ""
3727
 
3728
- #: app/features/mec/settings.php:826
3729
  msgid "Events List Page"
3730
  msgstr ""
3731
 
3732
- #: app/features/mec/settings.php:835 app/features/mec/settings.php:847
3733
  #, php-format
3734
  msgid "Put %s shortcode into the page."
3735
  msgstr ""
3736
 
3737
- #: app/features/mec/settings.php:838
3738
  msgid "Add/Edit Events Page"
3739
  msgstr ""
3740
 
3741
- #: app/features/mec/settings.php:852
3742
  msgid "Enable event submission by guest (Not logged-in) users"
3743
  msgstr ""
3744
 
3745
- #: app/features/mec/settings.php:859
3746
  msgid "Enable mandatory email and name for guest user"
3747
  msgstr ""
3748
 
3749
- #: app/features/mec/settings.php:863
3750
  msgid "Frontend Event Submission Sections"
3751
  msgstr ""
3752
 
3753
- #: app/features/mec/settings.php:885 app/widgets/single.php:119
3754
  msgid "Event Categories"
3755
  msgstr ""
3756
 
3757
- #: app/features/mec/settings.php:891
3758
  msgid "Event Labels"
3759
  msgstr ""
3760
 
3761
- #: app/features/mec/settings.php:903
3762
  msgid "Event Tags"
3763
  msgstr ""
3764
 
3765
- #: app/features/mec/settings.php:915 app/widgets/single.php:123
3766
  msgid "Event Organizer"
3767
  msgstr ""
3768
 
3769
- #: app/features/mec/settings.php:933
3770
  msgid "Booking Options"
3771
  msgstr ""
3772
 
3773
- #: app/features/mec/settings.php:939
3774
  msgid "Fees / Taxes Options"
3775
  msgstr ""
3776
 
3777
- #: app/features/mec/settings.php:953
3778
  #, php-format
3779
  msgid ""
3780
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3782,223 +3829,173 @@ msgid ""
3782
  "users' note in email."
3783
  msgstr ""
3784
 
3785
- #: app/features/mec/settings.php:957
3786
  msgid "Visibility of Note"
3787
  msgstr ""
3788
 
3789
- #: app/features/mec/settings.php:960
3790
  msgid "Always"
3791
  msgstr ""
3792
 
3793
- #: app/features/mec/settings.php:961
3794
  msgid "While event is not published"
3795
  msgstr ""
3796
 
3797
- #: app/features/mec/settings.php:964
3798
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3799
  msgstr ""
3800
 
3801
- #: app/features/mec/settings.php:972
3802
  #, php-format
3803
  msgid ""
3804
  "Put %s shortcode into your desired page. Then users are able to see history "
3805
  "of their bookings."
3806
  msgstr ""
3807
 
3808
- #: app/features/mec/settings.php:977
3809
  msgid "Exceptional days"
3810
  msgstr ""
3811
 
3812
- #: app/features/mec/settings.php:981
3813
  msgid "Show exceptional days option on Add/Edit events page"
3814
  msgstr ""
3815
 
3816
- #: app/features/mec/settings.php:982
3817
  msgid ""
3818
  "Using this option you can include/exclude certain days to/from event "
3819
  "occurrence dates."
3820
  msgstr ""
3821
 
3822
- #: app/features/mec/settings.php:992
3823
  msgid ""
3824
  "Show additional organizers option on Add/Edit events page and single event "
3825
  "page."
3826
  msgstr ""
3827
 
3828
- #: app/features/mec/settings.php:1006
3829
  msgid "Enable booking module"
3830
  msgstr ""
3831
 
3832
- #: app/features/mec/settings.php:1014
3833
  msgid "Default is Y-m-d"
3834
  msgstr ""
3835
 
3836
- #: app/features/mec/settings.php:1018
3837
  msgid "Maximum Dates"
3838
  msgstr ""
3839
 
3840
- #: app/features/mec/settings.php:1020
3841
  msgid "Default is 6"
3842
  msgstr ""
3843
 
3844
- #: app/features/mec/settings.php:1024
3845
  msgid "Thank You Page"
3846
  msgstr ""
3847
 
3848
- #: app/features/mec/settings.php:1032
3849
  msgid ""
3850
  "User redirects to this page after booking. Leave it empty if you want to "
3851
  "disable it."
3852
  msgstr ""
3853
 
3854
- #: app/features/mec/settings.php:1040
3855
  msgid "Enable Express Attendees Form"
3856
  msgstr ""
3857
 
3858
- #: app/features/mec/settings.php:1042
3859
  msgid ""
3860
  "Users are able to apply first attendee information for other attendees in "
3861
  "the booking form."
3862
  msgstr ""
3863
 
3864
- #: app/features/mec/settings.php:1045
3865
  msgid "Email verification"
3866
  msgstr ""
3867
 
3868
- #: app/features/mec/settings.php:1051
3869
  msgid "Auto verification for free bookings"
3870
  msgstr ""
3871
 
3872
- #: app/features/mec/settings.php:1060
3873
  msgid "Auto verification for paid bookings"
3874
  msgstr ""
3875
 
3876
- #: app/features/mec/settings.php:1070
3877
  msgid "Auto confirmation for free bookings"
3878
  msgstr ""
3879
 
3880
- #: app/features/mec/settings.php:1079
3881
  msgid "Auto confirmation for paid bookings"
3882
  msgstr ""
3883
 
3884
- #: app/features/mec/settings.php:1096
3885
  msgid "Enable coupons module"
3886
  msgstr ""
3887
 
3888
- #: app/features/mec/settings.php:1113
3889
  msgid "Enable taxes / fees module"
3890
  msgstr ""
3891
 
3892
- #: app/features/mec/settings.php:1118
3893
  msgid "Add Fee"
3894
  msgstr ""
3895
 
3896
- #: app/features/mec/settings.php:1178
3897
  msgid "Enable ticket options module"
3898
  msgstr ""
3899
 
3900
- #: app/features/mec/settings.php:1183
3901
  msgid "Add Variation / Option"
3902
  msgstr ""
3903
 
3904
- #: app/features/mec/settings.php:1233
3905
  msgid "Enable BuddyPress Integration"
3906
  msgstr ""
3907
 
3908
- #: app/features/mec/settings.php:1240
3909
  msgid "Show \"Attendees Module\" in event details page"
3910
  msgstr ""
3911
 
3912
- #: app/features/mec/settings.php:1244
3913
  msgid "Attendees Limit"
3914
  msgstr ""
3915
 
3916
- #: app/features/mec/settings.php:1252
3917
  msgid "Add booking activity to user profile"
3918
  msgstr ""
3919
 
3920
- #: app/features/mec/settings.php:1263
3921
  msgid "Enable Mailchimp Integration"
3922
  msgstr ""
3923
 
3924
- #: app/features/mec/settings.php:1275
3925
  msgid "List ID"
3926
  msgstr ""
3927
 
3928
- #: app/features/mec/settings.php:1282
3929
  msgid "Subscription Status"
3930
  msgstr ""
3931
 
3932
- #: app/features/mec/settings.php:1285
3933
  msgid "Subscribe automatically"
3934
  msgstr ""
3935
 
3936
- #: app/features/mec/settings.php:1286
3937
  msgid "Subscribe by verification"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:1288
3941
  msgid ""
3942
  "If you choose \"Subscribe by verification\" then an email will send to user "
3943
  "by mailchimp for subscription verification."
3944
  msgstr ""
3945
 
3946
- #: app/features/mec/settings.php:1298
3947
- #, php-format
3948
- msgid "%s is required to use this section."
3949
- msgstr ""
3950
-
3951
- #: app/features/mec/settings.php:1301
3952
- msgid "Purchase Code"
3953
- msgstr ""
3954
-
3955
- #: app/features/mec/settings.php:1306 app/features/mec/settings.php:1390
3956
- #: app/features/mec/settings.php:1412 app/libraries/main.php:4390
3957
  msgid "Verified"
3958
  msgstr ""
3959
 
3960
- #: app/features/mec/settings.php:1308
3961
- msgid "UnVerified"
3962
- msgstr ""
3963
-
3964
- #: app/features/mec/settings.php:1310
3965
- msgid ""
3966
- "Please insert your purchase code validation. Read documentation for more "
3967
- "information."
3968
- msgstr ""
3969
-
3970
- #: app/features/mec/settings.php:1313
3971
- msgid "Product Name"
3972
- msgstr ""
3973
-
3974
- #: app/features/mec/settings.php:1316
3975
- msgid "1 License for MEC Plugin"
3976
- msgstr ""
3977
-
3978
- #: app/features/mec/settings.php:1317
3979
- msgid "5 License for MEC Plugin"
3980
- msgstr ""
3981
-
3982
- #: app/features/mec/settings.php:1318
3983
- msgid "10 License for MEC Plugin"
3984
- msgstr ""
3985
-
3986
- #: app/features/mec/settings.php:1325
3987
- msgid "MEC Deactivation"
3988
- msgstr ""
3989
-
3990
- #: app/features/mec/settings.php:1327
3991
- msgid "Deactivate"
3992
- msgstr ""
3993
-
3994
- #: app/features/mec/settings.php:1329
3995
- msgid ""
3996
- "For deactivation first delete your purchase from above field then press save "
3997
- "after that click on deactivate for deactivate this purchase code from this "
3998
- "domain then you can activate another domain."
3999
- msgstr ""
4000
-
4001
- #: app/features/mec/settings.php:1414
4002
  msgid "Please Refresh Page"
4003
  msgstr ""
4004
 
@@ -4079,6 +4076,323 @@ msgstr ""
4079
  msgid "Desktop Large Screens"
4080
  msgstr ""
4081
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4082
  #: app/features/mec/support.php:138
4083
  msgid "Knowledgebase"
4084
  msgstr ""
@@ -4103,10 +4417,6 @@ msgstr ""
4103
  msgid "How to add/manage shortcodes?"
4104
  msgstr ""
4105
 
4106
- #: app/features/mec/support.php:147
4107
- msgid "View all Articles"
4108
- msgstr ""
4109
-
4110
  #: app/features/organizers.php:105 app/features/organizers.php:147
4111
  #: app/features/speakers.php:176
4112
  msgid "Insert organizer phone number."
@@ -4167,7 +4477,7 @@ msgstr ""
4167
  msgid "eg. https://webnus.net"
4168
  msgstr ""
4169
 
4170
- #: app/features/organizers.php:300 app/libraries/main.php:4233
4171
  #: app/skins/single.php:194
4172
  msgid "Other Organizers"
4173
  msgstr ""
@@ -4186,11 +4496,11 @@ msgstr ""
4186
  msgid "#"
4187
  msgstr ""
4188
 
4189
- #: app/features/profile/profile.php:34 app/libraries/main.php:2375
4190
  msgid "Status"
4191
  msgstr ""
4192
 
4193
- #: app/features/profile/profile.php:37 app/libraries/main.php:1637
4194
  msgid "Attendees"
4195
  msgstr ""
4196
 
@@ -4203,8 +4513,8 @@ msgstr ""
4203
  msgid "<i class=\"mec-sl-eye\"></i> %s"
4204
  msgstr ""
4205
 
4206
- #: app/features/profile/profile.php:96 app/libraries/main.php:1651
4207
- #: app/libraries/main.php:4231
4208
  msgid "Ticket"
4209
  msgstr ""
4210
 
@@ -4217,7 +4527,7 @@ msgid "No bookings found!"
4217
  msgstr ""
4218
 
4219
  #: app/features/speakers.php:56 app/features/speakers.php:242
4220
- #: app/libraries/main.php:4205
4221
  msgid "Speaker"
4222
  msgstr ""
4223
 
@@ -4247,7 +4557,7 @@ msgid "Insert URL of Facebook Page"
4247
  msgstr ""
4248
 
4249
  #: app/features/speakers.php:135 app/features/speakers.php:187
4250
- #: app/libraries/main.php:1076
4251
  msgid "Google+"
4252
  msgstr ""
4253
 
@@ -4301,8 +4611,8 @@ msgid "day"
4301
  msgstr ""
4302
 
4303
  #: app/libraries/factory.php:302 app/modules/countdown/details.php:122
4304
- #: app/skins/available_spot/tpl.php:106 app/skins/countdown/tpl.php:92
4305
- #: app/skins/countdown/tpl.php:136 app/skins/countdown/tpl.php:185
4306
  msgid "days"
4307
  msgstr ""
4308
 
@@ -4311,8 +4621,8 @@ msgid "hour"
4311
  msgstr ""
4312
 
4313
  #: app/libraries/factory.php:304 app/modules/countdown/details.php:129
4314
- #: app/skins/available_spot/tpl.php:110 app/skins/countdown/tpl.php:98
4315
- #: app/skins/countdown/tpl.php:142 app/skins/countdown/tpl.php:191
4316
  msgid "hours"
4317
  msgstr ""
4318
 
@@ -4321,8 +4631,8 @@ msgid "minute"
4321
  msgstr ""
4322
 
4323
  #: app/libraries/factory.php:306 app/modules/countdown/details.php:136
4324
- #: app/skins/available_spot/tpl.php:114 app/skins/countdown/tpl.php:104
4325
- #: app/skins/countdown/tpl.php:148 app/skins/countdown/tpl.php:197
4326
  msgid "minutes"
4327
  msgstr ""
4328
 
@@ -4331,8 +4641,8 @@ msgid "second"
4331
  msgstr ""
4332
 
4333
  #: app/libraries/factory.php:308 app/modules/countdown/details.php:143
4334
- #: app/skins/available_spot/tpl.php:118 app/skins/countdown/tpl.php:110
4335
- #: app/skins/countdown/tpl.php:154 app/skins/countdown/tpl.php:203
4336
  msgid "seconds"
4337
  msgstr ""
4338
 
@@ -4348,31 +4658,38 @@ msgstr ""
4348
  msgid "There is no excerpt because this is a protected post."
4349
  msgstr ""
4350
 
4351
- #: app/libraries/main.php:327 app/libraries/main.php:1195
 
4352
  msgid "Grid View"
4353
  msgstr ""
4354
 
4355
- #: app/libraries/main.php:328 app/libraries/main.php:1196
 
4356
  msgid "Agenda View"
4357
  msgstr ""
4358
 
4359
- #: app/libraries/main.php:329 app/libraries/main.php:1187
 
4360
  msgid "Full Calendar"
4361
  msgstr ""
4362
 
4363
- #: app/libraries/main.php:331 app/libraries/main.php:1189
 
4364
  msgid "Calendar/Monthly View"
4365
  msgstr ""
4366
 
4367
- #: app/libraries/main.php:334 app/libraries/main.php:1192
 
4368
  msgid "Timetable View"
4369
  msgstr ""
4370
 
4371
- #: app/libraries/main.php:335 app/libraries/main.php:1193
 
4372
  msgid "Masonry View"
4373
  msgstr ""
4374
 
4375
- #: app/libraries/main.php:336 app/libraries/main.php:1197
 
4376
  msgid "Map View"
4377
  msgstr ""
4378
 
@@ -4396,375 +4713,379 @@ msgstr ""
4396
  msgid "Slider View"
4397
  msgstr ""
4398
 
4399
- #: app/libraries/main.php:378 app/libraries/main.php:4211
4400
  msgid "SU"
4401
  msgstr ""
4402
 
4403
- #: app/libraries/main.php:379 app/libraries/main.php:4212
4404
  msgid "MO"
4405
  msgstr ""
4406
 
4407
- #: app/libraries/main.php:380 app/libraries/main.php:4213
4408
  msgid "TU"
4409
  msgstr ""
4410
 
4411
- #: app/libraries/main.php:381 app/libraries/main.php:4214
4412
  msgid "WE"
4413
  msgstr ""
4414
 
4415
- #: app/libraries/main.php:382 app/libraries/main.php:4215
4416
  msgid "TH"
4417
  msgstr ""
4418
 
4419
- #: app/libraries/main.php:383 app/libraries/main.php:4216
4420
  msgid "FR"
4421
  msgstr ""
4422
 
4423
- #: app/libraries/main.php:384 app/libraries/main.php:4217
4424
  msgid "SA"
4425
  msgstr ""
4426
 
4427
- #: app/libraries/main.php:1034
4428
  msgid "Events at this location"
4429
  msgstr ""
4430
 
4431
- #: app/libraries/main.php:1034
4432
  msgid "Event at this location"
4433
  msgstr ""
4434
 
4435
- #: app/libraries/main.php:1075
4436
  msgid "Facebook"
4437
  msgstr ""
4438
 
4439
- #: app/libraries/main.php:1077
4440
  msgid "Twitter"
4441
  msgstr ""
4442
 
4443
- #: app/libraries/main.php:1078 app/libraries/main.php:1143
4444
  msgid "Linkedin"
4445
  msgstr ""
4446
 
4447
- #: app/libraries/main.php:1079 app/libraries/main.php:1176
4448
  msgid "VK"
4449
  msgstr ""
4450
 
4451
- #: app/libraries/main.php:1098
4452
  msgid "Share on Facebook"
4453
  msgstr ""
4454
 
4455
- #: app/libraries/main.php:1113
4456
  msgid "Google Plus"
4457
  msgstr ""
4458
 
4459
- #: app/libraries/main.php:1128
4460
  msgid "Tweet"
4461
  msgstr ""
4462
 
4463
- #: app/libraries/main.php:1532
 
 
 
 
4464
  msgid "Your booking successfully verified."
4465
  msgstr ""
4466
 
4467
- #: app/libraries/main.php:1533
4468
  msgid "Your booking cannot verify!"
4469
  msgstr ""
4470
 
4471
- #: app/libraries/main.php:1545
4472
  msgid "Your booking successfully canceled."
4473
  msgstr ""
4474
 
4475
- #: app/libraries/main.php:1546
4476
  msgid "Your booking cannot be canceled."
4477
  msgstr ""
4478
 
4479
- #: app/libraries/main.php:1550
4480
  msgid "You canceled the payment successfully."
4481
  msgstr ""
4482
 
4483
- #: app/libraries/main.php:1554
4484
  msgid "You returned from payment gateway successfully."
4485
  msgstr ""
4486
 
4487
- #: app/libraries/main.php:1578
4488
  msgid "Cannot find the booking!"
4489
  msgstr ""
4490
 
4491
- #: app/libraries/main.php:1578
4492
  msgid "Booking is invalid."
4493
  msgstr ""
4494
 
4495
- #: app/libraries/main.php:1607
4496
  #, php-format
4497
  msgid "%s Invoice"
4498
  msgstr ""
4499
 
4500
- #: app/libraries/main.php:1628
4501
  msgid "Transaction ID"
4502
  msgstr ""
4503
 
4504
- #: app/libraries/main.php:1681
4505
  msgid "Billing"
4506
  msgstr ""
4507
 
4508
- #: app/libraries/main.php:1692
4509
  msgid "Total"
4510
  msgstr ""
4511
 
4512
- #: app/libraries/main.php:1725
4513
  msgid "Security nonce is not valid."
4514
  msgstr ""
4515
 
4516
- #: app/libraries/main.php:1725 app/libraries/main.php:1757
4517
  msgid "iCal export stopped!"
4518
  msgstr ""
4519
 
4520
- #: app/libraries/main.php:1757
4521
  msgid "Request is not valid."
4522
  msgstr ""
4523
 
4524
- #: app/libraries/main.php:2077 app/libraries/main.php:2106
4525
- #: app/libraries/main.php:2135 app/libraries/main.php:2164
4526
- #: app/libraries/main.php:2193 app/libraries/main.php:2217
4527
- #: app/libraries/main.php:2261 app/libraries/main.php:2305
4528
- #: app/libraries/main.php:2352 app/libraries/main.php:2398
4529
  msgid "Sort"
4530
  msgstr ""
4531
 
4532
- #: app/libraries/main.php:2083 app/libraries/main.php:2112
4533
- #: app/libraries/main.php:2141 app/libraries/main.php:2170
4534
- #: app/libraries/main.php:2223 app/libraries/main.php:2267
4535
- #: app/libraries/main.php:2311 app/libraries/main.php:2358
4536
  msgid "Required Field"
4537
  msgstr ""
4538
 
4539
- #: app/libraries/main.php:2089 app/libraries/main.php:2118
4540
- #: app/libraries/main.php:2147 app/libraries/main.php:2176
4541
- #: app/libraries/main.php:2229 app/libraries/main.php:2273
4542
- #: app/libraries/main.php:2317 app/libraries/main.php:2364
4543
  msgid "Insert a label for this field"
4544
  msgstr ""
4545
 
4546
- #: app/libraries/main.php:2199
4547
  msgid "HTML and shortcode are allowed."
4548
  msgstr ""
4549
 
4550
- #: app/libraries/main.php:2242 app/libraries/main.php:2286
4551
- #: app/libraries/main.php:2330
4552
  msgid "Option"
4553
  msgstr ""
4554
 
4555
- #: app/libraries/main.php:2364
4556
  #, php-format
4557
  msgid "Instead of %s, the page title with a link will be show."
4558
  msgstr ""
4559
 
4560
- #: app/libraries/main.php:2366
4561
  msgid "Agreement Page"
4562
  msgstr ""
4563
 
4564
- #: app/libraries/main.php:2377
4565
  msgid "Checked by default"
4566
  msgstr ""
4567
 
4568
- #: app/libraries/main.php:2378
4569
  msgid "Unchecked by default"
4570
  msgstr ""
4571
 
4572
- #: app/libraries/main.php:2400
4573
  msgid "Insert a label for this option"
4574
  msgstr ""
4575
 
4576
- #: app/libraries/main.php:2415
4577
  msgid "Free"
4578
  msgstr ""
4579
 
4580
- #: app/libraries/main.php:3067
4581
  #, php-format
4582
  msgid "Copy of %s"
4583
  msgstr ""
4584
 
4585
- #: app/libraries/main.php:3711
4586
  msgid "Booked an event."
4587
  msgstr ""
4588
 
4589
- #: app/libraries/main.php:3752
4590
  #, php-format
4591
  msgid "%s booked %s event."
4592
  msgstr ""
4593
 
4594
- #: app/libraries/main.php:4194
4595
  msgid "Taxonomies"
4596
  msgstr ""
4597
 
4598
- #: app/libraries/main.php:4196
4599
  msgid "Category Plural Label"
4600
  msgstr ""
4601
 
4602
- #: app/libraries/main.php:4197
4603
  msgid "Category Singular Label"
4604
  msgstr ""
4605
 
4606
- #: app/libraries/main.php:4198
4607
  msgid "Label Plural Label"
4608
  msgstr ""
4609
 
4610
- #: app/libraries/main.php:4199
4611
  msgid "Label Singular Label"
4612
  msgstr ""
4613
 
4614
- #: app/libraries/main.php:4199
4615
  msgid "label"
4616
  msgstr ""
4617
 
4618
- #: app/libraries/main.php:4200
4619
  msgid "Location Plural Label"
4620
  msgstr ""
4621
 
4622
- #: app/libraries/main.php:4201
4623
  msgid "Location Singular Label"
4624
  msgstr ""
4625
 
4626
- #: app/libraries/main.php:4202
4627
  msgid "Organizer Plural Label"
4628
  msgstr ""
4629
 
4630
- #: app/libraries/main.php:4203
4631
  msgid "Organizer Singular Label"
4632
  msgstr ""
4633
 
4634
- #: app/libraries/main.php:4204
4635
  msgid "Speaker Plural Label"
4636
  msgstr ""
4637
 
4638
- #: app/libraries/main.php:4205
4639
  msgid "Speaker Singular Label"
4640
  msgstr ""
4641
 
4642
- #: app/libraries/main.php:4211
4643
  msgid "Sunday abbreviation"
4644
  msgstr ""
4645
 
4646
- #: app/libraries/main.php:4212
4647
  msgid "Monday abbreviation"
4648
  msgstr ""
4649
 
4650
- #: app/libraries/main.php:4213
4651
  msgid "Tuesday abbreviation"
4652
  msgstr ""
4653
 
4654
- #: app/libraries/main.php:4214
4655
  msgid "Wednesday abbreviation"
4656
  msgstr ""
4657
 
4658
- #: app/libraries/main.php:4215
4659
  msgid "Thursday abbreviation"
4660
  msgstr ""
4661
 
4662
- #: app/libraries/main.php:4216
4663
  msgid "Friday abbreviation"
4664
  msgstr ""
4665
 
4666
- #: app/libraries/main.php:4217
4667
  msgid "Saturday abbreviation"
4668
  msgstr ""
4669
 
4670
- #: app/libraries/main.php:4221
4671
  msgid "Others"
4672
  msgstr ""
4673
 
4674
- #: app/libraries/main.php:4223
4675
  msgid "Booking Success Message"
4676
  msgstr ""
4677
 
4678
- #: app/libraries/main.php:4223
4679
  msgid ""
4680
  "Thanks for your booking. Your tickets booked, booking verification might be "
4681
  "needed, please check your email."
4682
  msgstr ""
4683
 
4684
- #: app/libraries/main.php:4224 app/widgets/single.php:131
4685
  msgid "Register Button"
4686
  msgstr ""
4687
 
4688
- #: app/libraries/main.php:4224 app/skins/available_spot/tpl.php:164
4689
- #: app/skins/carousel/render.php:79 app/skins/carousel/render.php:104
4690
- #: app/skins/grid/render.php:76 app/skins/grid/render.php:107
4691
- #: app/skins/grid/render.php:139 app/skins/grid/render.php:167
4692
- #: app/skins/list/render.php:60 app/skins/list/render.php:141
4693
- #: app/skins/masonry/render.php:93 app/skins/single/default.php:218
4694
  #: app/skins/single/default.php:220 app/skins/single/default.php:425
4695
  #: app/skins/single/default.php:427 app/skins/single/m1.php:126
4696
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
4697
  #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
4698
- #: app/skins/single/modern.php:60 app/skins/slider/render.php:75
4699
- #: app/skins/slider/render.php:96 app/skins/slider/render.php:116
4700
- #: app/skins/slider/render.php:136 app/skins/slider/render.php:167
4701
  msgid "REGISTER"
4702
  msgstr ""
4703
 
4704
- #: app/libraries/main.php:4225
4705
  msgid "View Detail Button"
4706
  msgstr ""
4707
 
4708
- #: app/libraries/main.php:4225 app/skins/carousel/render.php:79
4709
- #: app/skins/carousel/render.php:104 app/skins/grid/render.php:76
4710
- #: app/skins/grid/render.php:107 app/skins/grid/render.php:139
4711
- #: app/skins/grid/render.php:167 app/skins/list/render.php:60
4712
- #: app/skins/list/render.php:141 app/skins/masonry/render.php:93
4713
- #: app/skins/slider/render.php:75 app/skins/slider/render.php:96
4714
- #: app/skins/slider/render.php:116 app/skins/slider/render.php:136
4715
- #: app/skins/slider/render.php:167
4716
  msgid "View Detail"
4717
  msgstr ""
4718
 
4719
- #: app/libraries/main.php:4226
4720
  msgid "Event Detail Button"
4721
  msgstr ""
4722
 
4723
- #: app/libraries/main.php:4226 app/skins/countdown/tpl.php:178
4724
  msgid "Event Detail"
4725
  msgstr ""
4726
 
4727
- #: app/libraries/main.php:4228
4728
  msgid "More Info Link"
4729
  msgstr ""
4730
 
4731
- #: app/libraries/main.php:4231
4732
  msgid "Ticket (Singular)"
4733
  msgstr ""
4734
 
4735
- #: app/libraries/main.php:4232
4736
  msgid "Tickets (Plural)"
4737
  msgstr ""
4738
 
4739
- #: app/libraries/main.php:4298
4740
  msgid "EventON"
4741
  msgstr ""
4742
 
4743
- #: app/libraries/main.php:4299
4744
  msgid "The Events Calendar"
4745
  msgstr ""
4746
 
4747
- #: app/libraries/main.php:4300
4748
  msgid "Events Schedule WP Plugin"
4749
  msgstr ""
4750
 
4751
- #: app/libraries/main.php:4301
4752
  msgid "Calendarize It"
4753
  msgstr ""
4754
 
4755
- #: app/libraries/main.php:4375
4756
  msgid "Confirmed"
4757
  msgstr ""
4758
 
4759
- #: app/libraries/main.php:4376
4760
  msgid "Rejected"
4761
  msgstr ""
4762
 
4763
- #: app/libraries/main.php:4377
4764
  msgid "Pending"
4765
  msgstr ""
4766
 
4767
- #: app/libraries/main.php:4392
4768
  msgid "Waiting"
4769
  msgstr ""
4770
 
@@ -4808,11 +5129,11 @@ msgstr ""
4808
  msgid "No"
4809
  msgstr ""
4810
 
4811
- #: app/libraries/render.php:340
4812
  msgid "Skin controller does not exist."
4813
  msgstr ""
4814
 
4815
- #: app/libraries/render.php:410 app/modules/local-time/details.php:47
4816
  #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
4817
  #: app/skins/single/default.php:280 app/skins/single/m1.php:34
4818
  #: app/skins/single/modern.php:169
@@ -4861,8 +5182,8 @@ msgid "Fill other attendees information like the first form."
4861
  msgstr ""
4862
 
4863
  #: app/modules/booking/steps/form.php:120
4864
- #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:79
4865
- #: app/skins/countdown/tpl.php:123 app/skins/countdown/tpl.php:168
4866
  msgid "Next"
4867
  msgstr ""
4868
 
@@ -4986,30 +5307,35 @@ msgid "No event found!"
4986
  msgstr ""
4987
 
4988
  #: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
4989
- #: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:81
4990
  msgid "Load More"
4991
  msgstr ""
4992
 
4993
- #: app/skins/available_spot/tpl.php:99
4994
  msgid "Available Spot(s):"
4995
  msgstr ""
4996
 
4997
- #: app/skins/countdown/tpl.php:79 app/skins/countdown/tpl.php:123
4998
- #: app/skins/countdown/tpl.php:168
4999
- #, php-format
5000
- msgid "%s Upcoming Event"
5001
  msgstr ""
5002
 
5003
- #: app/skins/countdown/tpl.php:117 app/skins/countdown/tpl.php:161
5004
- #: app/skins/cover/tpl.php:60 app/skins/list/render.php:77
 
5005
  msgid "EVENT DETAIL"
5006
  msgstr ""
5007
 
5008
- #: app/skins/cover/tpl.php:42
 
 
 
 
 
 
5009
  msgid "featured event"
5010
  msgstr ""
5011
 
5012
- #: app/skins/daily_view/render.php:38
5013
  msgid "No event"
5014
  msgstr ""
5015
 
@@ -5022,16 +5348,16 @@ msgid "All"
5022
  msgstr ""
5023
 
5024
  #: app/skins/monthly_view/calendar.php:66
5025
- #: app/skins/monthly_view/calendar.php:104
5026
  #: app/skins/monthly_view/calendar_clean.php:67
5027
- #: app/skins/monthly_view/calendar_clean.php:105
5028
  #, php-format
5029
  msgid "Events for %s"
5030
  msgstr ""
5031
 
5032
- #: app/skins/monthly_view/calendar.php:106
5033
- #: app/skins/monthly_view/calendar_clean.php:107
5034
- #: app/skins/timetable/render.php:70 app/skins/weekly_view/render.php:50
5035
  msgid "No Events"
5036
  msgstr ""
5037
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-03-17 15:03+0330\n"
5
+ "PO-Revision-Date: 2019-03-17 15:03+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
17
 
18
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
19
  #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
20
+ #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
25
  msgid "Content"
26
  msgstr ""
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:326
29
+ #: app/features/mec.php:355 app/features/mec.php:381
30
  msgid "Shortcode"
31
  msgstr ""
32
 
47
  msgstr ""
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:558
50
+ #: app/features/mec/settings.php:1007
51
  msgid "Event Color"
52
  msgstr ""
53
 
54
+ #: app/features/contextual.php:55 app/features/mec.php:312
55
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
56
  #: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
57
+ #: app/features/mec/regform.php:24 app/features/mec/settings.php:41
58
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:51
59
+ #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
60
  msgid "Settings"
61
  msgstr ""
62
 
63
+ #: app/features/contextual.php:62 app/features/events.php:1215
64
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
65
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
66
  #: app/features/mec/regform.php:32 app/features/mec/regform.php:95
67
+ #: app/features/mec/settings.php:204 app/features/mec/styles.php:33
68
  #: app/features/mec/styling.php:60 app/features/mec/support.php:29
69
  msgid "Booking Form"
70
  msgstr ""
81
  #: app/features/contextual.php:70 app/features/mec/gateways.php:40
82
  #: app/features/mec/gateways.php:97 app/features/mec/ie.php:36
83
  #: app/features/mec/messages.php:40 app/features/mec/notifications.php:39
84
+ #: app/features/mec/regform.php:39 app/features/mec/settings.php:211
85
  #: app/features/mec/styles.php:40 app/features/mec/styling.php:67
86
  #: app/features/mec/support.php:36
87
  msgid "Payment Gateways"
97
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
98
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
99
  #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:96
100
+ #: app/features/mec/regform.php:47 app/features/mec/settings.php:221
101
  #: app/features/mec/styles.php:49 app/features/mec/styling.php:76
102
  #: app/features/mec/support.php:45
103
  msgid "Notifications"
162
  "\"0\" allowfullscreen></iframe>"
163
  msgstr ""
164
 
165
+ #: app/features/contextual.php:117 app/features/mec/settings.php:48
166
+ #: app/features/mec/settings.php:273
167
  msgid "General Options"
168
  msgstr ""
169
 
170
+ #: app/features/contextual.php:139 app/features/mec/settings.php:60
171
+ #: app/features/mec/settings.php:540
172
  msgid "Slugs/Permalinks"
173
  msgstr ""
174
 
175
+ #: app/features/contextual.php:152 app/features/mec/settings.php:66
176
+ #: app/features/mec/settings.php:560
177
  msgid "Event Details/Single Event Page"
178
  msgstr ""
179
 
180
+ #: app/features/contextual.php:166 app/features/mec/settings.php:72
181
+ #: app/features/mec/settings.php:601
182
  msgid "Currency Options"
183
  msgstr ""
184
 
185
+ #: app/features/contextual.php:182 app/features/mec/settings.php:84
186
+ #: app/features/mec/settings.php:668
187
  msgid "Google Maps Options"
188
  msgstr ""
189
 
190
+ #: app/features/contextual.php:244 app/features/mec/settings.php:90
191
+ #: app/features/mec/settings.php:742
192
  msgid "Google Recaptcha Options"
193
  msgstr ""
194
 
195
+ #: app/features/contextual.php:258 app/features/mec/settings.php:120
196
+ #: app/features/mec/settings.php:860
197
  msgid "Countdown Options"
198
  msgstr ""
199
 
200
+ #: app/features/contextual.php:268 app/features/mec/settings.php:126
201
+ #: app/features/mec/settings.php:881
202
  msgid "Social Networks"
203
  msgstr ""
204
 
205
+ #: app/features/contextual.php:278 app/features/mec/settings.php:132
206
+ #: app/features/mec/settings.php:906
207
  msgid "Next Event Module"
208
  msgstr ""
209
 
210
+ #: app/features/contextual.php:286 app/features/mec/settings.php:138
211
+ #: app/features/mec/settings.php:934
212
  msgid "Frontend Event Submission"
213
  msgstr ""
214
 
215
+ #: app/features/contextual.php:298 app/features/events.php:581
216
+ #: app/features/mec/settings.php:150
217
  msgid "Exceptional Days"
218
  msgstr ""
219
 
220
  #: app/features/contextual.php:308 app/features/events.php:263
221
+ #: app/features/mec/settings.php:162 app/features/mec/settings.php:1108
222
  msgid "Booking"
223
  msgstr ""
224
 
225
+ #: app/features/contextual.php:318 app/features/mec/settings.php:168
226
+ #: app/features/mec/settings.php:1198
227
  msgid "Coupons"
228
  msgstr ""
229
 
230
+ #: app/features/contextual.php:326 app/features/mec/settings.php:186
231
+ #: app/features/mec/settings.php:1339
232
  msgid "BuddyPress Integration"
233
  msgstr ""
234
 
235
+ #: app/features/contextual.php:334 app/features/mec/settings.php:192
236
+ #: app/features/mec/settings.php:1369
237
  msgid "Mailchimp Integration"
238
  msgstr ""
239
 
240
+ #: app/features/contextual.php:346
 
241
  msgid "MEC Activation"
242
  msgstr ""
243
 
244
  #: app/features/events.php:132 app/features/ix/export.php:34
245
+ #: app/features/mec/dashboard.php:157 app/skins/daily_view/tpl.php:79
246
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
247
  msgid "Events"
248
  msgstr ""
256
  msgid "Event"
257
  msgstr ""
258
 
259
+ #: app/features/events.php:134 app/features/mec.php:298
260
  msgid "Add Event"
261
  msgstr ""
262
 
264
  msgid "Add New Event"
265
  msgstr ""
266
 
267
+ #: app/features/events.php:136 app/features/ix.php:3177
268
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
269
  msgid "No events found!"
270
  msgstr ""
296
  #: app/features/mec/meta_boxes/search_form.php:292
297
  #: app/features/mec/meta_boxes/search_form.php:332
298
  #: app/features/mec/meta_boxes/search_form.php:379
299
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4233
300
  #: app/libraries/skins.php:711 app/skins/single/default.php:156
301
  #: app/skins/single/default.php:363 app/skins/single/m1.php:169
302
  #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
304
  msgstr ""
305
 
306
  #: app/features/events.php:153 app/features/fes/form.php:510
307
+ #: app/features/mec.php:300 app/features/mec/meta_boxes/filter.php:70
308
+ #: app/libraries/main.php:4232
309
  msgid "Categories"
310
  msgstr ""
311
 
377
  msgid "Event Details"
378
  msgstr ""
379
 
380
+ #: app/features/events.php:296 app/features/events.php:1984
381
+ #: app/features/events.php:2028 app/features/fes/form.php:471
382
  #: app/features/ix.php:2719 app/features/ix.php:2760
383
+ #: app/features/mec/settings.php:983 app/libraries/main.php:4265
384
  #: app/widgets/single.php:103
385
  msgid "Event Cost"
386
  msgstr ""
387
 
388
  #: app/features/events.php:299 app/features/fes/form.php:474
389
+ #: app/libraries/main.php:4266 app/skins/single/default.php:91
390
  #: app/skins/single/default.php:298 app/skins/single/m1.php:49
391
  #: app/skins/single/modern.php:184
392
  msgid "Cost"
407
  msgid "Name"
408
  msgstr ""
409
 
410
+ #: app/features/events.php:381 app/features/events.php:1250
411
  #: app/features/fes/form.php:429 app/features/mec/regform.php:137
412
  #: app/features/organizers.php:110 app/features/organizers.php:150
413
  #: app/features/profile/profile.php:93 app/features/speakers.php:119
414
+ #: app/features/speakers.php:179 app/libraries/main.php:1082
415
+ #: app/libraries/main.php:1163 app/libraries/main.php:2134
416
  #: app/libraries/notifications.php:560 app/modules/booking/steps/form.php:31
417
  #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
418
  #: app/skins/single/default.php:198 app/skins/single/default.php:405
426
  msgstr ""
427
 
428
  #: app/features/events.php:389 app/features/events.php:393
429
+ #: app/features/events.php:1805 app/features/events.php:1984
430
+ #: app/features/events.php:2028 app/features/fes/form.php:227
431
  #: app/features/fes/form.php:231 app/features/ix.php:2719
432
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
433
+ #: app/features/mec/dashboard.php:298
434
  #: app/features/mec/meta_boxes/display_options.php:42
435
  #: app/features/mec/meta_boxes/display_options.php:139
436
  #: app/features/mec/meta_boxes/display_options.php:235
442
  #: app/features/mec/meta_boxes/display_options.php:544
443
  #: app/features/mec/meta_boxes/display_options.php:590
444
  #: app/features/mec/meta_boxes/display_options.php:633
445
+ #: app/features/mec/meta_boxes/display_options.php:800
446
+ #: app/features/mec/meta_boxes/display_options.php:869
447
  msgid "Start Date"
448
  msgstr ""
449
 
450
  #: app/features/events.php:421 app/features/events.php:461
451
+ #: app/features/events.php:867 app/features/events.php:885
452
+ #: app/features/events.php:970 app/features/events.php:988
453
  #: app/features/fes/form.php:259 app/features/fes/form.php:299
454
  msgid "AM"
455
  msgstr ""
456
 
457
  #: app/features/events.php:422 app/features/events.php:462
458
+ #: app/features/events.php:868 app/features/events.php:886
459
+ #: app/features/events.php:971 app/features/events.php:989
460
  #: app/features/fes/form.php:260 app/features/fes/form.php:300
461
  msgid "PM"
462
  msgstr ""
463
 
464
  #: app/features/events.php:429 app/features/events.php:433
465
+ #: app/features/events.php:1806 app/features/events.php:1984
466
+ #: app/features/events.php:2028 app/features/fes/form.php:267
467
  #: app/features/fes/form.php:271 app/features/ix.php:2719
468
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
469
+ #: app/features/mec/dashboard.php:299
470
  msgid "End Date"
471
  msgstr ""
472
 
501
  msgstr ""
502
 
503
  #: app/features/events.php:491 app/features/fes/form.php:329
504
+ #: app/features/mec/dashboard.php:301 app/skins/full_calendar/tpl.php:71
505
  msgid "Daily"
506
  msgstr ""
507
 
523
  msgstr ""
524
 
525
  #: app/features/events.php:496 app/features/fes/form.php:334
526
+ #: app/features/mec/dashboard.php:302 app/skins/full_calendar/tpl.php:69
527
  msgid "Monthly"
528
  msgstr ""
529
 
530
  #: app/features/events.php:497 app/features/fes/form.php:335
531
+ #: app/features/mec/dashboard.php:303 app/skins/full_calendar/tpl.php:68
532
  msgid "Yearly"
533
  msgstr ""
534
 
583
  msgid "Sunday"
584
  msgstr ""
585
 
586
+ #: app/features/events.php:518 app/features/events.php:922
587
+ #: app/features/events.php:936 app/features/events.php:1026
588
+ #: app/features/ix/import_f_calendar.php:42
589
+ #: app/features/ix/import_g_calendar.php:51
590
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
591
+ msgid "Start"
592
+ msgstr ""
593
+
594
+ #: app/features/events.php:519 app/features/events.php:923
595
+ #: app/features/events.php:937 app/features/events.php:1027
596
+ msgid "End"
597
  msgstr ""
598
 
599
+ #: app/features/events.php:520 app/features/events.php:592
600
+ #: app/features/events.php:668 app/features/events.php:723
601
+ #: app/features/events.php:844 app/features/events.php:915
602
+ #: app/features/events.php:1018 app/features/events.php:1069
603
+ #: app/features/events.php:1150 app/features/fes/form.php:357
604
  msgid "Add"
605
  msgstr ""
606
 
607
+ #: app/features/events.php:521 app/features/fes/form.php:358
608
  msgid "Add certain days to event occurrence dates."
609
  msgstr ""
610
 
611
+ #: app/features/events.php:543 app/features/fes/form.php:380
612
  msgid "Ends Repeat"
613
  msgstr ""
614
 
615
+ #: app/features/events.php:547 app/features/fes/form.php:384
616
  msgid "Never"
617
  msgstr ""
618
 
619
+ #: app/features/events.php:552 app/features/fes/form.php:389
620
  msgid "On"
621
  msgstr ""
622
 
623
+ #: app/features/events.php:559 app/features/fes/form.php:396
624
  msgid "After"
625
  msgstr ""
626
 
627
+ #: app/features/events.php:561 app/features/fes/form.php:398
628
  msgid "Occurrences times"
629
  msgstr ""
630
 
631
+ #: app/features/events.php:562 app/features/fes/form.php:399
632
  msgid ""
633
  "The event will finish after certain repeats. For example if you set it to "
634
  "10, the event will finish after 10 repeats."
635
  msgstr ""
636
 
637
+ #: app/features/events.php:587
638
  msgid "Exclude certain days"
639
  msgstr ""
640
 
641
+ #: app/features/events.php:591 app/features/fes/form.php:356
642
+ #: app/features/profile/profile.php:31 app/libraries/main.php:1649
643
+ #: app/modules/booking/steps/tickets.php:22
644
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
645
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
646
+ #: app/skins/single/modern.php:151
647
+ msgid "Date"
648
+ msgstr ""
649
+
650
+ #: app/features/events.php:593
651
  msgid "Exclude certain days from event occurrence dates."
652
  msgstr ""
653
 
654
+ #: app/features/events.php:637 app/libraries/render.php:454
655
  msgid "Day 1"
656
  msgstr ""
657
 
658
+ #: app/features/events.php:650 app/features/mec/settings.php:1037
659
  #: app/skins/single.php:246
660
  msgid "Hourly Schedule"
661
  msgstr ""
662
 
663
+ #: app/features/events.php:653
664
  msgid "Add Day"
665
  msgstr ""
666
 
667
+ #: app/features/events.php:654
668
  msgid ""
669
  "Add new days for schedule. For example if your event is multiple days, you "
670
  "can add a different schedule for each day!"
671
  msgstr ""
672
 
673
+ #: app/features/events.php:660
674
  #, php-format
675
  msgid "Day %s"
676
  msgstr ""
677
 
678
+ #: app/features/events.php:663 app/features/events.php:676
679
+ #: app/features/events.php:696 app/features/events.php:718
680
+ #: app/features/events.php:734 app/features/events.php:1156
681
+ #: app/features/events.php:1178 app/features/events.php:1802
682
+ #: app/features/events.php:1984 app/features/events.php:2028
683
  #: app/features/fes/form.php:216 app/features/ix.php:2719
684
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1299
685
+ #: app/features/mec/settings.php:1319 app/features/mec/styling.php:199
686
  msgid "Title"
687
  msgstr ""
688
 
689
+ #: app/features/events.php:665 app/features/events.php:678
690
+ #: app/features/events.php:698 app/features/events.php:720
691
+ #: app/features/events.php:736 app/features/events.php:910
692
+ #: app/features/events.php:926 app/features/events.php:940
693
+ #: app/features/events.php:1013 app/features/events.php:1030
694
+ #: app/features/events.php:1089 app/features/events.php:1114
695
+ #: app/features/events.php:1167 app/features/events.php:1189
696
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1248
697
+ #: app/features/mec/settings.php:1271 app/features/mec/settings.php:1310
698
+ #: app/features/mec/settings.php:1330 app/libraries/main.php:2113
699
+ #: app/libraries/main.php:2142 app/libraries/main.php:2171
700
+ #: app/libraries/main.php:2200 app/libraries/main.php:2222
701
+ #: app/libraries/main.php:2253 app/libraries/main.php:2297
702
+ #: app/libraries/main.php:2341 app/libraries/main.php:2388
703
+ #: app/libraries/main.php:2426
704
  msgid "Remove"
705
  msgstr ""
706
 
707
+ #: app/features/events.php:669 app/features/events.php:724
708
  msgid "Add new hourly schedule row"
709
  msgstr ""
710
 
711
+ #: app/features/events.php:674 app/features/events.php:694
712
+ #: app/features/events.php:732
713
  msgid "From e.g. 8:15"
714
  msgstr ""
715
 
716
+ #: app/features/events.php:675 app/features/events.php:695
717
+ #: app/features/events.php:733
718
  msgid "To e.g. 8:45"
719
  msgstr ""
720
 
721
+ #: app/features/events.php:677 app/features/events.php:697
722
+ #: app/features/events.php:735 app/features/events.php:891
723
+ #: app/features/events.php:994
724
  msgid "Description"
725
  msgstr ""
726
 
727
+ #: app/features/events.php:681 app/features/events.php:701
728
+ #: app/features/events.php:739 app/features/fes/form.php:603
729
+ #: app/features/mec.php:308 app/features/mec/settings.php:78
730
+ #: app/features/mec/settings.php:1031 app/features/speakers.php:57
731
+ #: app/libraries/main.php:4240 app/modules/speakers/details.php:18
732
  msgid "Speakers"
733
  msgstr ""
734
 
735
+ #: app/features/events.php:715 app/features/events.php:719
736
  msgid "Day :dd:"
737
  msgstr ""
738
 
739
+ #: app/features/events.php:766 app/features/fes/form.php:448
740
+ #: app/features/mec/settings.php:977
741
  msgid "Event Links"
742
  msgstr ""
743
 
744
+ #: app/features/events.php:768 app/features/fes/form.php:450
745
+ #: app/libraries/main.php:4263
746
  msgid "Event Link"
747
  msgstr ""
748
 
749
+ #: app/features/events.php:769 app/features/events.php:774
750
  #: app/features/fes/form.php:451 app/features/fes/form.php:456
751
  msgid "eg. http://yoursite.com/your-event"
752
  msgstr ""
753
 
754
+ #: app/features/events.php:770 app/features/fes/form.php:452
755
  msgid ""
756
  "If you fill it, it will be replaced instead of default event page link. "
757
  "Insert full link including http(s)://"
758
  msgstr ""
759
 
760
+ #: app/features/events.php:773 app/features/fes/form.php:455
761
+ #: app/libraries/main.php:4264 app/skins/single/default.php:105
762
  #: app/skins/single/default.php:312 app/skins/single/m1.php:190
763
  #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
764
  #: app/widgets/single.php:107
765
  msgid "More Info"
766
  msgstr ""
767
 
768
+ #: app/features/events.php:775 app/features/fes/form.php:457
769
  msgid "More Information"
770
  msgstr ""
771
 
772
+ #: app/features/events.php:777 app/features/fes/form.php:459
773
  msgid "Current Window"
774
  msgstr ""
775
 
776
+ #: app/features/events.php:778 app/features/fes/form.php:460
777
  msgid "New Window"
778
  msgstr ""
779
 
780
+ #: app/features/events.php:780 app/features/fes/form.php:462
781
  msgid ""
782
  "If you fill it, it will be shown in event details page as an optional link. "
783
  "Insert full link including http(s)://"
784
  msgstr ""
785
 
786
+ #: app/features/events.php:811
787
  msgid "Total booking limits"
788
  msgstr ""
789
 
790
+ #: app/features/events.php:816 app/features/events.php:908
791
+ #: app/features/events.php:1011 app/modules/booking/default.php:81
792
+ #: app/modules/booking/steps/tickets.php:40
793
+ #: app/skins/available_spot/tpl.php:133
794
  msgid "Unlimited"
795
  msgstr ""
796
 
797
+ #: app/features/events.php:818
798
  msgid "100"
799
  msgstr ""
800
 
801
+ #: app/features/events.php:836 app/libraries/book.php:60
802
+ #: app/libraries/main.php:4268 app/modules/booking/steps/tickets.php:40
803
  msgid "Tickets"
804
  msgstr ""
805
 
806
+ #: app/features/events.php:839
807
  msgid ""
808
  "You're translating an event so MEC will use the original event for tickets "
809
  "and booking. You can only translate the ticket name and description. Please "
810
  "define exact tickets that you defined in the original event here."
811
  msgstr ""
812
 
813
+ #: app/features/events.php:850 app/features/events.php:953
814
  msgid "Ticket Name"
815
  msgstr ""
816
 
817
+ #: app/features/events.php:854 app/features/events.php:957
818
+ #: app/features/events.php:1984 app/features/events.php:2028
819
  #: app/features/ix.php:2719 app/features/ix.php:2760
820
  msgid "Start Time"
821
  msgstr ""
822
 
823
+ #: app/features/events.php:872 app/features/events.php:975
824
+ #: app/features/events.php:1984 app/features/events.php:2028
825
  #: app/features/ix.php:2719 app/features/ix.php:2760
826
  msgid "End Time"
827
  msgstr ""
828
 
829
+ #: app/features/events.php:895 app/features/events.php:924
830
+ #: app/features/events.php:938 app/features/events.php:998
831
+ #: app/features/events.php:1028 app/features/events.php:1160
832
+ #: app/features/events.php:1182 app/features/mec/settings.php:1303
833
+ #: app/features/mec/settings.php:1323
834
  msgid "Price"
835
  msgstr ""
836
 
837
+ #: app/features/events.php:896 app/features/events.php:999
838
  msgid "Insert 0 for free ticket. Only numbers please."
839
  msgstr ""
840
 
841
+ #: app/features/events.php:899 app/features/events.php:1002
842
  msgid "Price Label"
843
  msgstr ""
844
 
845
+ #: app/features/events.php:900 app/features/events.php:1003
846
  msgid "For showing on website. e.g. $15"
847
  msgstr ""
848
 
849
+ #: app/features/events.php:904 app/features/events.php:1007
850
  msgid "Available Tickets"
851
  msgstr ""
852
 
853
+ #: app/features/events.php:914 app/features/events.php:1017
854
  msgid "Price per Date"
855
  msgstr ""
856
 
857
+ #: app/features/events.php:925 app/features/events.php:939
858
+ #: app/features/events.php:1029 app/features/labels.php:60
 
 
 
 
 
 
 
 
 
 
 
 
859
  #: app/features/mec/meta_boxes/display_options.php:660
860
  #: app/features/mec/meta_boxes/search_form.php:52
861
  #: app/features/mec/meta_boxes/search_form.php:99
869
  msgid "Label"
870
  msgstr ""
871
 
872
+ #: app/features/events.php:1059
873
  msgid "Fees"
874
  msgstr ""
875
 
876
+ #: app/features/events.php:1064 app/features/events.php:1145
877
+ #: app/features/events.php:1220
878
  msgid "Inherit from global options"
879
  msgstr ""
880
 
881
+ #: app/features/events.php:1075 app/features/events.php:1100
882
+ #: app/features/mec/settings.php:1234 app/features/mec/settings.php:1257
883
  msgid "Fee Title"
884
  msgstr ""
885
 
886
+ #: app/features/events.php:1079 app/features/events.php:1104
887
+ #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1261
888
  msgid "Amount"
889
  msgstr ""
890
 
891
+ #: app/features/events.php:1080 app/features/events.php:1105
892
+ #: app/features/mec/settings.php:1239 app/features/mec/settings.php:1262
893
  msgid ""
894
  "Fee amount, considered as fixed amount if you set the type to amount "
895
  "otherwise considered as percentage"
896
  msgstr ""
897
 
898
+ #: app/features/events.php:1084 app/features/events.php:1109
899
+ #: app/features/mec/settings.php:1243 app/features/mec/settings.php:1266
900
  msgid "Percent"
901
  msgstr ""
902
 
903
+ #: app/features/events.php:1085 app/features/events.php:1110
904
+ #: app/features/mec/settings.php:1244 app/features/mec/settings.php:1267
905
  msgid "Amount (Per Ticket)"
906
  msgstr ""
907
 
908
+ #: app/features/events.php:1086 app/features/events.php:1111
909
+ #: app/features/mec/settings.php:1245 app/features/mec/settings.php:1268
910
  msgid "Amount (Per Booking)"
911
  msgstr ""
912
 
913
+ #: app/features/events.php:1140 app/features/mec/settings.php:1055
914
  msgid "Ticket Variations / Options"
915
  msgstr ""
916
 
917
+ #: app/features/events.php:1161 app/features/events.php:1183
918
+ #: app/features/mec/settings.php:1304 app/features/mec/settings.php:1324
919
  msgid "Option Price"
920
  msgstr ""
921
 
922
+ #: app/features/events.php:1164 app/features/events.php:1186
923
+ #: app/features/mec/settings.php:1307 app/features/mec/settings.php:1327
924
  msgid "Maximum Per Ticket"
925
  msgstr ""
926
 
927
+ #: app/features/events.php:1165 app/features/events.php:1187
928
+ #: app/features/mec/settings.php:1308 app/features/mec/settings.php:1328
929
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
930
  msgstr ""
931
 
932
+ #: app/features/events.php:1249 app/features/mec/regform.php:136
933
+ #: app/libraries/main.php:2105
934
  msgid "Text"
935
  msgstr ""
936
 
937
+ #: app/features/events.php:1251 app/features/mec/regform.php:138
938
  #: app/features/organizers.php:102 app/features/organizers.php:146
939
  #: app/features/speakers.php:111 app/features/speakers.php:175
940
+ #: app/features/speakers.php:244 app/libraries/main.php:2163
941
  msgid "Tel"
942
  msgstr ""
943
 
944
+ #: app/features/events.php:1252 app/features/mec/regform.php:139
945
+ #: app/libraries/main.php:2192
946
  msgid "Textarea"
947
  msgstr ""
948
 
949
+ #: app/features/events.php:1253 app/features/mec/regform.php:140
950
+ #: app/libraries/main.php:2245
951
  msgid "Checkboxes"
952
  msgstr ""
953
 
954
+ #: app/features/events.php:1254 app/features/mec/regform.php:141
955
+ #: app/libraries/main.php:2289
956
  msgid "Radio Buttons"
957
  msgstr ""
958
 
959
+ #: app/features/events.php:1255 app/features/mec/meta_boxes/search_form.php:34
960
  #: app/features/mec/meta_boxes/search_form.php:41
961
  #: app/features/mec/meta_boxes/search_form.php:48
962
  #: app/features/mec/meta_boxes/search_form.php:55
1002
  #: app/features/mec/meta_boxes/search_form.php:443
1003
  #: app/features/mec/meta_boxes/search_form.php:450
1004
  #: app/features/mec/meta_boxes/search_form.php:457
1005
+ #: app/features/mec/regform.php:142 app/libraries/main.php:2333
1006
  msgid "Dropdown"
1007
  msgstr ""
1008
 
1009
+ #: app/features/events.php:1256 app/features/mec/regform.php:143
1010
+ #: app/libraries/main.php:2380
1011
  msgid "Agreement"
1012
  msgstr ""
1013
 
1014
+ #: app/features/events.php:1257 app/features/mec/regform.php:144
1015
+ #: app/libraries/main.php:2221
1016
  msgid "Paragraph"
1017
  msgstr ""
1018
 
1019
+ #: app/features/events.php:1748 app/features/events.php:1763
1020
+ #: app/features/events.php:1777
1021
  #, php-format
1022
  msgid "Show all %s"
1023
  msgstr ""
1024
 
1025
+ #: app/features/events.php:1748
1026
  msgid "labels"
1027
  msgstr ""
1028
 
1029
+ #: app/features/events.php:1763
1030
  msgid "locations"
1031
  msgstr ""
1032
 
1033
+ #: app/features/events.php:1777
1034
  msgid "organizers"
1035
  msgstr ""
1036
 
1037
+ #: app/features/events.php:1803 app/features/events.php:1984
1038
+ #: app/features/events.php:2028 app/features/ix.php:2719
1039
  #: app/features/ix.php:2760 app/features/locations.php:58
1040
  #: app/features/locations.php:229 app/features/locations.php:281
1041
+ #: app/features/locations.php:283
1042
  #: app/features/mec/meta_boxes/display_options.php:661
1043
  #: app/features/mec/meta_boxes/search_form.php:38
1044
  #: app/features/mec/meta_boxes/search_form.php:85
1048
  #: app/features/mec/meta_boxes/search_form.php:299
1049
  #: app/features/mec/meta_boxes/search_form.php:339
1050
  #: app/features/mec/meta_boxes/search_form.php:386
1051
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1643
1052
+ #: app/libraries/main.php:4237 app/libraries/skins.php:737
1053
  #: app/skins/single/default.php:141 app/skins/single/default.php:348
1054
  #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1055
  #: app/skins/single/modern.php:83
1056
  msgid "Location"
1057
  msgstr ""
1058
 
1059
+ #: app/features/events.php:1804 app/features/events.php:1984
1060
+ #: app/features/events.php:2028 app/features/ix.php:2719
1061
+ #: app/features/ix.php:2760 app/features/mec/meta_boxes/display_options.php:662
 
1062
  #: app/features/mec/meta_boxes/search_form.php:45
1063
  #: app/features/mec/meta_boxes/search_form.php:92
1064
  #: app/features/mec/meta_boxes/search_form.php:139
1070
  #: app/features/mec/meta_boxes/search_form.php:440
1071
  #: app/features/organizers.php:58 app/features/organizers.php:199
1072
  #: app/features/organizers.php:255 app/features/organizers.php:257
1073
+ #: app/libraries/main.php:4239 app/libraries/skins.php:763
1074
  #: app/skins/single/default.php:181 app/skins/single/default.php:388
1075
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1076
  #: app/skins/single/modern.php:21
1077
  msgid "Organizer"
1078
  msgstr ""
1079
 
1080
+ #: app/features/events.php:1808
1081
  msgid "Repeat"
1082
  msgstr ""
1083
 
1084
+ #: app/features/events.php:1809
1085
  msgid "Author"
1086
  msgstr ""
1087
 
1088
+ #: app/features/events.php:1919 app/features/events.php:1920
1089
  msgid "iCal Export"
1090
  msgstr ""
1091
 
1092
+ #: app/features/events.php:1922 app/features/events.php:1923
1093
  msgid "CSV Export"
1094
  msgstr ""
1095
 
1096
+ #: app/features/events.php:1925 app/features/events.php:1926
1097
  msgid "MS Excel Export"
1098
  msgstr ""
1099
 
1100
+ #: app/features/events.php:1928 app/features/events.php:1929
1101
  msgid "XML Export"
1102
  msgstr ""
1103
 
1104
+ #: app/features/events.php:1931 app/features/events.php:1932
1105
  msgid "JSON Export"
1106
  msgstr ""
1107
 
1108
+ #: app/features/events.php:1934 app/features/events.php:1935
1109
  msgid "Duplicate"
1110
  msgstr ""
1111
 
1112
+ #: app/features/events.php:1984 app/features/events.php:2028
1113
  #: app/features/ix.php:2719 app/features/ix.php:2760
1114
  #: app/features/labels.php:176 app/features/locations.php:228
1115
  #: app/features/organizers.php:198 app/features/speakers.php:241
1116
  msgid "ID"
1117
  msgstr ""
1118
 
1119
+ #: app/features/events.php:1984 app/features/events.php:2028
1120
  #: app/features/ix.php:2719 app/features/ix.php:2760
1121
  msgid "Link"
1122
  msgstr ""
1123
 
1124
+ #: app/features/events.php:1984 app/features/events.php:2028
1125
  #, php-format
1126
  msgid "%s Tel"
1127
  msgstr ""
1128
 
1129
+ #: app/features/events.php:1984 app/features/events.php:2028
1130
  #, php-format
1131
  msgid "%s Email"
1132
  msgstr ""
1201
  msgid "eg. John Smith"
1202
  msgstr ""
1203
 
1204
+ #: app/features/fes/form.php:488 app/features/mec/settings.php:989
1205
  msgid "Featured Image"
1206
  msgstr ""
1207
 
1210
  msgstr ""
1211
 
1212
  #: app/features/fes/form.php:535 app/features/labels.php:61
1213
+ #: app/features/labels.php:220 app/features/mec.php:301
1214
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4234
1215
  #: app/skins/single/default.php:120 app/skins/single/default.php:327
1216
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1217
  msgid "Labels"
1218
  msgstr ""
1219
 
1220
+ #: app/features/fes/form.php:580 app/features/mec.php:299
1221
  #: app/features/mec/meta_boxes/filter.php:138
1222
  msgid "Tags"
1223
  msgstr ""
1254
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1255
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1256
  #: app/features/mec/notifications.php:76 app/features/mec/regform.php:75
1257
+ #: app/features/mec/settings.php:249 app/features/mec/styles.php:77
1258
  #: app/features/mec/styling.php:104 app/features/mec/support.php:73
1259
  msgid "Import / Export"
1260
  msgstr ""
1287
  msgid "Both of API key and Calendar ID are required!"
1288
  msgstr ""
1289
 
1290
+ #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3184
1291
  msgid "Please select some events to import!"
1292
  msgstr ""
1293
 
1335
  msgid "%s events failed to add for following reasons: %s"
1336
  msgstr ""
1337
 
1338
+ #: app/features/ix.php:3147
1339
  msgid "Please insert your Facebook page's link."
1340
  msgstr ""
1341
 
1342
+ #: app/features/ix.php:3156
1343
  msgid ""
1344
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1345
  "valid Facebook page link."
1346
  msgstr ""
1347
 
1348
+ #: app/features/ix.php:3188
1349
  msgid "Please insert your facebook page's link."
1350
  msgstr ""
1351
 
1352
+ #: app/features/ix.php:3193
1353
  msgid ""
1354
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1355
  "valid facebook page link."
1388
 
1389
  #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1390
  #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1391
+ #: app/features/ix/import_f_calendar.php:82
1392
  #: app/features/ix/import_g_calendar.php:16
1393
  #: app/features/ix/import_g_calendar.php:103
1394
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1414
  "This will export all of your website events' data into your desired format."
1415
  msgstr ""
1416
 
1417
+ #: app/features/ix/export.php:25 app/features/mec/settings.php:790
1418
  msgid "iCal"
1419
  msgstr ""
1420
 
1489
  msgstr ""
1490
 
1491
  #: app/features/ix/export_g_calendar.php:57
1492
+ #: app/features/ix/import_f_calendar.php:56
1493
  #: app/features/ix/import_g_calendar.php:64
1494
  #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1495
  msgid "Select All"
1496
  msgstr ""
1497
 
1498
  #: app/features/ix/export_g_calendar.php:58
1499
+ #: app/features/ix/import_f_calendar.php:57
1500
  #: app/features/ix/import_g_calendar.php:65
1501
  #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1502
  msgid "Deselect All"
1503
  msgstr ""
1504
 
1505
  #: app/features/ix/export_g_calendar.php:59
1506
+ #: app/features/ix/import_f_calendar.php:58
1507
  #: app/features/ix/import_g_calendar.php:66
1508
  #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1509
  msgid "Toggle"
1519
  msgid "Add to Google Calendar"
1520
  msgstr ""
1521
 
1522
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/settings.php:1480
1523
  msgid "Checking ..."
1524
  msgstr ""
1525
 
1561
  msgid "ICS Feed"
1562
  msgstr ""
1563
 
1564
+ #: app/features/ix/import.php:46 app/features/mec/settings.php:671
1565
+ #: app/features/mec/settings.php:821 app/features/mec/settings.php:839
1566
+ #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1201
1567
+ #: app/features/mec/settings.php:1218 app/features/mec/settings.php:1283
1568
  #, php-format
1569
  msgid "%s is required to use this feature."
1570
  msgstr ""
1576
  #: app/features/mec/meta_boxes/display_options.php:578
1577
  #: app/features/mec/meta_boxes/display_options.php:628
1578
  #: app/features/mec/meta_boxes/display_options.php:766
1579
+ #: app/features/mec/settings.php:671 app/features/mec/settings.php:821
1580
+ #: app/features/mec/settings.php:839 app/features/mec/settings.php:1111
1581
+ #: app/features/mec/settings.php:1201 app/features/mec/settings.php:1218
1582
+ #: app/features/mec/settings.php:1283 app/libraries/skins.php:249
 
1583
  msgid "Pro version of Modern Events Calendar"
1584
  msgstr ""
1585
 
1595
  msgid "Import all of your Facebook events into MEC."
1596
  msgstr ""
1597
 
1598
+ #: app/features/ix/import_f_calendar.php:27
1599
+ #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1600
+ msgid "Documentation"
1601
+ msgstr ""
1602
+
1603
  #: app/features/ix/import_f_calendar.php:29
1604
+ msgid "Facebook Page Access Token"
1605
+ msgstr ""
1606
+
1607
+ #: app/features/ix/import_f_calendar.php:35
1608
  msgid "Facebook Page Link"
1609
  msgstr ""
1610
 
1611
+ #: app/features/ix/import_f_calendar.php:53
1612
  msgid "Facebook Events"
1613
  msgstr ""
1614
 
1615
+ #: app/features/ix/import_f_calendar.php:54
1616
  #, php-format
1617
  msgid ""
1618
  "We found %s events for %s page. Please select your desired events to import."
1619
  msgstr ""
1620
 
1621
+ #: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
1622
  #, php-format
1623
  msgid "Event Title: %s"
1624
  msgstr ""
1625
 
1626
+ #: app/features/ix/import_f_calendar.php:72
1627
  #: app/features/ix/import_g_calendar.php:87
1628
  #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
1629
  msgid "Import Options"
1630
  msgstr ""
1631
 
1632
+ #: app/features/ix/import_f_calendar.php:76
1633
  #: app/features/ix/import_g_calendar.php:97
1634
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:78
1635
  msgid "Import Locations"
1636
  msgstr ""
1637
 
1638
+ #: app/features/ix/import_f_calendar.php:92
1639
  #, php-format
1640
  msgid "%s events successfully imported to your website from Facebook Calendar."
1641
  msgstr ""
1855
  #: app/features/mec/meta_boxes/display_options.php:684
1856
  #: app/features/mec/meta_boxes/display_options.php:723
1857
  #: app/features/mec/meta_boxes/display_options.php:791
1858
+ #: app/features/mec/meta_boxes/display_options.php:859
1859
  msgid "Style"
1860
  msgstr ""
1861
 
1864
  msgstr ""
1865
 
1866
  #: app/features/labels.php:116 app/features/labels.php:141
1867
+ #: app/skins/agenda/render.php:36 app/skins/available_spot/tpl.php:31
1868
+ #: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:24
1869
  #: app/skins/cover/tpl.php:27 app/skins/daily_view/render.php:22
1870
  #: app/skins/grid/render.php:49 app/skins/list/render.php:36
1871
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:80
1872
  #: app/skins/monthly_view/calendar_clean.php:81
1873
+ #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:48
1874
+ #: app/skins/timetable/render.php:32 app/skins/timetable/render.php:129
1875
  #: app/skins/weekly_view/render.php:30 app/skins/yearly_view/render.php:47
1876
  msgid "Featured"
1877
  msgstr ""
1878
 
1879
  #: app/features/labels.php:117 app/features/labels.php:142
1880
+ #: app/libraries/main.php:4427 app/skins/agenda/render.php:40
1881
+ #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:48
1882
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:31
1883
  #: app/skins/daily_view/render.php:26 app/skins/grid/render.php:53
1884
  #: app/skins/list/render.php:40 app/skins/masonry/render.php:32
1885
  #: app/skins/monthly_view/calendar.php:84
1886
  #: app/skins/monthly_view/calendar_clean.php:85
1887
+ #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:52
1888
+ #: app/skins/timetable/render.php:36 app/skins/timetable/render.php:133
1889
  #: app/skins/weekly_view/render.php:34 app/skins/yearly_view/render.php:51
1890
  msgid "Canceled"
1891
  msgstr ""
1910
  msgid "Event %s"
1911
  msgstr ""
1912
 
1913
+ #: app/features/locations.php:59 app/features/mec.php:302
1914
+ #: app/features/mec/dashboard.php:171 app/features/mec/meta_boxes/filter.php:87
1915
+ #: app/libraries/main.php:4236
1916
  msgid "Locations"
1917
  msgstr ""
1918
 
1983
  msgid "eg. City Hall"
1984
  msgstr ""
1985
 
1986
+ #: app/features/locations.php:298 app/features/mec/settings.php:1019
1987
  #: app/widgets/single.php:115
1988
  msgid "Event Location"
1989
  msgstr ""
2006
  msgid "Don't show map in single event page"
2007
  msgstr ""
2008
 
2009
+ #: app/features/mec.php:142
2010
+ msgid ""
2011
+ "Activation faild. Please check your purchase code or license type."
2012
+ "<br><b>Note: Your purchase code should match your licesne type.</b>"
2013
+ msgstr ""
2014
+
2015
+ #: app/features/mec.php:143
2016
+ msgid "Troubleshooting"
2017
+ msgstr ""
2018
+
2019
+ #: app/features/mec.php:182
2020
  msgid ""
2021
  "Your options is not in JSON format. Please insert correct options in this "
2022
  "field and try again."
2023
  msgstr ""
2024
 
2025
+ #: app/features/mec.php:187
2026
  msgid "Your options field can not be empty!"
2027
  msgstr ""
2028
 
2029
+ #: app/features/mec.php:191
2030
  msgid "Your options imported successfuly."
2031
  msgstr ""
2032
 
2033
+ #: app/features/mec.php:283
2034
+ msgid "MEC - Support"
2035
+ msgstr ""
2036
+
2037
+ #: app/features/mec.php:283 app/features/mec/gateways.php:84
2038
+ #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2039
+ #: app/features/mec/notifications.php:83 app/features/mec/regform.php:82
2040
+ #: app/features/mec/settings.php:256 app/features/mec/styles.php:84
2041
+ #: app/features/mec/styling.php:111 app/features/mec/support-page.php:9
2042
+ #: app/features/mec/support.php:80 app/features/mec/support.php:93
2043
+ msgid "Support"
2044
+ msgstr ""
2045
+
2046
+ #: app/features/mec.php:303 app/features/mec/dashboard.php:178
2047
+ #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2048
+ #: app/libraries/main.php:4238
2049
  msgid "Organizers"
2050
  msgstr ""
2051
 
2052
+ #: app/features/mec.php:311 app/features/mec.php:325
2053
+ #: app/features/mec/dashboard.php:164
2054
  msgid "Shortcodes"
2055
  msgstr ""
2056
 
2057
+ #: app/features/mec.php:312
2058
  msgid "MEC - Settings"
2059
  msgstr ""
2060
 
2061
+ #: app/features/mec.php:327
2062
  msgid "Add Shortcode"
2063
  msgstr ""
2064
 
2065
+ #: app/features/mec.php:328
2066
  msgid "Add New Shortcode"
2067
  msgstr ""
2068
 
2069
+ #: app/features/mec.php:329
2070
  msgid "No shortcodes found!"
2071
  msgstr ""
2072
 
2073
+ #: app/features/mec.php:330
2074
  msgid "All Shortcodes"
2075
  msgstr ""
2076
 
2077
+ #: app/features/mec.php:331
2078
  msgid "Edit shortcodes"
2079
  msgstr ""
2080
 
2081
+ #: app/features/mec.php:332
2082
  msgid "No shortcodes found in Trash!"
2083
  msgstr ""
2084
 
2085
+ #: app/features/mec.php:379
2086
  msgid "Display Options"
2087
  msgstr ""
2088
 
2089
+ #: app/features/mec.php:380
2090
  msgid "Filter Options"
2091
  msgstr ""
2092
 
2093
+ #: app/features/mec.php:382
2094
  msgid "Search Form"
2095
  msgstr ""
2096
 
2097
+ #: app/features/mec.php:709
2098
  msgid "Display content's images as Popup"
2099
  msgstr ""
2100
 
2101
+ #: app/features/mec.php:722
2102
  msgid "Single Event Display Method"
2103
  msgstr ""
2104
 
2105
+ #: app/features/mec.php:727
2106
  msgid "Separate Window"
2107
  msgstr ""
2108
 
2109
+ #: app/features/mec.php:728
2110
  msgid "Modal 1"
2111
  msgstr ""
2112
 
2113
+ #: app/features/mec/dashboard.php:60
2114
  #, php-format
2115
  msgid "Welcome %s"
2116
  msgstr ""
2117
 
2118
+ #: app/features/mec/dashboard.php:63
2119
  #, php-format
2120
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2121
  msgstr ""
2122
 
2123
+ #: app/features/mec/dashboard.php:63
2124
  msgid "Modern Events Calendar (Lite)"
2125
  msgstr ""
2126
 
2127
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:191
2128
  msgctxt "plugin rate"
2129
  msgid "Rate the plugin ★★★★★"
2130
  msgstr ""
2131
 
2132
+ #: app/features/mec/dashboard.php:75 app/features/mec/support-page.php:21
2133
  msgid "Version"
2134
  msgstr ""
2135
 
2136
+ #: app/features/mec/dashboard.php:84
2137
  #, php-format
2138
  msgid ""
2139
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2141
  "Spots, etc you should %s to the Pro version."
2142
  msgstr ""
2143
 
2144
+ #: app/features/mec/dashboard.php:84
2145
  msgid "lite"
2146
  msgstr ""
2147
 
2148
+ #: app/features/mec/dashboard.php:84
2149
  msgid "upgrade"
2150
  msgstr ""
2151
 
2152
+ #: app/features/mec/dashboard.php:94
2153
+ msgid "MEC Activate"
2154
  msgstr ""
2155
 
2156
+ #: app/features/mec/dashboard.php:97
2157
  msgid ""
2158
+ "In order to use all plugin features and options, please enter your purchase "
2159
+ "code."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2160
  msgstr ""
2161
 
2162
+ #: app/features/mec/dashboard.php:189 app/features/mec/settings.php:518
 
 
 
 
2163
  msgid "Upcoming Events"
2164
  msgstr ""
2165
 
2166
+ #: app/features/mec/dashboard.php:213
2167
  msgid "Popular Gateways"
2168
  msgstr ""
2169
 
2170
+ #: app/features/mec/dashboard.php:264
2171
  msgid "Total Bookings"
2172
  msgstr ""
2173
 
2174
+ #: app/features/mec/dashboard.php:291
2175
  msgid "This Month"
2176
  msgstr ""
2177
 
2178
+ #: app/features/mec/dashboard.php:292
2179
  msgid "Last Month"
2180
  msgstr ""
2181
 
2182
+ #: app/features/mec/dashboard.php:293
2183
  msgid "This Year"
2184
  msgstr ""
2185
 
2186
+ #: app/features/mec/dashboard.php:294
2187
  msgid "Last Year"
2188
  msgstr ""
2189
 
2190
+ #: app/features/mec/dashboard.php:306
2191
  msgid "Bar"
2192
  msgstr ""
2193
 
2194
+ #: app/features/mec/dashboard.php:307
2195
  msgid "Line"
2196
  msgstr ""
2197
 
2198
+ #: app/features/mec/dashboard.php:309
2199
  msgid "Filter"
2200
  msgstr ""
2201
 
2202
+ #: app/features/mec/dashboard.php:325
2203
  #, php-format
2204
  msgid "Total Sells (%s)"
2205
  msgstr ""
2206
 
2207
+ #: app/features/mec/dashboard.php:346
2208
  msgid "Change Log"
2209
  msgstr ""
2210
 
2211
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2212
  #: app/features/mec/messages.php:56 app/features/mec/notifications.php:55
2213
+ #: app/features/mec/regform.php:54 app/features/mec/settings.php:228
2214
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:83
2215
  #: app/features/mec/support.php:52
2216
  msgid "Styling Options"
2218
 
2219
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2220
  #: app/features/mec/messages.php:63 app/features/mec/notifications.php:62
2221
+ #: app/features/mec/regform.php:61 app/features/mec/settings.php:235
2222
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:90
2223
  #: app/features/mec/support.php:59
2224
  msgid "Custom CSS"
2227
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2228
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2229
  #: app/features/mec/notifications.php:69 app/features/mec/regform.php:68
2230
+ #: app/features/mec/settings.php:242 app/features/mec/styles.php:70
2231
  #: app/features/mec/styling.php:97 app/features/mec/support.php:66
2232
  msgid "Messages"
2233
  msgstr ""
2234
 
 
 
 
 
 
 
 
 
2235
  #: app/features/mec/gateways.php:111 app/features/mec/gateways.php:159
2236
  #: app/features/mec/gateways.php:169 app/features/mec/messages.php:11
2237
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:161
2239
  #: app/features/mec/notifications.php:436
2240
  #: app/features/mec/notifications.php:445 app/features/mec/regform.php:150
2241
  #: app/features/mec/regform.php:227 app/features/mec/regform.php:236
2242
+ #: app/features/mec/settings.php:28 app/features/mec/settings.php:1406
2243
+ #: app/features/mec/settings.php:1416 app/features/mec/settings.php:1497
2244
+ #: app/features/mec/settings.php:1511 app/features/mec/styles.php:103
2245
  #: app/features/mec/styles.php:147 app/features/mec/styles.php:156
2246
  #: app/features/mec/styling.php:309 app/features/mec/styling.php:379
2247
  #: app/features/mec/styling.php:388
2250
 
2251
  #: app/features/mec/gateways.php:138 app/features/mec/messages.php:145
2252
  #: app/features/mec/notifications.php:421 app/features/mec/regform.php:211
2253
+ #: app/features/mec/settings.php:1475 app/features/mec/styles.php:131
2254
  #: app/features/mec/styling.php:362
2255
  msgid "Saved"
2256
  msgstr ""
2257
 
2258
  #: app/features/mec/gateways.php:139 app/features/mec/messages.php:146
2259
  #: app/features/mec/notifications.php:422 app/features/mec/regform.php:212
2260
+ #: app/features/mec/settings.php:1476 app/features/mec/styles.php:132
2261
  #: app/features/mec/styling.php:363
2262
  msgid "Settings Saved!"
2263
  msgstr ""
2302
  #: app/features/mec/meta_boxes/display_options.php:129
2303
  #: app/features/mec/meta_boxes/display_options.php:431
2304
  #: app/features/mec/meta_boxes/display_options.php:686
2305
+ #: app/features/mec/settings.php:394 app/features/mec/settings.php:418
2306
+ #: app/features/mec/settings.php:427 app/features/mec/settings.php:462
2307
+ #: app/features/mec/settings.php:486 app/features/mec/settings.php:495
2308
  msgid "Classic"
2309
  msgstr ""
2310
 
2311
  #: app/features/mec/meta_boxes/display_options.php:35
2312
  #: app/features/mec/meta_boxes/display_options.php:131
2313
+ #: app/features/mec/settings.php:419 app/features/mec/settings.php:429
2314
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:497
2315
  msgid "Minimal"
2316
  msgstr ""
2317
 
2321
  #: app/features/mec/meta_boxes/display_options.php:433
2322
  #: app/features/mec/meta_boxes/display_options.php:585
2323
  #: app/features/mec/meta_boxes/display_options.php:688
2324
+ #: app/features/mec/settings.php:396 app/features/mec/settings.php:409
2325
+ #: app/features/mec/settings.php:420 app/features/mec/settings.php:430
2326
+ #: app/features/mec/settings.php:464 app/features/mec/settings.php:477
2327
+ #: app/features/mec/settings.php:488 app/features/mec/settings.php:498
2328
  msgid "Modern"
2329
  msgstr ""
2330
 
2331
  #: app/features/mec/meta_boxes/display_options.php:37
2332
+ #: app/features/mec/settings.php:421 app/features/mec/settings.php:489
2333
  msgid "Standard"
2334
  msgstr ""
2335
 
2336
  #: app/features/mec/meta_boxes/display_options.php:38
2337
+ #: app/features/mec/settings.php:422 app/features/mec/settings.php:490
2338
  msgid "Accordion"
2339
  msgstr ""
2340
 
2344
  #: app/features/mec/meta_boxes/display_options.php:478
2345
  #: app/features/mec/meta_boxes/display_options.php:511
2346
  #: app/features/mec/meta_boxes/display_options.php:635
2347
+ #: app/features/mec/meta_boxes/display_options.php:802
2348
+ #: app/features/mec/meta_boxes/display_options.php:871
2349
  msgid "Today"
2350
  msgstr ""
2351
 
2355
  #: app/features/mec/meta_boxes/display_options.php:479
2356
  #: app/features/mec/meta_boxes/display_options.php:512
2357
  #: app/features/mec/meta_boxes/display_options.php:636
2358
+ #: app/features/mec/meta_boxes/display_options.php:803
2359
+ #: app/features/mec/meta_boxes/display_options.php:872
2360
  msgid "Tomorrow"
2361
  msgstr ""
2362
 
2370
  #: app/features/mec/meta_boxes/display_options.php:548
2371
  #: app/features/mec/meta_boxes/display_options.php:594
2372
  #: app/features/mec/meta_boxes/display_options.php:637
2373
+ #: app/features/mec/meta_boxes/display_options.php:804
2374
+ #: app/features/mec/meta_boxes/display_options.php:873
2375
  msgid "Start of Current Month"
2376
  msgstr ""
2377
 
2385
  #: app/features/mec/meta_boxes/display_options.php:549
2386
  #: app/features/mec/meta_boxes/display_options.php:595
2387
  #: app/features/mec/meta_boxes/display_options.php:638
2388
+ #: app/features/mec/meta_boxes/display_options.php:805
2389
+ #: app/features/mec/meta_boxes/display_options.php:874
2390
  msgid "Start of Next Month"
2391
  msgstr ""
2392
 
2401
  #: app/features/mec/meta_boxes/display_options.php:550
2402
  #: app/features/mec/meta_boxes/display_options.php:596
2403
  #: app/features/mec/meta_boxes/display_options.php:639
2404
+ #: app/features/mec/meta_boxes/display_options.php:806
2405
+ #: app/features/mec/meta_boxes/display_options.php:875
2406
  msgid "On a certain date"
2407
  msgstr ""
2408
 
2417
  #: app/features/mec/meta_boxes/display_options.php:553
2418
  #: app/features/mec/meta_boxes/display_options.php:599
2419
  #: app/features/mec/meta_boxes/display_options.php:642
2420
+ #: app/features/mec/meta_boxes/display_options.php:809
2421
+ #: app/features/mec/meta_boxes/display_options.php:878
2422
  #, php-format
2423
  msgid "eg. %s"
2424
  msgstr ""
2445
  #: app/features/mec/meta_boxes/display_options.php:736
2446
  #: app/features/mec/meta_boxes/display_options.php:741
2447
  #: app/features/mec/meta_boxes/display_options.php:771
2448
+ #: app/features/mec/meta_boxes/display_options.php:813
2449
+ #: app/features/mec/meta_boxes/display_options.php:820
2450
+ #: app/features/mec/meta_boxes/display_options.php:825
2451
+ #: app/features/mec/meta_boxes/display_options.php:882
2452
+ #: app/features/mec/meta_boxes/display_options.php:889
2453
+ #: app/features/mec/meta_boxes/display_options.php:896
2454
+ #: app/features/mec/meta_boxes/display_options.php:903
2455
+ #: app/features/mec/meta_boxes/display_options.php:910
2456
  msgid "Date Formats"
2457
  msgstr ""
2458
 
2468
  #: app/features/mec/meta_boxes/display_options.php:71
2469
  #: app/features/mec/meta_boxes/display_options.php:173
2470
  #: app/features/mec/meta_boxes/display_options.php:185
2471
+ #: app/features/mec/meta_boxes/display_options.php:886
2472
+ #: app/features/mec/meta_boxes/display_options.php:893
2473
+ #: app/features/mec/meta_boxes/display_options.php:900
2474
+ #: app/features/mec/meta_boxes/display_options.php:907
2475
+ #: app/features/mec/meta_boxes/display_options.php:914
2476
  msgid "Default values are d, F and l"
2477
  msgstr ""
2478
 
2489
  #: app/features/mec/meta_boxes/display_options.php:204
2490
  #: app/features/mec/meta_boxes/display_options.php:254
2491
  #: app/features/mec/meta_boxes/display_options.php:652
2492
+ #: app/features/mec/meta_boxes/display_options.php:839
2493
+ #: app/features/mec/meta_boxes/display_options.php:917
2494
  msgid "Limit"
2495
  msgstr ""
2496
 
2502
  #: app/features/mec/meta_boxes/display_options.php:524
2503
  #: app/features/mec/meta_boxes/display_options.php:558
2504
  #: app/features/mec/meta_boxes/display_options.php:604
2505
+ #: app/features/mec/meta_boxes/display_options.php:840
2506
+ #: app/features/mec/meta_boxes/display_options.php:918
2507
  msgid "eg. 6"
2508
  msgstr ""
2509
 
2528
  #: app/features/mec/meta_boxes/display_options.php:432
2529
  #: app/features/mec/meta_boxes/display_options.php:586
2530
  #: app/features/mec/meta_boxes/display_options.php:687
2531
+ #: app/features/mec/settings.php:395 app/features/mec/settings.php:410
2532
+ #: app/features/mec/settings.php:428 app/features/mec/settings.php:463
2533
+ #: app/features/mec/settings.php:478 app/features/mec/settings.php:496
2534
  msgid "Clean"
2535
  msgstr ""
2536
 
2537
  #: app/features/mec/meta_boxes/display_options.php:133
2538
  #: app/features/mec/meta_boxes/display_options.php:309
2539
  #: app/features/mec/meta_boxes/display_options.php:435
2540
+ #: app/features/mec/settings.php:398 app/features/mec/settings.php:431
2541
+ #: app/features/mec/settings.php:466 app/features/mec/settings.php:499
2542
  msgid "Simple"
2543
  msgstr ""
2544
 
2549
  #: app/features/mec/meta_boxes/display_options.php:135
2550
  #: app/features/mec/meta_boxes/display_options.php:308
2551
  #: app/features/mec/meta_boxes/display_options.php:434
2552
+ #: app/features/mec/settings.php:397 app/features/mec/settings.php:433
2553
+ #: app/features/mec/settings.php:465 app/features/mec/settings.php:501
2554
  msgid "Novel"
2555
  msgstr ""
2556
 
2564
  msgstr ""
2565
 
2566
  #: app/features/mec/meta_boxes/display_options.php:193
2567
+ #: app/features/mec/meta_boxes/display_options.php:830
2568
  msgid "Count in row"
2569
  msgstr ""
2570
 
2589
 
2590
  #: app/features/mec/meta_boxes/display_options.php:297
2591
  #: app/features/mec/meta_boxes/display_options.php:314
2592
+ #: app/libraries/main.php:326 app/libraries/main.php:1196
2593
+ #: app/libraries/main.php:1221
2594
  msgid "List View"
2595
  msgstr ""
2596
 
2597
  #: app/features/mec/meta_boxes/display_options.php:298
2598
  #: app/features/mec/meta_boxes/display_options.php:324
2599
+ #: app/libraries/main.php:330 app/libraries/main.php:1190
2600
+ #: app/libraries/main.php:1215
2601
  msgid "Yearly View"
2602
  msgstr ""
2603
 
2608
 
2609
  #: app/features/mec/meta_boxes/display_options.php:300
2610
  #: app/features/mec/meta_boxes/display_options.php:344
2611
+ #: app/libraries/main.php:333 app/libraries/main.php:1192
2612
+ #: app/libraries/main.php:1217
2613
  msgid "Weekly View"
2614
  msgstr ""
2615
 
2616
  #: app/features/mec/meta_boxes/display_options.php:301
2617
  #: app/features/mec/meta_boxes/display_options.php:354
2618
+ #: app/libraries/main.php:332 app/libraries/main.php:1193
2619
+ #: app/libraries/main.php:1218
2620
  msgid "Daily View"
2621
  msgstr ""
2622
 
2757
  msgstr ""
2758
 
2759
  #: app/features/mec/meta_boxes/display_options.php:793
2760
+ #: app/features/mec/meta_boxes/display_options.php:861
2761
  msgid "Type 1"
2762
  msgstr ""
2763
 
2764
  #: app/features/mec/meta_boxes/display_options.php:794
2765
+ #: app/features/mec/meta_boxes/display_options.php:862
2766
  msgid "Type 2"
2767
  msgstr ""
2768
 
2769
  #: app/features/mec/meta_boxes/display_options.php:795
2770
+ #: app/features/mec/meta_boxes/display_options.php:863
2771
  msgid "Type 3"
2772
  msgstr ""
2773
 
2774
+ #: app/features/mec/meta_boxes/display_options.php:796
2775
+ #: app/features/mec/meta_boxes/display_options.php:864
2776
+ msgid "Type 4"
2777
+ msgstr ""
2778
+
2779
+ #: app/features/mec/meta_boxes/display_options.php:817
2780
  msgid "Default values are d, F and Y"
2781
  msgstr ""
2782
 
2783
+ #: app/features/mec/meta_boxes/display_options.php:822
2784
+ #: app/features/mec/meta_boxes/display_options.php:827
2785
  msgid "Default value is \"M d, Y\""
2786
  msgstr ""
2787
 
2788
+ #: app/features/mec/meta_boxes/display_options.php:843
2789
+ #: app/features/mec/meta_boxes/display_options.php:921
2790
  msgid "Auto Play Time"
2791
  msgstr ""
2792
 
2793
+ #: app/features/mec/meta_boxes/display_options.php:844
2794
+ #: app/features/mec/meta_boxes/display_options.php:922
2795
  msgid "eg. 3000 default is 3 second"
2796
  msgstr ""
2797
 
2798
+ #: app/features/mec/meta_boxes/display_options.php:848
2799
+ msgid "Archive Link"
2800
+ msgstr ""
2801
+
2802
+ #: app/features/mec/meta_boxes/display_options.php:852
2803
+ msgid "Head Text"
2804
  msgstr ""
2805
 
2806
+ #: app/features/mec/meta_boxes/display_options.php:865
2807
  msgid "Type 5"
2808
  msgstr ""
2809
 
2929
  #: app/features/mec/meta_boxes/search_form.php:449
2930
  #: app/features/mec/meta_boxes/search_form.php:456
2931
  #: app/features/mec/meta_boxes/search_form.php:463
2932
+ #: app/features/mec/settings.php:317 app/features/mec/settings.php:530
2933
+ #: app/features/mec/settings.php:714
2934
  msgid "Disabled"
2935
  msgstr ""
2936
 
3213
  msgid "Email/Booking verification link."
3214
  msgstr ""
3215
 
3216
+ #: app/features/mec/notifications.php:196 app/features/mec/settings.php:1174
3217
  msgid "Booking Confirmation"
3218
  msgstr ""
3219
 
3268
  "enter 3,5 then the reminder will send 3 and 5 days before the event date."
3269
  msgstr ""
3270
 
3271
+ #: app/features/mec/notifications.php:336 app/features/mec/support-page.php:80
3272
  msgid "New Event"
3273
  msgstr ""
3274
 
3290
  msgid "Status of event"
3291
  msgstr ""
3292
 
3293
+ #: app/features/mec/notifications.php:362 app/features/mec/settings.php:1061
3294
  msgid "Event Note"
3295
  msgstr ""
3296
 
3298
  msgid "Admin events management link."
3299
  msgstr ""
3300
 
3301
+ #: app/features/mec/settings.php:54
3302
  msgid "Archive Page Options"
3303
  msgstr ""
3304
 
3305
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:779
3306
  msgid "Export Module Options"
3307
  msgstr ""
3308
 
3309
+ #: app/features/mec/settings.php:102 app/features/mec/settings.php:806
3310
  msgid "Local Time Module"
3311
  msgstr ""
3312
 
3313
+ #: app/features/mec/settings.php:108 app/features/mec/settings.php:818
3314
  msgid "QR Code Module"
3315
  msgstr ""
3316
 
3317
+ #: app/features/mec/settings.php:114 app/features/mec/settings.php:836
3318
  #: app/widgets/single.php:147
3319
  msgid "Weather Module"
3320
  msgstr ""
3321
 
3322
+ #: app/features/mec/settings.php:144 app/features/mec/settings.php:1080
3323
  msgid "User Profile"
3324
  msgstr ""
3325
 
3326
+ #: app/features/mec/settings.php:156 app/features/mec/settings.php:1098
3327
  msgid "Additional Organizers"
3328
  msgstr ""
3329
 
3330
+ #: app/features/mec/settings.php:174 app/features/mec/settings.php:1215
3331
  msgid "Taxes / Fees"
3332
  msgstr ""
3333
 
3334
+ #: app/features/mec/settings.php:180 app/features/mec/settings.php:1280
3335
  msgid "Ticket Variations & Options"
3336
  msgstr ""
3337
 
3338
+ #: app/features/mec/settings.php:276
3339
  msgid "Time Format"
3340
  msgstr ""
3341
 
3342
+ #: app/features/mec/settings.php:279
3343
  msgid "12 hours format with AM/PM"
3344
  msgstr ""
3345
 
3346
+ #: app/features/mec/settings.php:280
3347
  msgid "24 hours format"
3348
  msgstr ""
3349
 
3350
+ #: app/features/mec/settings.php:282 app/features/mec/settings.php:295
3351
  msgid ""
3352
  "This option is for showing start/end time of events on frontend of website."
3353
  msgstr ""
3354
 
3355
+ #: app/features/mec/settings.php:287
3356
  msgid "Hide Events"
3357
  msgstr ""
3358
 
3359
+ #: app/features/mec/settings.php:290
3360
  msgid "On Event Start"
3361
  msgstr ""
3362
 
3363
+ #: app/features/mec/settings.php:291
3364
  msgid "+1 Hour after start"
3365
  msgstr ""
3366
 
3367
+ #: app/features/mec/settings.php:292
3368
  msgid "+2 Hours after start"
3369
  msgstr ""
3370
 
3371
+ #: app/features/mec/settings.php:293
3372
  msgid "On Event End"
3373
  msgstr ""
3374
 
3375
+ #: app/features/mec/settings.php:301
3376
  msgid "Multiple Day Events"
3377
  msgstr ""
3378
 
3379
+ #: app/features/mec/settings.php:304
3380
  msgid "Show only first day on List/Grid/Slider skins"
3381
  msgstr ""
3382
 
3383
+ #: app/features/mec/settings.php:305
3384
  msgid "Show only first day on all skins"
3385
  msgstr ""
3386
 
3387
+ #: app/features/mec/settings.php:306
3388
  msgid "Show all days"
3389
  msgstr ""
3390
 
3391
+ #: app/features/mec/settings.php:308
3392
  msgid ""
3393
  "For showing all days of multiple day events on frontend or only show the "
3394
  "first day."
3395
  msgstr ""
3396
 
3397
+ #: app/features/mec/settings.php:314
3398
  msgid "Remove MEC Data on Plugin Uninstall"
3399
  msgstr ""
3400
 
3401
+ #: app/features/mec/settings.php:318
3402
  msgid "Enabled"
3403
  msgstr ""
3404
 
3405
+ #: app/features/mec/settings.php:324
3406
  msgid "Exclude Date Suffix"
3407
  msgstr ""
3408
 
3409
+ #: app/features/mec/settings.php:327
3410
  msgid "Remove suffix from calendars"
3411
  msgstr ""
3412
 
3413
+ #: app/features/mec/settings.php:334 app/libraries/main.php:4245
3414
  msgid "Weekdays"
3415
  msgstr ""
3416
 
3417
+ #: app/features/mec/settings.php:342
3418
  msgid ""
3419
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3420
  "and Friday."
3421
  msgstr ""
3422
 
3423
+ #: app/features/mec/settings.php:349
3424
  msgid "Weekends"
3425
  msgstr ""
3426
 
3427
+ #: app/features/mec/settings.php:357
3428
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3429
  msgstr ""
3430
 
3431
+ #: app/features/mec/settings.php:365
3432
  msgid "Archive Pages"
3433
  msgstr ""
3434
 
3435
+ #: app/features/mec/settings.php:368
3436
  msgid "Archive Page Title"
3437
  msgstr ""
3438
 
3439
+ #: app/features/mec/settings.php:371
3440
  msgid "Default value is Events"
3441
  msgstr ""
3442
 
3443
+ #: app/features/mec/settings.php:376
3444
  msgid "Archive Page Skin"
3445
  msgstr ""
3446
 
3447
+ #: app/features/mec/settings.php:384
3448
+ msgid "Put shortcode..."
3449
+ msgstr ""
3450
+
3451
+ #: app/features/mec/settings.php:387 app/features/mec/settings.php:402
3452
+ #: app/features/mec/settings.php:405 app/features/mec/settings.php:414
3453
+ #: app/features/mec/settings.php:440 app/features/mec/settings.php:455
3454
+ #: app/features/mec/settings.php:470 app/features/mec/settings.php:473
3455
+ #: app/features/mec/settings.php:482 app/features/mec/settings.php:508
3456
+ msgid "There is no skins"
3457
+ msgstr ""
3458
+
3459
+ #: app/features/mec/settings.php:390 app/features/mec/settings.php:458
3460
+ #: app/features/mec/settings.php:583
3461
+ msgid "Modern Style"
3462
+ msgstr ""
3463
+
3464
+ #: app/features/mec/settings.php:432 app/features/mec/settings.php:500
3465
+ msgid "colorful"
3466
+ msgstr ""
3467
+
3468
+ #: app/features/mec/settings.php:437 app/features/mec/settings.php:505
3469
+ msgid "Clean Style"
3470
+ msgstr ""
3471
+
3472
+ #: app/features/mec/settings.php:442
3473
  msgid "Default value is Calendar/Monthly View"
3474
  msgstr ""
3475
 
3476
+ #: app/features/mec/settings.php:447
3477
  msgid "Category Page Skin"
3478
  msgstr ""
3479
 
3480
+ #: app/features/mec/settings.php:510
3481
  msgid "Default value is List View"
3482
  msgstr ""
3483
 
3484
+ #: app/features/mec/settings.php:515
3485
  msgid "Category Events Method"
3486
  msgstr ""
3487
 
3488
+ #: app/features/mec/settings.php:519
3489
  msgid "Expired Events"
3490
  msgstr ""
3491
 
3492
+ #: app/features/mec/settings.php:521
3493
  msgid "Default value is Upcoming Events"
3494
  msgstr ""
3495
 
3496
+ #: app/features/mec/settings.php:526
3497
  msgid "Events Archive Status"
3498
  msgstr ""
3499
 
3500
+ #: app/features/mec/settings.php:529
3501
  msgid "Enabled (Recommended)"
3502
  msgstr ""
3503
 
3504
+ #: app/features/mec/settings.php:532
3505
  msgid ""
3506
  "If you disable it, then you should create a page as archive page of MEC. "
3507
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3508
  "MEC rewrite rules."
3509
  msgstr ""
3510
 
3511
+ #: app/features/mec/settings.php:542
3512
  msgid "Main Slug"
3513
  msgstr ""
3514
 
3515
+ #: app/features/mec/settings.php:545
3516
  msgid ""
3517
  "Default value is events. Valid characters are lowercase a-z, - character and "
3518
  "numbers."
3519
  msgstr ""
3520
 
3521
+ #: app/features/mec/settings.php:549
3522
  msgid "Category Slug"
3523
  msgstr ""
3524
 
3525
+ #: app/features/mec/settings.php:552
3526
  msgid ""
3527
  "It's slug of MEC categories, you can change it to events-cat or something "
3528
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3529
  "character and numbers."
3530
  msgstr ""
3531
 
3532
+ #: app/features/mec/settings.php:562
3533
  msgid "Single Event Date Format"
3534
  msgstr ""
3535
 
3536
+ #: app/features/mec/settings.php:565 app/features/mec/settings.php:927
3537
  msgid "Default is M d Y"
3538
  msgstr ""
3539
 
3540
+ #: app/features/mec/settings.php:569
3541
  msgid "Date Method"
3542
  msgstr ""
3543
 
3544
+ #: app/features/mec/settings.php:572
3545
  msgid "Next occurrence date"
3546
  msgstr ""
3547
 
3548
+ #: app/features/mec/settings.php:573
3549
  msgid "Referred date"
3550
  msgstr ""
3551
 
3552
+ #: app/features/mec/settings.php:575
3553
  msgid ""
3554
  "\"Referred date\" shows the event date based on referred date in event list."
3555
  msgstr ""
3556
 
3557
+ #: app/features/mec/settings.php:579
3558
  msgid "Single Event Style"
3559
  msgstr ""
3560
 
3561
+ #: app/features/mec/settings.php:582
3562
  msgid "Default Style"
3563
  msgstr ""
3564
 
3565
+ #: app/features/mec/settings.php:585
 
 
 
 
3566
  msgid "Choose your single event style."
3567
  msgstr ""
3568
 
3569
+ #: app/features/mec/settings.php:589
3570
  msgid "Booking Style"
3571
  msgstr ""
3572
 
3573
+ #: app/features/mec/settings.php:592 app/features/mec/settings.php:703
3574
  msgid "Default"
3575
  msgstr ""
3576
 
3577
+ #: app/features/mec/settings.php:593
3578
  msgid "Modal"
3579
  msgstr ""
3580
 
3581
+ #: app/features/mec/settings.php:595
3582
  msgid "Choose your Booking style."
3583
  msgstr ""
3584
 
3585
+ #: app/features/mec/settings.php:603
3586
  msgid "Currency"
3587
  msgstr ""
3588
 
3589
+ #: app/features/mec/settings.php:613
3590
  msgid "Currency Sign"
3591
  msgstr ""
3592
 
3593
+ #: app/features/mec/settings.php:616
3594
  msgid "Default value will be \"currency\" if you leave it empty."
3595
  msgstr ""
3596
 
3597
+ #: app/features/mec/settings.php:620
3598
  msgid "Currency Position"
3599
  msgstr ""
3600
 
3601
+ #: app/features/mec/settings.php:623
3602
  msgid "Before $10"
3603
  msgstr ""
3604
 
3605
+ #: app/features/mec/settings.php:624
3606
  msgid "After 10$"
3607
  msgstr ""
3608
 
3609
+ #: app/features/mec/settings.php:629
3610
  msgid "Thousand Separator"
3611
  msgstr ""
3612
 
3613
+ #: app/features/mec/settings.php:635
3614
  msgid "Decimal Separator"
3615
  msgstr ""
3616
 
3617
+ #: app/features/mec/settings.php:645
3618
  msgid "No decimal"
3619
  msgstr ""
3620
 
3621
+ #: app/features/mec/settings.php:654
3622
  msgid "Speakers Options"
3623
  msgstr ""
3624
 
3625
+ #: app/features/mec/settings.php:660
3626
  msgid "Enable speakers feature"
3627
  msgstr ""
3628
 
3629
+ #: app/features/mec/settings.php:676
3630
  msgid "Show Google Maps on event page"
3631
  msgstr ""
3632
 
3633
+ #: app/features/mec/settings.php:681 app/features/mec/settings.php:849
3634
+ #: app/features/mec/settings.php:1378
3635
  msgid "API Key"
3636
  msgstr ""
3637
 
3638
+ #: app/features/mec/settings.php:684 app/features/mec/settings.php:1381
3639
+ #: app/features/mec/settings.php:1388
3640
  msgid "Required!"
3641
  msgstr ""
3642
 
3643
+ #: app/features/mec/settings.php:688
3644
  msgid "Zoom level"
3645
  msgstr ""
3646
 
3647
+ #: app/features/mec/settings.php:695
3648
  msgid ""
3649
  "For Google Maps module in single event page. In Google Maps skin, it will "
3650
  "caculate the zoom level automatically based on event boundaries."
3651
  msgstr ""
3652
 
3653
+ #: app/features/mec/settings.php:699
3654
  msgid "Google Maps Style"
3655
  msgstr ""
3656
 
3657
+ #: app/features/mec/settings.php:711
3658
  msgid "Direction on single event"
3659
  msgstr ""
3660
 
3661
+ #: app/features/mec/settings.php:715
3662
  msgid "Simple Method"
3663
  msgstr ""
3664
 
3665
+ #: app/features/mec/settings.php:716
3666
  msgid "Advanced Method"
3667
  msgstr ""
3668
 
3669
+ #: app/features/mec/settings.php:721
3670
  msgid "Lightbox Date Format"
3671
  msgstr ""
3672
 
3673
+ #: app/features/mec/settings.php:724
3674
  msgid "Default value is M d Y"
3675
  msgstr ""
3676
 
3677
+ #: app/features/mec/settings.php:728
3678
  msgid "Google Maps API"
3679
  msgstr ""
3680
 
3681
+ #: app/features/mec/settings.php:732
3682
  msgid "Don't load Google Maps API library"
3683
  msgstr ""
3684
 
3685
+ #: app/features/mec/settings.php:734
3686
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3687
  msgstr ""
3688
 
3689
+ #: app/features/mec/settings.php:746
3690
  msgid "Enable Google Recaptcha"
3691
  msgstr ""
3692
 
3693
+ #: app/features/mec/settings.php:753
3694
  msgid "Enable on booking form"
3695
  msgstr ""
3696
 
3697
+ #: app/features/mec/settings.php:759
3698
  msgid "Enable on \"Frontend Event Submission\" form"
3699
  msgstr ""
3700
 
3701
+ #: app/features/mec/settings.php:763
3702
  msgid "Site Key"
3703
  msgstr ""
3704
 
3705
+ #: app/features/mec/settings.php:769
3706
  msgid "Secret Key"
3707
  msgstr ""
3708
 
3709
+ #: app/features/mec/settings.php:783
3710
  msgid ""
3711
  "Show export module (iCal export and add to Google calendars) on event page"
3712
  msgstr ""
3713
 
3714
+ #: app/features/mec/settings.php:790
3715
  msgid "Google Calendar"
3716
  msgstr ""
3717
 
3718
+ #: app/features/mec/settings.php:810
3719
  msgid "Show event time based on local time of visitor on event page"
3720
  msgstr ""
3721
 
3722
+ #: app/features/mec/settings.php:826
3723
  msgid "Show QR code of event in details page and booking invoice"
3724
  msgstr ""
3725
 
3726
+ #: app/features/mec/settings.php:844
3727
  msgid "Show weather module on event page"
3728
  msgstr ""
3729
 
3730
+ #: app/features/mec/settings.php:852
3731
  #, php-format
3732
  msgid "You can get a free API Key from %s"
3733
  msgstr ""
3734
 
3735
+ #: app/features/mec/settings.php:864
3736
  msgid "Show countdown module on event page"
3737
  msgstr ""
3738
 
3739
+ #: app/features/mec/settings.php:869
3740
  msgid "Countdown Style"
3741
  msgstr ""
3742
 
3743
+ #: app/features/mec/settings.php:872
3744
  msgid "Plain Style"
3745
  msgstr ""
3746
 
3747
+ #: app/features/mec/settings.php:873
3748
  msgid "Flip Style"
3749
  msgstr ""
3750
 
3751
+ #: app/features/mec/settings.php:885
3752
  msgid "Show social network module"
3753
  msgstr ""
3754
 
3755
+ #: app/features/mec/settings.php:910
3756
  msgid "Show next event module on event page"
3757
  msgstr ""
3758
 
3759
+ #: app/features/mec/settings.php:915
3760
  msgid "Method"
3761
  msgstr ""
3762
 
3763
+ #: app/features/mec/settings.php:918
3764
  msgid "Next Occurrence of Current Event"
3765
  msgstr ""
3766
 
3767
+ #: app/features/mec/settings.php:919
3768
  msgid "Next Occurrence of Other Events"
3769
  msgstr ""
3770
 
3771
+ #: app/features/mec/settings.php:924 app/features/mec/settings.php:1121
3772
  msgid "Date Format"
3773
  msgstr ""
3774
 
3775
+ #: app/features/mec/settings.php:936
3776
  msgid "Events List Page"
3777
  msgstr ""
3778
 
3779
+ #: app/features/mec/settings.php:945 app/features/mec/settings.php:957
3780
  #, php-format
3781
  msgid "Put %s shortcode into the page."
3782
  msgstr ""
3783
 
3784
+ #: app/features/mec/settings.php:948
3785
  msgid "Add/Edit Events Page"
3786
  msgstr ""
3787
 
3788
+ #: app/features/mec/settings.php:962
3789
  msgid "Enable event submission by guest (Not logged-in) users"
3790
  msgstr ""
3791
 
3792
+ #: app/features/mec/settings.php:969
3793
  msgid "Enable mandatory email and name for guest user"
3794
  msgstr ""
3795
 
3796
+ #: app/features/mec/settings.php:973
3797
  msgid "Frontend Event Submission Sections"
3798
  msgstr ""
3799
 
3800
+ #: app/features/mec/settings.php:995 app/widgets/single.php:119
3801
  msgid "Event Categories"
3802
  msgstr ""
3803
 
3804
+ #: app/features/mec/settings.php:1001
3805
  msgid "Event Labels"
3806
  msgstr ""
3807
 
3808
+ #: app/features/mec/settings.php:1013
3809
  msgid "Event Tags"
3810
  msgstr ""
3811
 
3812
+ #: app/features/mec/settings.php:1025 app/widgets/single.php:123
3813
  msgid "Event Organizer"
3814
  msgstr ""
3815
 
3816
+ #: app/features/mec/settings.php:1043
3817
  msgid "Booking Options"
3818
  msgstr ""
3819
 
3820
+ #: app/features/mec/settings.php:1049
3821
  msgid "Fees / Taxes Options"
3822
  msgstr ""
3823
 
3824
+ #: app/features/mec/settings.php:1063
3825
  #, php-format
3826
  msgid ""
3827
  "Users can put a note for editors while they're submitting the event. Also "
3829
  "users' note in email."
3830
  msgstr ""
3831
 
3832
+ #: app/features/mec/settings.php:1067
3833
  msgid "Visibility of Note"
3834
  msgstr ""
3835
 
3836
+ #: app/features/mec/settings.php:1070
3837
  msgid "Always"
3838
  msgstr ""
3839
 
3840
+ #: app/features/mec/settings.php:1071
3841
  msgid "While event is not published"
3842
  msgstr ""
3843
 
3844
+ #: app/features/mec/settings.php:1074
3845
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3846
  msgstr ""
3847
 
3848
+ #: app/features/mec/settings.php:1082
3849
  #, php-format
3850
  msgid ""
3851
  "Put %s shortcode into your desired page. Then users are able to see history "
3852
  "of their bookings."
3853
  msgstr ""
3854
 
3855
+ #: app/features/mec/settings.php:1087
3856
  msgid "Exceptional days"
3857
  msgstr ""
3858
 
3859
+ #: app/features/mec/settings.php:1091
3860
  msgid "Show exceptional days option on Add/Edit events page"
3861
  msgstr ""
3862
 
3863
+ #: app/features/mec/settings.php:1092
3864
  msgid ""
3865
  "Using this option you can include/exclude certain days to/from event "
3866
  "occurrence dates."
3867
  msgstr ""
3868
 
3869
+ #: app/features/mec/settings.php:1102
3870
  msgid ""
3871
  "Show additional organizers option on Add/Edit events page and single event "
3872
  "page."
3873
  msgstr ""
3874
 
3875
+ #: app/features/mec/settings.php:1116
3876
  msgid "Enable booking module"
3877
  msgstr ""
3878
 
3879
+ #: app/features/mec/settings.php:1124
3880
  msgid "Default is Y-m-d"
3881
  msgstr ""
3882
 
3883
+ #: app/features/mec/settings.php:1128
3884
  msgid "Maximum Dates"
3885
  msgstr ""
3886
 
3887
+ #: app/features/mec/settings.php:1130
3888
  msgid "Default is 6"
3889
  msgstr ""
3890
 
3891
+ #: app/features/mec/settings.php:1134
3892
  msgid "Thank You Page"
3893
  msgstr ""
3894
 
3895
+ #: app/features/mec/settings.php:1142
3896
  msgid ""
3897
  "User redirects to this page after booking. Leave it empty if you want to "
3898
  "disable it."
3899
  msgstr ""
3900
 
3901
+ #: app/features/mec/settings.php:1150
3902
  msgid "Enable Express Attendees Form"
3903
  msgstr ""
3904
 
3905
+ #: app/features/mec/settings.php:1152
3906
  msgid ""
3907
  "Users are able to apply first attendee information for other attendees in "
3908
  "the booking form."
3909
  msgstr ""
3910
 
3911
+ #: app/features/mec/settings.php:1155
3912
  msgid "Email verification"
3913
  msgstr ""
3914
 
3915
+ #: app/features/mec/settings.php:1161
3916
  msgid "Auto verification for free bookings"
3917
  msgstr ""
3918
 
3919
+ #: app/features/mec/settings.php:1170
3920
  msgid "Auto verification for paid bookings"
3921
  msgstr ""
3922
 
3923
+ #: app/features/mec/settings.php:1180
3924
  msgid "Auto confirmation for free bookings"
3925
  msgstr ""
3926
 
3927
+ #: app/features/mec/settings.php:1189
3928
  msgid "Auto confirmation for paid bookings"
3929
  msgstr ""
3930
 
3931
+ #: app/features/mec/settings.php:1206
3932
  msgid "Enable coupons module"
3933
  msgstr ""
3934
 
3935
+ #: app/features/mec/settings.php:1223
3936
  msgid "Enable taxes / fees module"
3937
  msgstr ""
3938
 
3939
+ #: app/features/mec/settings.php:1228
3940
  msgid "Add Fee"
3941
  msgstr ""
3942
 
3943
+ #: app/features/mec/settings.php:1288
3944
  msgid "Enable ticket options module"
3945
  msgstr ""
3946
 
3947
+ #: app/features/mec/settings.php:1293
3948
  msgid "Add Variation / Option"
3949
  msgstr ""
3950
 
3951
+ #: app/features/mec/settings.php:1343
3952
  msgid "Enable BuddyPress Integration"
3953
  msgstr ""
3954
 
3955
+ #: app/features/mec/settings.php:1350
3956
  msgid "Show \"Attendees Module\" in event details page"
3957
  msgstr ""
3958
 
3959
+ #: app/features/mec/settings.php:1354
3960
  msgid "Attendees Limit"
3961
  msgstr ""
3962
 
3963
+ #: app/features/mec/settings.php:1362
3964
  msgid "Add booking activity to user profile"
3965
  msgstr ""
3966
 
3967
+ #: app/features/mec/settings.php:1373
3968
  msgid "Enable Mailchimp Integration"
3969
  msgstr ""
3970
 
3971
+ #: app/features/mec/settings.php:1385
3972
  msgid "List ID"
3973
  msgstr ""
3974
 
3975
+ #: app/features/mec/settings.php:1392
3976
  msgid "Subscription Status"
3977
  msgstr ""
3978
 
3979
+ #: app/features/mec/settings.php:1395
3980
  msgid "Subscribe automatically"
3981
  msgstr ""
3982
 
3983
+ #: app/features/mec/settings.php:1396
3984
  msgid "Subscribe by verification"
3985
  msgstr ""
3986
 
3987
+ #: app/features/mec/settings.php:1398
3988
  msgid ""
3989
  "If you choose \"Subscribe by verification\" then an email will send to user "
3990
  "by mailchimp for subscription verification."
3991
  msgstr ""
3992
 
3993
+ #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1500
3994
+ #: app/libraries/main.php:4426
 
 
 
 
 
 
 
 
 
3995
  msgid "Verified"
3996
  msgstr ""
3997
 
3998
+ #: app/features/mec/settings.php:1502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3999
  msgid "Please Refresh Page"
4000
  msgstr ""
4001
 
4076
  msgid "Desktop Large Screens"
4077
  msgstr ""
4078
 
4079
+ #: app/features/mec/support-page.php:12
4080
+ msgid "All videos"
4081
+ msgstr ""
4082
+
4083
+ #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
4084
+ msgid "View all Articles"
4085
+ msgstr ""
4086
+
4087
+ #: app/features/mec/support-page.php:15
4088
+ msgid ""
4089
+ "If you have any questions regarding Modern Events Calendar and how to use "
4090
+ "it, you can use the following four methods we have prepared in this page. "
4091
+ "The detailed documentations of MEC along with its instructional videos will "
4092
+ "help you have a great experience working with it.So, if you need futher "
4093
+ "instructions using the plugin, please first refer to the following to find "
4094
+ "your answers."
4095
+ msgstr ""
4096
+
4097
+ #: app/features/mec/support-page.php:31
4098
+ msgid "Advice and answers from the Webnus Team"
4099
+ msgstr ""
4100
+
4101
+ #: app/features/mec/support-page.php:34
4102
+ msgid "Search..."
4103
+ msgstr ""
4104
+
4105
+ #: app/features/mec/support-page.php:46
4106
+ msgid "Quick Setup"
4107
+ msgstr ""
4108
+
4109
+ #: app/features/mec/support-page.php:50
4110
+ msgid "Download the Plugin"
4111
+ msgstr ""
4112
+
4113
+ #: app/features/mec/support-page.php:51
4114
+ msgid "Install and Activate the Plugin"
4115
+ msgstr ""
4116
+
4117
+ #: app/features/mec/support-page.php:52
4118
+ msgid "Add a New Event"
4119
+ msgstr ""
4120
+
4121
+ #: app/features/mec/support-page.php:55 app/features/mec/support-page.php:72
4122
+ #: app/features/mec/support-page.php:89 app/features/mec/support-page.php:106
4123
+ #: app/features/mec/support-page.php:126 app/features/mec/support-page.php:143
4124
+ #: app/features/mec/support-page.php:160 app/features/mec/support-page.php:177
4125
+ msgid "Watch Video"
4126
+ msgstr ""
4127
+
4128
+ #: app/features/mec/support-page.php:63
4129
+ msgid "Activate License"
4130
+ msgstr ""
4131
+
4132
+ #: app/features/mec/support-page.php:67
4133
+ msgid "Login to Dashboard"
4134
+ msgstr ""
4135
+
4136
+ #: app/features/mec/support-page.php:68
4137
+ msgid "Get the License Key"
4138
+ msgstr ""
4139
+
4140
+ #: app/features/mec/support-page.php:69
4141
+ msgid "Activate the plugin"
4142
+ msgstr ""
4143
+
4144
+ #: app/features/mec/support-page.php:84
4145
+ msgid "Add New Events, Date and Time"
4146
+ msgstr ""
4147
+
4148
+ #: app/features/mec/support-page.php:85
4149
+ msgid "Tags, Categories, Organizer, Location"
4150
+ msgstr ""
4151
+
4152
+ #: app/features/mec/support-page.php:86
4153
+ msgid "Hourly Schedule, Set Up Shortcodes"
4154
+ msgstr ""
4155
+
4156
+ #: app/features/mec/support-page.php:97 app/features/mec/support-page.php:101
4157
+ msgid "Enable Booking"
4158
+ msgstr ""
4159
+
4160
+ #: app/features/mec/support-page.php:102 app/features/mec/support-page.php:123
4161
+ msgid "Customize the Booking Form"
4162
+ msgstr ""
4163
+
4164
+ #: app/features/mec/support-page.php:103
4165
+ msgid "Set Up a Payment Gateway"
4166
+ msgstr ""
4167
+
4168
+ #: app/features/mec/support-page.php:117
4169
+ msgid "Add booking form to event"
4170
+ msgstr ""
4171
+
4172
+ #: app/features/mec/support-page.php:121
4173
+ msgid "Enable Booking from Settings"
4174
+ msgstr ""
4175
+
4176
+ #: app/features/mec/support-page.php:122
4177
+ msgid "Set Up a Booking Form"
4178
+ msgstr ""
4179
+
4180
+ #: app/features/mec/support-page.php:134
4181
+ msgid "Create Shortcodes"
4182
+ msgstr ""
4183
+
4184
+ #: app/features/mec/support-page.php:138
4185
+ msgid "Create a New Shortcode"
4186
+ msgstr ""
4187
+
4188
+ #: app/features/mec/support-page.php:139
4189
+ msgid "Customize Shortcodes"
4190
+ msgstr ""
4191
+
4192
+ #: app/features/mec/support-page.php:140
4193
+ msgid "Use Filters in Shortcodes"
4194
+ msgstr ""
4195
+
4196
+ #: app/features/mec/support-page.php:151
4197
+ msgid "WooCommerce gateways"
4198
+ msgstr ""
4199
+
4200
+ #: app/features/mec/support-page.php:155
4201
+ msgid "Install and Activate WooCommerce"
4202
+ msgstr ""
4203
+
4204
+ #: app/features/mec/support-page.php:156
4205
+ msgid "Integrate with MEC"
4206
+ msgstr ""
4207
+
4208
+ #: app/features/mec/support-page.php:157
4209
+ msgid "Set Up WooCommerce Gateway"
4210
+ msgstr ""
4211
+
4212
+ #: app/features/mec/support-page.php:172
4213
+ msgid "An Overview of the Settings"
4214
+ msgstr ""
4215
+
4216
+ #: app/features/mec/support-page.php:173
4217
+ msgid "Set Up Different Settings"
4218
+ msgstr ""
4219
+
4220
+ #: app/features/mec/support-page.php:174
4221
+ msgid "Use Different Options"
4222
+ msgstr ""
4223
+
4224
+ #: app/features/mec/support-page.php:188
4225
+ msgid "FAQ"
4226
+ msgstr ""
4227
+
4228
+ #: app/features/mec/support-page.php:192
4229
+ msgid "How should I update plugin?"
4230
+ msgstr ""
4231
+
4232
+ #: app/features/mec/support-page.php:194
4233
+ #, php-format
4234
+ msgid ""
4235
+ "You have two options:<br>\n"
4236
+ " 1-\tUploading the plugin file using FTP. For "
4237
+ "more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
4238
+ "<br>\n"
4239
+ " 2-\tUsing the auto-update feature which needs "
4240
+ "the adding of the purchase code in the corresponding section in the plugin. "
4241
+ "For more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
4242
+ msgstr ""
4243
+
4244
+ #: app/features/mec/support-page.php:199
4245
+ msgid "Do I lose all my data or customization if I update MEC?"
4246
+ msgstr ""
4247
+
4248
+ #: app/features/mec/support-page.php:200
4249
+ msgid ""
4250
+ "If you’ve added a file to the main folder of MEC, this file will be removed "
4251
+ "after the update. Therefore, please do get a full back up before proceeding "
4252
+ "with the update process."
4253
+ msgstr ""
4254
+
4255
+ #: app/features/mec/support-page.php:203
4256
+ msgid "Can I customize the event pages?"
4257
+ msgstr ""
4258
+
4259
+ #: app/features/mec/support-page.php:205
4260
+ #, php-format
4261
+ msgid ""
4262
+ "Yes, it is possible. In order to see the related documentations, please <a "
4263
+ "href=\"%s\" target=\"_blank\">click here</a>."
4264
+ msgstr ""
4265
+
4266
+ #: app/features/mec/support-page.php:208
4267
+ msgid "Does MEC have default languages or it needs to be translated?"
4268
+ msgstr ""
4269
+
4270
+ #: app/features/mec/support-page.php:210
4271
+ #, php-format
4272
+ msgid ""
4273
+ "Yes, for some of the languages MEC has the translation file as default. "
4274
+ "However, since these translations have been done by the users, they may be "
4275
+ "incomplete, hence updating them might be required. For more information, "
4276
+ "please <a href=\"%s\" target=\"_blank\">click here</a>."
4277
+ msgstr ""
4278
+
4279
+ #: app/features/mec/support-page.php:213
4280
+ msgid "Can I have more than one calendar in one website?"
4281
+ msgstr ""
4282
+
4283
+ #: app/features/mec/support-page.php:214
4284
+ msgid ""
4285
+ "Unfortunately, MEC does not support more than 1 calendar in a single "
4286
+ "website, however, it will be added in its upcoming updates."
4287
+ msgstr ""
4288
+
4289
+ #: app/features/mec/support-page.php:216
4290
+ msgid "Can I import/export from/to MEC?"
4291
+ msgstr ""
4292
+
4293
+ #: app/features/mec/support-page.php:217
4294
+ msgid ""
4295
+ "Yes, you can get an XML export from MEC data or import the file you've "
4296
+ "exported to MEC. Also, if you are using one of the following plugins (The "
4297
+ "event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then "
4298
+ "you can easily transfer your events to MEC."
4299
+ msgstr ""
4300
+
4301
+ #: app/features/mec/support-page.php:225
4302
+ msgid "Articles"
4303
+ msgstr ""
4304
+
4305
+ #: app/features/mec/support-page.php:228
4306
+ msgid "MEC And Integrate With WooCommerce"
4307
+ msgstr ""
4308
+
4309
+ #: app/features/mec/support-page.php:229
4310
+ msgid "Create Events With Your Page Builder"
4311
+ msgstr ""
4312
+
4313
+ #: app/features/mec/support-page.php:230
4314
+ msgid "Why can't I use HTML tags?"
4315
+ msgstr ""
4316
+
4317
+ #: app/features/mec/support-page.php:231
4318
+ msgid "Setup Date Option On Shortcodes"
4319
+ msgstr ""
4320
+
4321
+ #: app/features/mec/support-page.php:232
4322
+ msgid "I want to export booking, what should I do?"
4323
+ msgstr ""
4324
+
4325
+ #: app/features/mec/support-page.php:233
4326
+ msgid "I Can't Export iCal"
4327
+ msgstr ""
4328
+
4329
+ #: app/features/mec/support-page.php:234
4330
+ msgid "Booking Module Not Working"
4331
+ msgstr ""
4332
+
4333
+ #: app/features/mec/support-page.php:235
4334
+ msgid "Translate MEC"
4335
+ msgstr ""
4336
+
4337
+ #: app/features/mec/support-page.php:236
4338
+ msgid "No Event Found!"
4339
+ msgstr ""
4340
+
4341
+ #: app/features/mec/support-page.php:237
4342
+ msgid "MEC Theme Integration Guide"
4343
+ msgstr ""
4344
+
4345
+ #: app/features/mec/support-page.php:238
4346
+ msgid "Can I Override MEC Template ?"
4347
+ msgstr ""
4348
+
4349
+ #: app/features/mec/support-page.php:248
4350
+ msgid ""
4351
+ "Webnus is an elite and trusted author with a high percentage of satisfied "
4352
+ "users. If you have any issues please don't hesitate to contact us, we will "
4353
+ "reply as soon as possible."
4354
+ msgstr ""
4355
+
4356
+ #: app/features/mec/support-page.php:249
4357
+ msgid "Go to support forum"
4358
+ msgstr ""
4359
+
4360
+ #: app/features/mec/support.php:104
4361
+ msgid ""
4362
+ "Our documentation is simple and functional with full details and cover all "
4363
+ "essential aspects from beginning to the most advanced parts."
4364
+ msgstr ""
4365
+
4366
+ #: app/features/mec/support.php:107
4367
+ msgid "DOCUMENTATION"
4368
+ msgstr ""
4369
+
4370
+ #: app/features/mec/support.php:116
4371
+ msgid "Support Forum"
4372
+ msgstr ""
4373
+
4374
+ #: app/features/mec/support.php:120
4375
+ msgid ""
4376
+ "Webnus is elite and trusted author with high percentage of satisfied user. "
4377
+ "If you want to use this service you need to upgrade your plugin to Pro "
4378
+ "version. Click on the following button."
4379
+ msgstr ""
4380
+
4381
+ #: app/features/mec/support.php:122
4382
+ msgid ""
4383
+ "Webnus is elite and trusted author with high percentage of satisfied user. "
4384
+ "If you have any issues please don't hesitate to contact us, we will reply as "
4385
+ "soon as possible."
4386
+ msgstr ""
4387
+
4388
+ #: app/features/mec/support.php:126
4389
+ msgid "GO PREMIUM"
4390
+ msgstr ""
4391
+
4392
+ #: app/features/mec/support.php:128
4393
+ msgid "OPEN A TICKET"
4394
+ msgstr ""
4395
+
4396
  #: app/features/mec/support.php:138
4397
  msgid "Knowledgebase"
4398
  msgstr ""
4417
  msgid "How to add/manage shortcodes?"
4418
  msgstr ""
4419
 
 
 
 
 
4420
  #: app/features/organizers.php:105 app/features/organizers.php:147
4421
  #: app/features/speakers.php:176
4422
  msgid "Insert organizer phone number."
4477
  msgid "eg. https://webnus.net"
4478
  msgstr ""
4479
 
4480
+ #: app/features/organizers.php:300 app/libraries/main.php:4269
4481
  #: app/skins/single.php:194
4482
  msgid "Other Organizers"
4483
  msgstr ""
4496
  msgid "#"
4497
  msgstr ""
4498
 
4499
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2402
4500
  msgid "Status"
4501
  msgstr ""
4502
 
4503
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1664
4504
  msgid "Attendees"
4505
  msgstr ""
4506
 
4513
  msgid "<i class=\"mec-sl-eye\"></i> %s"
4514
  msgstr ""
4515
 
4516
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1678
4517
+ #: app/libraries/main.php:4267
4518
  msgid "Ticket"
4519
  msgstr ""
4520
 
4527
  msgstr ""
4528
 
4529
  #: app/features/speakers.php:56 app/features/speakers.php:242
4530
+ #: app/libraries/main.php:4241
4531
  msgid "Speaker"
4532
  msgstr ""
4533
 
4557
  msgstr ""
4558
 
4559
  #: app/features/speakers.php:135 app/features/speakers.php:187
4560
+ #: app/libraries/main.php:1078
4561
  msgid "Google+"
4562
  msgstr ""
4563
 
4611
  msgstr ""
4612
 
4613
  #: app/libraries/factory.php:302 app/modules/countdown/details.php:122
4614
+ #: app/skins/available_spot/tpl.php:140 app/skins/countdown/tpl.php:125
4615
+ #: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:218
4616
  msgid "days"
4617
  msgstr ""
4618
 
4621
  msgstr ""
4622
 
4623
  #: app/libraries/factory.php:304 app/modules/countdown/details.php:129
4624
+ #: app/skins/available_spot/tpl.php:144 app/skins/countdown/tpl.php:131
4625
+ #: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
4626
  msgid "hours"
4627
  msgstr ""
4628
 
4631
  msgstr ""
4632
 
4633
  #: app/libraries/factory.php:306 app/modules/countdown/details.php:136
4634
+ #: app/skins/available_spot/tpl.php:148 app/skins/countdown/tpl.php:137
4635
+ #: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
4636
  msgid "minutes"
4637
  msgstr ""
4638
 
4641
  msgstr ""
4642
 
4643
  #: app/libraries/factory.php:308 app/modules/countdown/details.php:143
4644
+ #: app/skins/available_spot/tpl.php:152 app/skins/countdown/tpl.php:143
4645
+ #: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
4646
  msgid "seconds"
4647
  msgstr ""
4648
 
4658
  msgid "There is no excerpt because this is a protected post."
4659
  msgstr ""
4660
 
4661
+ #: app/libraries/main.php:327 app/libraries/main.php:1197
4662
+ #: app/libraries/main.php:1222
4663
  msgid "Grid View"
4664
  msgstr ""
4665
 
4666
+ #: app/libraries/main.php:328 app/libraries/main.php:1198
4667
+ #: app/libraries/main.php:1223
4668
  msgid "Agenda View"
4669
  msgstr ""
4670
 
4671
+ #: app/libraries/main.php:329 app/libraries/main.php:1189
4672
+ #: app/libraries/main.php:1214
4673
  msgid "Full Calendar"
4674
  msgstr ""
4675
 
4676
+ #: app/libraries/main.php:331 app/libraries/main.php:1191
4677
+ #: app/libraries/main.php:1216
4678
  msgid "Calendar/Monthly View"
4679
  msgstr ""
4680
 
4681
+ #: app/libraries/main.php:334 app/libraries/main.php:1194
4682
+ #: app/libraries/main.php:1219
4683
  msgid "Timetable View"
4684
  msgstr ""
4685
 
4686
+ #: app/libraries/main.php:335 app/libraries/main.php:1195
4687
+ #: app/libraries/main.php:1220
4688
  msgid "Masonry View"
4689
  msgstr ""
4690
 
4691
+ #: app/libraries/main.php:336 app/libraries/main.php:1199
4692
+ #: app/libraries/main.php:1224
4693
  msgid "Map View"
4694
  msgstr ""
4695
 
4713
  msgid "Slider View"
4714
  msgstr ""
4715
 
4716
+ #: app/libraries/main.php:378 app/libraries/main.php:4247
4717
  msgid "SU"
4718
  msgstr ""
4719
 
4720
+ #: app/libraries/main.php:379 app/libraries/main.php:4248
4721
  msgid "MO"
4722
  msgstr ""
4723
 
4724
+ #: app/libraries/main.php:380 app/libraries/main.php:4249
4725
  msgid "TU"
4726
  msgstr ""
4727
 
4728
+ #: app/libraries/main.php:381 app/libraries/main.php:4250
4729
  msgid "WE"
4730
  msgstr ""
4731
 
4732
+ #: app/libraries/main.php:382 app/libraries/main.php:4251
4733
  msgid "TH"
4734
  msgstr ""
4735
 
4736
+ #: app/libraries/main.php:383 app/libraries/main.php:4252
4737
  msgid "FR"
4738
  msgstr ""
4739
 
4740
+ #: app/libraries/main.php:384 app/libraries/main.php:4253
4741
  msgid "SA"
4742
  msgstr ""
4743
 
4744
+ #: app/libraries/main.php:1036
4745
  msgid "Events at this location"
4746
  msgstr ""
4747
 
4748
+ #: app/libraries/main.php:1036
4749
  msgid "Event at this location"
4750
  msgstr ""
4751
 
4752
+ #: app/libraries/main.php:1077
4753
  msgid "Facebook"
4754
  msgstr ""
4755
 
4756
+ #: app/libraries/main.php:1079
4757
  msgid "Twitter"
4758
  msgstr ""
4759
 
4760
+ #: app/libraries/main.php:1080 app/libraries/main.php:1145
4761
  msgid "Linkedin"
4762
  msgstr ""
4763
 
4764
+ #: app/libraries/main.php:1081 app/libraries/main.php:1178
4765
  msgid "VK"
4766
  msgstr ""
4767
 
4768
+ #: app/libraries/main.php:1100
4769
  msgid "Share on Facebook"
4770
  msgstr ""
4771
 
4772
+ #: app/libraries/main.php:1115
4773
  msgid "Google Plus"
4774
  msgstr ""
4775
 
4776
+ #: app/libraries/main.php:1130
4777
  msgid "Tweet"
4778
  msgstr ""
4779
 
4780
+ #: app/libraries/main.php:1200
4781
+ msgid "Custom Shortcode"
4782
+ msgstr ""
4783
+
4784
+ #: app/libraries/main.php:1559
4785
  msgid "Your booking successfully verified."
4786
  msgstr ""
4787
 
4788
+ #: app/libraries/main.php:1560
4789
  msgid "Your booking cannot verify!"
4790
  msgstr ""
4791
 
4792
+ #: app/libraries/main.php:1572
4793
  msgid "Your booking successfully canceled."
4794
  msgstr ""
4795
 
4796
+ #: app/libraries/main.php:1573
4797
  msgid "Your booking cannot be canceled."
4798
  msgstr ""
4799
 
4800
+ #: app/libraries/main.php:1577
4801
  msgid "You canceled the payment successfully."
4802
  msgstr ""
4803
 
4804
+ #: app/libraries/main.php:1581
4805
  msgid "You returned from payment gateway successfully."
4806
  msgstr ""
4807
 
4808
+ #: app/libraries/main.php:1605
4809
  msgid "Cannot find the booking!"
4810
  msgstr ""
4811
 
4812
+ #: app/libraries/main.php:1605
4813
  msgid "Booking is invalid."
4814
  msgstr ""
4815
 
4816
+ #: app/libraries/main.php:1634
4817
  #, php-format
4818
  msgid "%s Invoice"
4819
  msgstr ""
4820
 
4821
+ #: app/libraries/main.php:1655
4822
  msgid "Transaction ID"
4823
  msgstr ""
4824
 
4825
+ #: app/libraries/main.php:1708
4826
  msgid "Billing"
4827
  msgstr ""
4828
 
4829
+ #: app/libraries/main.php:1719
4830
  msgid "Total"
4831
  msgstr ""
4832
 
4833
+ #: app/libraries/main.php:1752
4834
  msgid "Security nonce is not valid."
4835
  msgstr ""
4836
 
4837
+ #: app/libraries/main.php:1752 app/libraries/main.php:1784
4838
  msgid "iCal export stopped!"
4839
  msgstr ""
4840
 
4841
+ #: app/libraries/main.php:1784
4842
  msgid "Request is not valid."
4843
  msgstr ""
4844
 
4845
+ #: app/libraries/main.php:2104 app/libraries/main.php:2133
4846
+ #: app/libraries/main.php:2162 app/libraries/main.php:2191
4847
+ #: app/libraries/main.php:2220 app/libraries/main.php:2244
4848
+ #: app/libraries/main.php:2288 app/libraries/main.php:2332
4849
+ #: app/libraries/main.php:2379 app/libraries/main.php:2425
4850
  msgid "Sort"
4851
  msgstr ""
4852
 
4853
+ #: app/libraries/main.php:2110 app/libraries/main.php:2139
4854
+ #: app/libraries/main.php:2168 app/libraries/main.php:2197
4855
+ #: app/libraries/main.php:2250 app/libraries/main.php:2294
4856
+ #: app/libraries/main.php:2338 app/libraries/main.php:2385
4857
  msgid "Required Field"
4858
  msgstr ""
4859
 
4860
+ #: app/libraries/main.php:2116 app/libraries/main.php:2145
4861
+ #: app/libraries/main.php:2174 app/libraries/main.php:2203
4862
+ #: app/libraries/main.php:2256 app/libraries/main.php:2300
4863
+ #: app/libraries/main.php:2344 app/libraries/main.php:2391
4864
  msgid "Insert a label for this field"
4865
  msgstr ""
4866
 
4867
+ #: app/libraries/main.php:2226
4868
  msgid "HTML and shortcode are allowed."
4869
  msgstr ""
4870
 
4871
+ #: app/libraries/main.php:2269 app/libraries/main.php:2313
4872
+ #: app/libraries/main.php:2357
4873
  msgid "Option"
4874
  msgstr ""
4875
 
4876
+ #: app/libraries/main.php:2391
4877
  #, php-format
4878
  msgid "Instead of %s, the page title with a link will be show."
4879
  msgstr ""
4880
 
4881
+ #: app/libraries/main.php:2393
4882
  msgid "Agreement Page"
4883
  msgstr ""
4884
 
4885
+ #: app/libraries/main.php:2404
4886
  msgid "Checked by default"
4887
  msgstr ""
4888
 
4889
+ #: app/libraries/main.php:2405
4890
  msgid "Unchecked by default"
4891
  msgstr ""
4892
 
4893
+ #: app/libraries/main.php:2427
4894
  msgid "Insert a label for this option"
4895
  msgstr ""
4896
 
4897
+ #: app/libraries/main.php:2442
4898
  msgid "Free"
4899
  msgstr ""
4900
 
4901
+ #: app/libraries/main.php:3094
4902
  #, php-format
4903
  msgid "Copy of %s"
4904
  msgstr ""
4905
 
4906
+ #: app/libraries/main.php:3747
4907
  msgid "Booked an event."
4908
  msgstr ""
4909
 
4910
+ #: app/libraries/main.php:3788
4911
  #, php-format
4912
  msgid "%s booked %s event."
4913
  msgstr ""
4914
 
4915
+ #: app/libraries/main.php:4230
4916
  msgid "Taxonomies"
4917
  msgstr ""
4918
 
4919
+ #: app/libraries/main.php:4232
4920
  msgid "Category Plural Label"
4921
  msgstr ""
4922
 
4923
+ #: app/libraries/main.php:4233
4924
  msgid "Category Singular Label"
4925
  msgstr ""
4926
 
4927
+ #: app/libraries/main.php:4234
4928
  msgid "Label Plural Label"
4929
  msgstr ""
4930
 
4931
+ #: app/libraries/main.php:4235
4932
  msgid "Label Singular Label"
4933
  msgstr ""
4934
 
4935
+ #: app/libraries/main.php:4235
4936
  msgid "label"
4937
  msgstr ""
4938
 
4939
+ #: app/libraries/main.php:4236
4940
  msgid "Location Plural Label"
4941
  msgstr ""
4942
 
4943
+ #: app/libraries/main.php:4237
4944
  msgid "Location Singular Label"
4945
  msgstr ""
4946
 
4947
+ #: app/libraries/main.php:4238
4948
  msgid "Organizer Plural Label"
4949
  msgstr ""
4950
 
4951
+ #: app/libraries/main.php:4239
4952
  msgid "Organizer Singular Label"
4953
  msgstr ""
4954
 
4955
+ #: app/libraries/main.php:4240
4956
  msgid "Speaker Plural Label"
4957
  msgstr ""
4958
 
4959
+ #: app/libraries/main.php:4241
4960
  msgid "Speaker Singular Label"
4961
  msgstr ""
4962
 
4963
+ #: app/libraries/main.php:4247
4964
  msgid "Sunday abbreviation"
4965
  msgstr ""
4966
 
4967
+ #: app/libraries/main.php:4248
4968
  msgid "Monday abbreviation"
4969
  msgstr ""
4970
 
4971
+ #: app/libraries/main.php:4249
4972
  msgid "Tuesday abbreviation"
4973
  msgstr ""
4974
 
4975
+ #: app/libraries/main.php:4250
4976
  msgid "Wednesday abbreviation"
4977
  msgstr ""
4978
 
4979
+ #: app/libraries/main.php:4251
4980
  msgid "Thursday abbreviation"
4981
  msgstr ""
4982
 
4983
+ #: app/libraries/main.php:4252
4984
  msgid "Friday abbreviation"
4985
  msgstr ""
4986
 
4987
+ #: app/libraries/main.php:4253
4988
  msgid "Saturday abbreviation"
4989
  msgstr ""
4990
 
4991
+ #: app/libraries/main.php:4257
4992
  msgid "Others"
4993
  msgstr ""
4994
 
4995
+ #: app/libraries/main.php:4259
4996
  msgid "Booking Success Message"
4997
  msgstr ""
4998
 
4999
+ #: app/libraries/main.php:4259
5000
  msgid ""
5001
  "Thanks for your booking. Your tickets booked, booking verification might be "
5002
  "needed, please check your email."
5003
  msgstr ""
5004
 
5005
+ #: app/libraries/main.php:4260 app/widgets/single.php:131
5006
  msgid "Register Button"
5007
  msgstr ""
5008
 
5009
+ #: app/libraries/main.php:4260 app/skins/available_spot/tpl.php:198
5010
+ #: app/skins/carousel/render.php:128 app/skins/carousel/render.php:153
5011
+ #: app/skins/grid/render.php:111 app/skins/grid/render.php:142
5012
+ #: app/skins/grid/render.php:174 app/skins/grid/render.php:202
5013
+ #: app/skins/list/render.php:94 app/skins/list/render.php:175
5014
+ #: app/skins/masonry/render.php:127 app/skins/single/default.php:218
5015
  #: app/skins/single/default.php:220 app/skins/single/default.php:425
5016
  #: app/skins/single/default.php:427 app/skins/single/m1.php:126
5017
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
5018
  #: app/skins/single/m2.php:60 app/skins/single/modern.php:58
5019
+ #: app/skins/single/modern.php:60 app/skins/slider/render.php:109
5020
+ #: app/skins/slider/render.php:130 app/skins/slider/render.php:150
5021
+ #: app/skins/slider/render.php:170 app/skins/slider/render.php:201
5022
  msgid "REGISTER"
5023
  msgstr ""
5024
 
5025
+ #: app/libraries/main.php:4261
5026
  msgid "View Detail Button"
5027
  msgstr ""
5028
 
5029
+ #: app/libraries/main.php:4261 app/skins/carousel/render.php:128
5030
+ #: app/skins/carousel/render.php:153 app/skins/grid/render.php:111
5031
+ #: app/skins/grid/render.php:142 app/skins/grid/render.php:174
5032
+ #: app/skins/grid/render.php:202 app/skins/list/render.php:94
5033
+ #: app/skins/list/render.php:175 app/skins/masonry/render.php:127
5034
+ #: app/skins/slider/render.php:109 app/skins/slider/render.php:130
5035
+ #: app/skins/slider/render.php:150 app/skins/slider/render.php:170
5036
+ #: app/skins/slider/render.php:201
5037
  msgid "View Detail"
5038
  msgstr ""
5039
 
5040
+ #: app/libraries/main.php:4262
5041
  msgid "Event Detail Button"
5042
  msgstr ""
5043
 
5044
+ #: app/libraries/main.php:4262 app/skins/countdown/tpl.php:211
5045
  msgid "Event Detail"
5046
  msgstr ""
5047
 
5048
+ #: app/libraries/main.php:4264
5049
  msgid "More Info Link"
5050
  msgstr ""
5051
 
5052
+ #: app/libraries/main.php:4267
5053
  msgid "Ticket (Singular)"
5054
  msgstr ""
5055
 
5056
+ #: app/libraries/main.php:4268
5057
  msgid "Tickets (Plural)"
5058
  msgstr ""
5059
 
5060
+ #: app/libraries/main.php:4334
5061
  msgid "EventON"
5062
  msgstr ""
5063
 
5064
+ #: app/libraries/main.php:4335
5065
  msgid "The Events Calendar"
5066
  msgstr ""
5067
 
5068
+ #: app/libraries/main.php:4336
5069
  msgid "Events Schedule WP Plugin"
5070
  msgstr ""
5071
 
5072
+ #: app/libraries/main.php:4337
5073
  msgid "Calendarize It"
5074
  msgstr ""
5075
 
5076
+ #: app/libraries/main.php:4411
5077
  msgid "Confirmed"
5078
  msgstr ""
5079
 
5080
+ #: app/libraries/main.php:4412
5081
  msgid "Rejected"
5082
  msgstr ""
5083
 
5084
+ #: app/libraries/main.php:4413
5085
  msgid "Pending"
5086
  msgstr ""
5087
 
5088
+ #: app/libraries/main.php:4428
5089
  msgid "Waiting"
5090
  msgstr ""
5091
 
5129
  msgid "No"
5130
  msgstr ""
5131
 
5132
+ #: app/libraries/render.php:366
5133
  msgid "Skin controller does not exist."
5134
  msgstr ""
5135
 
5136
+ #: app/libraries/render.php:436 app/modules/local-time/details.php:47
5137
  #: app/modules/next-event/details.php:97 app/skins/single/default.php:73
5138
  #: app/skins/single/default.php:280 app/skins/single/m1.php:34
5139
  #: app/skins/single/modern.php:169
5182
  msgstr ""
5183
 
5184
  #: app/modules/booking/steps/form.php:120
5185
+ #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:112
5186
+ #: app/skins/countdown/tpl.php:156 app/skins/countdown/tpl.php:201
5187
  msgid "Next"
5188
  msgstr ""
5189
 
5307
  msgstr ""
5308
 
5309
  #: app/skins/agenda/tpl.php:72 app/skins/grid/tpl.php:62
5310
+ #: app/skins/list/tpl.php:67 app/skins/yearly_view/render.php:115
5311
  msgid "Load More"
5312
  msgstr ""
5313
 
5314
+ #: app/skins/available_spot/tpl.php:133
5315
  msgid "Available Spot(s):"
5316
  msgstr ""
5317
 
5318
+ #: app/skins/carousel/render.php:20
5319
+ msgid "View All"
 
 
5320
  msgstr ""
5321
 
5322
+ #: app/skins/carousel/render.php:168 app/skins/countdown/tpl.php:150
5323
+ #: app/skins/countdown/tpl.php:194 app/skins/cover/tpl.php:94
5324
+ #: app/skins/list/render.php:111
5325
  msgid "EVENT DETAIL"
5326
  msgstr ""
5327
 
5328
+ #: app/skins/countdown/tpl.php:112 app/skins/countdown/tpl.php:156
5329
+ #: app/skins/countdown/tpl.php:201
5330
+ #, php-format
5331
+ msgid "%s Upcoming Event"
5332
+ msgstr ""
5333
+
5334
+ #: app/skins/cover/tpl.php:76
5335
  msgid "featured event"
5336
  msgstr ""
5337
 
5338
+ #: app/skins/daily_view/render.php:72
5339
  msgid "No event"
5340
  msgstr ""
5341
 
5348
  msgstr ""
5349
 
5350
  #: app/skins/monthly_view/calendar.php:66
5351
+ #: app/skins/monthly_view/calendar.php:145
5352
  #: app/skins/monthly_view/calendar_clean.php:67
5353
+ #: app/skins/monthly_view/calendar_clean.php:146
5354
  #, php-format
5355
  msgid "Events for %s"
5356
  msgstr ""
5357
 
5358
+ #: app/skins/monthly_view/calendar.php:147
5359
+ #: app/skins/monthly_view/calendar_clean.php:148
5360
+ #: app/skins/timetable/render.php:104 app/skins/weekly_view/render.php:84
5361
  msgid "No Events"
5362
  msgstr ""
5363
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -1,86 +1,73 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-02-27 11:59+0330\n"
5
- "PO-Revision-Date: 2019-02-27 11:59+0330\n"
6
- "Last-Translator: Howard <howard@realtyna.com>\n"
 
7
  "Language-Team: \n"
8
- "Language: es_ES\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
  "X-Generator: Poedit 2.0.1\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-WPHeader: mec.php\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
24
  #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
25
- #: app/features/mec/dashboard.php:61 app/widgets/MEC.php:33
26
  msgid "Modern Events Calendar"
27
- msgstr "Calendario moderno"
28
 
29
  #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:217
30
  msgid "Content"
31
  msgstr "Contenido"
32
 
33
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:281
34
- #: app/features/mec.php:310 app/features/mec.php:336
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
38
  #: app/addons/KC.php:78 app/addons/VC.php:73
39
- #, fuzzy
40
  msgid "Select from predefined shortcodes"
41
- msgstr "Selección de calendarios predefinidos"
42
 
43
  #: app/addons/elementor/shortcode.php:34
44
- #, fuzzy
45
- #| msgid "Modern Events Calendar"
46
  msgid "Modern Events Calendar (MEC)"
47
- msgstr "Calendario moderno"
48
 
49
  #: app/addons/elementor/shortcode.php:78
50
- #, fuzzy
51
- #| msgid "General Options"
52
  msgid "General"
53
- msgstr "Opciones generales"
54
 
55
  #: app/addons/elementor/shortcode.php:87
56
- #, fuzzy
57
- #| msgid "Select"
58
  msgid "Select Type"
59
- msgstr "Selección"
60
 
61
  #: app/features/colors.php:50 app/features/fes/form.php:558
62
- #: app/features/mec/settings.php:897
63
  msgid "Event Color"
64
  msgstr "Color del evento"
65
 
66
- #: app/features/contextual.php:55 app/features/mec.php:267
67
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
68
  #: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
69
- #: app/features/mec/regform.php:24 app/features/mec/settings.php:40
70
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:51
71
- #: app/features/mec/support.php:20
72
  msgid "Settings"
73
  msgstr "Ajustes"
74
 
75
- #: app/features/contextual.php:62 app/features/events.php:1214
76
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
77
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
78
  #: app/features/mec/regform.php:32 app/features/mec/regform.php:95
79
- #: app/features/mec/settings.php:209 app/features/mec/styles.php:33
80
  #: app/features/mec/styling.php:60 app/features/mec/support.php:29
81
- #, fuzzy
82
  msgid "Booking Form"
83
- msgstr "Reserva"
84
 
85
  #: app/features/contextual.php:63
86
  msgid ""
@@ -90,15 +77,21 @@ msgid ""
90
  "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
91
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
92
  msgstr ""
 
 
 
 
 
 
93
 
94
  #: app/features/contextual.php:70 app/features/mec/gateways.php:40
95
  #: app/features/mec/gateways.php:97 app/features/mec/ie.php:36
96
  #: app/features/mec/messages.php:40 app/features/mec/notifications.php:39
97
- #: app/features/mec/regform.php:39 app/features/mec/settings.php:216
98
  #: app/features/mec/styles.php:40 app/features/mec/styling.php:67
99
  #: app/features/mec/support.php:36
100
  msgid "Payment Gateways"
101
- msgstr "Entradas de pago"
102
 
103
  #: app/features/contextual.php:71
104
  msgid ""
@@ -106,15 +99,18 @@ msgid ""
106
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
107
  "\"0\" allowfullscreen></iframe>"
108
  msgstr ""
 
 
 
109
 
110
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
111
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
112
  #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:96
113
- #: app/features/mec/regform.php:47 app/features/mec/settings.php:226
114
  #: app/features/mec/styles.php:49 app/features/mec/styling.php:76
115
  #: app/features/mec/support.php:45
116
  msgid "Notifications"
117
- msgstr "Notificaciones"
118
 
119
  #: app/features/contextual.php:78
120
  msgid ""
@@ -123,6 +119,10 @@ msgid ""
123
  "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
124
  "ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
125
  msgstr ""
 
 
 
 
126
 
127
  #: app/features/contextual.php:88 app/features/ix/export.php:10
128
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
@@ -131,7 +131,7 @@ msgstr ""
131
  #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
132
  #: app/features/ix/thirdparty.php:10
133
  msgid "Google Cal. Import"
134
- msgstr ""
135
 
136
  #: app/features/contextual.php:89
137
  msgid ""
@@ -140,6 +140,10 @@ msgid ""
140
  "height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
141
  "\"0\" allowfullscreen></iframe>"
142
  msgstr ""
 
 
 
 
143
 
144
  #: app/features/contextual.php:95 app/features/ix/export.php:11
145
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
@@ -148,7 +152,7 @@ msgstr ""
148
  #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
149
  #: app/features/ix/thirdparty.php:11
150
  msgid "Google Cal. Export"
151
- msgstr ""
152
 
153
  #: app/features/contextual.php:96
154
  msgid ""
@@ -157,6 +161,10 @@ msgid ""
157
  "height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
158
  "\"0\" allowfullscreen></iframe>"
159
  msgstr ""
 
 
 
 
160
 
161
  #: app/features/contextual.php:102 app/features/ix/export.php:12
162
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
@@ -165,7 +173,7 @@ msgstr ""
165
  #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
166
  #: app/features/ix/thirdparty.php:12
167
  msgid "Facebook Cal. Import"
168
- msgstr ""
169
 
170
  #: app/features/contextual.php:103
171
  msgid ""
@@ -174,92 +182,92 @@ msgid ""
174
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
175
  "\"0\" allowfullscreen></iframe>"
176
  msgstr ""
 
 
 
 
177
 
178
- #: app/features/contextual.php:117 app/features/mec/settings.php:47
179
- #: app/features/mec/settings.php:278
180
  msgid "General Options"
181
  msgstr "Opciones generales"
182
 
183
- #: app/features/contextual.php:139 app/features/mec/settings.php:59
184
- #: app/features/mec/settings.php:430
185
  msgid "Slugs/Permalinks"
186
- msgstr ""
187
 
188
- #: app/features/contextual.php:152 app/features/mec/settings.php:65
189
- #: app/features/mec/settings.php:450
190
  msgid "Event Details/Single Event Page"
191
- msgstr ""
192
 
193
- #: app/features/contextual.php:166 app/features/mec/settings.php:71
194
- #: app/features/mec/settings.php:491
195
  msgid "Currency Options"
196
  msgstr "Opciones de moneda"
197
 
198
- #: app/features/contextual.php:182 app/features/mec/settings.php:83
199
- #: app/features/mec/settings.php:558
200
  msgid "Google Maps Options"
201
  msgstr "Opciones de Google Maps"
202
 
203
- #: app/features/contextual.php:244 app/features/mec/settings.php:89
204
- #: app/features/mec/settings.php:632
205
- #, fuzzy
206
  msgid "Google Recaptcha Options"
207
- msgstr "Opciones de Google Maps"
208
 
209
- #: app/features/contextual.php:258 app/features/mec/settings.php:119
210
- #: app/features/mec/settings.php:750
211
  msgid "Countdown Options"
212
  msgstr "Opciones de cuenta atrás"
213
 
214
- #: app/features/contextual.php:268 app/features/mec/settings.php:125
215
- #: app/features/mec/settings.php:771
216
  msgid "Social Networks"
217
  msgstr "Redes Sociales"
218
 
219
- #: app/features/contextual.php:278 app/features/mec/settings.php:131
220
- #: app/features/mec/settings.php:796
221
  msgid "Next Event Module"
222
- msgstr ""
223
 
224
- #: app/features/contextual.php:286 app/features/mec/settings.php:137
225
- #: app/features/mec/settings.php:824
226
  msgid "Frontend Event Submission"
227
- msgstr ""
228
 
229
- #: app/features/contextual.php:298 app/features/events.php:580
230
- #: app/features/mec/settings.php:149
231
- #, fuzzy
232
  msgid "Exceptional Days"
233
- msgstr "Día de expiración"
234
 
235
  #: app/features/contextual.php:308 app/features/events.php:263
236
- #: app/features/mec/settings.php:161 app/features/mec/settings.php:998
237
  msgid "Booking"
238
  msgstr "Reserva"
239
 
240
- #: app/features/contextual.php:318 app/features/mec/settings.php:167
241
- #: app/features/mec/settings.php:1088
242
  msgid "Coupons"
243
  msgstr "Cupones"
244
 
245
- #: app/features/contextual.php:326 app/features/mec/settings.php:185
246
- #: app/features/mec/settings.php:1229
247
  msgid "BuddyPress Integration"
248
- msgstr ""
249
 
250
- #: app/features/contextual.php:334 app/features/mec/settings.php:191
251
- #: app/features/mec/settings.php:1259
252
  msgid "Mailchimp Integration"
253
- msgstr ""
254
 
255
- #: app/features/contextual.php:346 app/features/mec/settings.php:197
256
- #: app/features/mec/settings.php:1295
257
- #, fuzzy
258
  msgid "MEC Activation"
259
- msgstr "Lugar"
260
 
261
  #: app/features/events.php:132 app/features/ix/export.php:34
262
- #: app/features/mec/dashboard.php:92 app/skins/daily_view/tpl.php:79
263
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
264
  msgid "Events"
265
  msgstr "Eventos"
@@ -273,7 +281,7 @@ msgstr "Eventos"
273
  msgid "Event"
274
  msgstr "Evento"
275
 
276
- #: app/features/events.php:134 app/features/mec.php:253
277
  msgid "Add Event"
278
  msgstr "Nuevo evento"
279
 
@@ -281,7 +289,7 @@ msgstr "Nuevo evento"
281
  msgid "Add New Event"
282
  msgstr "Añadir nuevo evento"
283
 
284
- #: app/features/events.php:136 app/features/ix.php:3175
285
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
286
  msgid "No events found!"
287
  msgstr "No hay eventos"
@@ -292,7 +300,7 @@ msgstr "Todos los eventos"
292
 
293
  #: app/features/events.php:138
294
  msgid "Edit Event"
295
- msgstr ""
296
 
297
  #: app/features/events.php:139
298
  msgid "View Event"
@@ -313,7 +321,7 @@ msgstr "No hay eventos en la papelera"
313
  #: app/features/mec/meta_boxes/search_form.php:292
314
  #: app/features/mec/meta_boxes/search_form.php:332
315
  #: app/features/mec/meta_boxes/search_form.php:379
316
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4197
317
  #: app/libraries/skins.php:711 app/skins/single/default.php:156
318
  #: app/skins/single/default.php:363 app/skins/single/m1.php:169
319
  #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
@@ -321,8 +329,8 @@ msgid "Category"
321
  msgstr "Categoría"
322
 
323
  #: app/features/events.php:153 app/features/fes/form.php:510
324
- #: app/features/mec.php:255 app/features/mec/meta_boxes/filter.php:70
325
- #: app/libraries/main.php:4196
326
  msgid "Categories"
327
  msgstr "Categorías"
328
 
@@ -331,79 +339,79 @@ msgstr "Categorías"
331
  #: app/features/speakers.php:67
332
  #, php-format
333
  msgid "All %s"
334
- msgstr ""
335
 
336
  #: app/features/events.php:164 app/features/labels.php:72
337
  #: app/features/locations.php:70 app/features/organizers.php:70
338
  #: app/features/speakers.php:68
339
  #, php-format
340
  msgid "Edit %s"
341
- msgstr ""
342
 
343
  #: app/features/events.php:165 app/features/labels.php:73
344
  #: app/features/locations.php:71 app/features/organizers.php:71
345
  #: app/features/speakers.php:69
346
  #, php-format
347
  msgid "View %s"
348
- msgstr ""
349
 
350
  #: app/features/events.php:166 app/features/labels.php:74
351
  #: app/features/locations.php:72 app/features/organizers.php:72
352
  #: app/features/speakers.php:70
353
  #, php-format
354
  msgid "Update %s"
355
- msgstr ""
356
 
357
  #: app/features/events.php:167 app/features/labels.php:75
358
  #: app/features/locations.php:73 app/features/organizers.php:73
359
  #: app/features/speakers.php:71
360
  #, php-format
361
  msgid "Add New %s"
362
- msgstr ""
363
 
364
  #: app/features/events.php:168 app/features/labels.php:76
365
  #: app/features/locations.php:74 app/features/organizers.php:74
366
  #: app/features/speakers.php:72
367
  #, php-format
368
  msgid "New %s Name"
369
- msgstr ""
370
 
371
  #: app/features/events.php:169 app/features/labels.php:77
372
  #: app/features/locations.php:75 app/features/organizers.php:75
373
  #: app/features/speakers.php:73
374
  #, php-format
375
  msgid "Popular %s"
376
- msgstr ""
377
 
378
  #: app/features/events.php:170 app/features/labels.php:78
379
  #: app/features/locations.php:76 app/features/organizers.php:76
380
  #: app/features/speakers.php:74
381
  #, php-format
382
  msgid "Search %s"
383
- msgstr ""
384
 
385
  #: app/features/events.php:192 app/features/events.php:210
386
  msgid "Category Icon"
387
- msgstr ""
388
 
389
  #: app/features/events.php:194 app/features/events.php:214
390
  msgid "Select icon"
391
- msgstr ""
392
 
393
  #: app/features/events.php:260
394
  msgid "Event Details"
395
  msgstr "Detalle de evento"
396
 
397
- #: app/features/events.php:296 app/features/events.php:1966
398
- #: app/features/events.php:2010 app/features/fes/form.php:471
399
  #: app/features/ix.php:2719 app/features/ix.php:2760
400
- #: app/features/mec/settings.php:873 app/libraries/main.php:4229
401
  #: app/widgets/single.php:103
402
  msgid "Event Cost"
403
  msgstr "Coste del evento"
404
 
405
  #: app/features/events.php:299 app/features/fes/form.php:474
406
- #: app/libraries/main.php:4230 app/skins/single/default.php:91
407
  #: app/skins/single/default.php:298 app/skins/single/m1.php:49
408
  #: app/skins/single/modern.php:184
409
  msgid "Cost"
@@ -411,11 +419,11 @@ msgstr "Coste"
411
 
412
  #: app/features/events.php:372
413
  msgid "Note for reviewer"
414
- msgstr ""
415
 
416
  #: app/features/events.php:379
417
  msgid "Guest Data"
418
- msgstr ""
419
 
420
  #: app/features/events.php:380 app/features/fes/form.php:433
421
  #: app/features/labels.php:177 app/features/organizers.php:268
@@ -424,30 +432,30 @@ msgstr ""
424
  msgid "Name"
425
  msgstr "Nombre"
426
 
427
- #: app/features/events.php:381 app/features/events.php:1249
428
  #: app/features/fes/form.php:429 app/features/mec/regform.php:137
429
  #: app/features/organizers.php:110 app/features/organizers.php:150
430
  #: app/features/profile/profile.php:93 app/features/speakers.php:119
431
- #: app/features/speakers.php:179 app/libraries/main.php:1080
432
- #: app/libraries/main.php:1161 app/libraries/main.php:2107
433
  #: app/libraries/notifications.php:560 app/modules/booking/steps/form.php:31
434
  #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
435
  #: app/skins/single/default.php:198 app/skins/single/default.php:405
436
  #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
437
  #: app/skins/single/modern.php:38
438
  msgid "Email"
439
- msgstr "Email"
440
 
441
  #: app/features/events.php:385 app/features/fes/form.php:223
442
  msgid "Date and Time"
443
  msgstr "Día y hora"
444
 
445
  #: app/features/events.php:389 app/features/events.php:393
446
- #: app/features/events.php:1787 app/features/events.php:1966
447
- #: app/features/events.php:2010 app/features/fes/form.php:227
448
  #: app/features/fes/form.php:231 app/features/ix.php:2719
449
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
450
- #: app/features/mec/dashboard.php:269
451
  #: app/features/mec/meta_boxes/display_options.php:42
452
  #: app/features/mec/meta_boxes/display_options.php:139
453
  #: app/features/mec/meta_boxes/display_options.php:235
@@ -459,46 +467,45 @@ msgstr "Día y hora"
459
  #: app/features/mec/meta_boxes/display_options.php:544
460
  #: app/features/mec/meta_boxes/display_options.php:590
461
  #: app/features/mec/meta_boxes/display_options.php:633
462
- #: app/features/mec/meta_boxes/display_options.php:799
463
- #: app/features/mec/meta_boxes/display_options.php:861
464
  msgid "Start Date"
465
  msgstr "Día de inicio"
466
 
467
  #: app/features/events.php:421 app/features/events.php:461
468
- #: app/features/events.php:866 app/features/events.php:884
469
- #: app/features/events.php:969 app/features/events.php:987
470
  #: app/features/fes/form.php:259 app/features/fes/form.php:299
471
  msgid "AM"
472
  msgstr "AM"
473
 
474
  #: app/features/events.php:422 app/features/events.php:462
475
- #: app/features/events.php:867 app/features/events.php:885
476
- #: app/features/events.php:970 app/features/events.php:988
477
  #: app/features/fes/form.php:260 app/features/fes/form.php:300
478
  msgid "PM"
479
  msgstr "PM"
480
 
481
  #: app/features/events.php:429 app/features/events.php:433
482
- #: app/features/events.php:1788 app/features/events.php:1966
483
- #: app/features/events.php:2010 app/features/fes/form.php:267
484
  #: app/features/fes/form.php:271 app/features/ix.php:2719
485
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
486
- #: app/features/mec/dashboard.php:270
487
  msgid "End Date"
488
  msgstr "Día final"
489
 
490
  #: app/features/events.php:468 app/features/fes/form.php:306
491
  msgid "All Day Event"
492
- msgstr "Todos los eventos de hoy"
493
 
494
  #: app/features/events.php:471 app/features/fes/form.php:309
495
  msgid "Hide Event Time"
496
  msgstr "Ocultar hora del evento"
497
 
498
  #: app/features/events.php:474 app/features/fes/form.php:312
499
- #, fuzzy
500
  msgid "Hide Event End Time"
501
- msgstr "Ocultar hora del evento"
502
 
503
  #: app/features/events.php:478 app/features/fes/form.php:316
504
  msgid "Time Comment"
@@ -509,8 +516,8 @@ msgid ""
509
  "It shows next to event time on calendar. You can insert Timezone etc. in "
510
  "this field."
511
  msgstr ""
512
- "Se muestra al lado de la hora del evento en el calendario. Puede insertar "
513
- "Zona horaria, etc. en este campo."
514
 
515
  #: app/features/events.php:485 app/features/fes/form.php:323
516
  msgid "Event Repeating"
@@ -521,7 +528,7 @@ msgid "Repeats"
521
  msgstr "Repeticiones"
522
 
523
  #: app/features/events.php:491 app/features/fes/form.php:329
524
- #: app/features/mec/dashboard.php:272 app/skins/full_calendar/tpl.php:71
525
  msgid "Daily"
526
  msgstr "Diariamente"
527
 
@@ -534,9 +541,8 @@ msgid "Every Weekend"
534
  msgstr "Cada fin de semana"
535
 
536
  #: app/features/events.php:494 app/features/fes/form.php:332
537
- #, fuzzy
538
  msgid "Certain Weekdays"
539
- msgstr "Cada día de la semana"
540
 
541
  #: app/features/events.php:495 app/features/fes/form.php:333
542
  #: app/skins/full_calendar/tpl.php:70
@@ -544,19 +550,18 @@ msgid "Weekly"
544
  msgstr "Semanal"
545
 
546
  #: app/features/events.php:496 app/features/fes/form.php:334
547
- #: app/features/mec/dashboard.php:273 app/skins/full_calendar/tpl.php:69
548
  msgid "Monthly"
549
  msgstr "Mensual"
550
 
551
  #: app/features/events.php:497 app/features/fes/form.php:335
552
- #: app/features/mec/dashboard.php:274 app/skins/full_calendar/tpl.php:68
553
  msgid "Yearly"
554
  msgstr "Anual"
555
 
556
  #: app/features/events.php:498 app/features/fes/form.php:336
557
- #, fuzzy
558
  msgid "Custom Days"
559
- msgstr "Custom Css"
560
 
561
  #: app/features/events.php:502 app/features/fes/form.php:340
562
  msgid "Repeat Interval"
@@ -567,326 +572,327 @@ msgid "Repeat interval"
567
  msgstr "Intervalo de repetición"
568
 
569
  #: app/features/events.php:506 app/features/fes/form.php:344
570
- #, fuzzy
571
  msgid "Week Days"
572
- msgstr "Semana %s"
573
 
574
  #: app/features/events.php:507 app/features/fes/form.php:345
575
  #: app/libraries/main.php:403
576
  msgid "Monday"
577
- msgstr ""
578
 
579
  #: app/features/events.php:508 app/features/fes/form.php:346
580
  #: app/libraries/main.php:403
581
  msgid "Tuesday"
582
- msgstr ""
583
 
584
  #: app/features/events.php:509 app/features/fes/form.php:347
585
  #: app/libraries/main.php:403
586
  msgid "Wednesday"
587
- msgstr ""
588
 
589
  #: app/features/events.php:510 app/features/fes/form.php:348
590
  #: app/libraries/main.php:403
591
  msgid "Thursday"
592
- msgstr ""
593
 
594
  #: app/features/events.php:511 app/features/fes/form.php:349
595
  #: app/libraries/main.php:403
596
  msgid "Friday"
597
- msgstr ""
598
 
599
  #: app/features/events.php:512 app/features/fes/form.php:350
600
  #: app/libraries/main.php:403
601
  msgid "Saturday"
602
- msgstr ""
603
 
604
  #: app/features/events.php:513 app/features/fes/form.php:351
605
  #: app/libraries/main.php:403
606
  msgid "Sunday"
607
- msgstr ""
608
 
609
- #: app/features/events.php:518 app/features/events.php:590
610
- #: app/features/fes/form.php:356 app/features/profile/profile.php:31
611
- #: app/libraries/main.php:1622 app/modules/booking/steps/tickets.php:22
612
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
613
- #: app/skins/single/default.php:262 app/skins/single/m1.php:16
614
- #: app/skins/single/modern.php:151
615
- msgid "Date"
616
- msgstr "Fecha"
 
 
 
 
617
 
618
- #: app/features/events.php:519 app/features/events.php:591
619
- #: app/features/events.php:667 app/features/events.php:722
620
- #: app/features/events.php:843 app/features/events.php:914
621
- #: app/features/events.php:1017 app/features/events.php:1068
622
- #: app/features/events.php:1149 app/features/fes/form.php:357
623
  msgid "Add"
624
  msgstr "Añadir"
625
 
626
- #: app/features/events.php:520 app/features/fes/form.php:358
627
  msgid "Add certain days to event occurrence dates."
628
- msgstr ""
629
 
630
- #: app/features/events.php:542 app/features/fes/form.php:380
631
  msgid "Ends Repeat"
632
- msgstr "Repetir finalización"
633
 
634
- #: app/features/events.php:546 app/features/fes/form.php:384
635
  msgid "Never"
636
  msgstr "Nunca"
637
 
638
- #: app/features/events.php:551 app/features/fes/form.php:389
639
  msgid "On"
640
  msgstr "On"
641
 
642
- #: app/features/events.php:558 app/features/fes/form.php:396
643
  msgid "After"
644
  msgstr "Después"
645
 
646
- #: app/features/events.php:560 app/features/fes/form.php:398
647
  msgid "Occurrences times"
648
- msgstr "Tiempo del evento"
649
 
650
- #: app/features/events.php:561 app/features/fes/form.php:399
651
  msgid ""
652
  "The event will finish after certain repeats. For example if you set it to "
653
  "10, the event will finish after 10 repeats."
654
  msgstr ""
655
- "El evento finalizará después de ciertas repeticiones. Por ejemplo, si lo "
656
- "establece en 10, el evento terminará después de 10 repeticiones."
657
 
658
- #: app/features/events.php:586
659
- #, fuzzy
660
  msgid "Exclude certain days"
661
- msgstr "Cada día de la semana"
 
 
 
 
 
 
 
 
 
662
 
663
- #: app/features/events.php:592
664
  msgid "Exclude certain days from event occurrence dates."
665
- msgstr ""
666
 
667
- #: app/features/events.php:636 app/libraries/render.php:428
668
  msgid "Day 1"
669
  msgstr ""
670
 
671
- #: app/features/events.php:649 app/features/mec/settings.php:927
672
  #: app/skins/single.php:246
673
  msgid "Hourly Schedule"
674
  msgstr "Programación horaria"
675
 
676
- #: app/features/events.php:652
677
  msgid "Add Day"
678
  msgstr ""
679
 
680
- #: app/features/events.php:653
681
  msgid ""
682
  "Add new days for schedule. For example if your event is multiple days, you "
683
  "can add a different schedule for each day!"
684
  msgstr ""
685
 
686
- #: app/features/events.php:659
687
  #, php-format
688
  msgid "Day %s"
689
  msgstr ""
690
 
691
- #: app/features/events.php:662 app/features/events.php:675
692
- #: app/features/events.php:695 app/features/events.php:717
693
- #: app/features/events.php:733 app/features/events.php:1155
694
- #: app/features/events.php:1177 app/features/events.php:1784
695
- #: app/features/events.php:1966 app/features/events.php:2010
696
  #: app/features/fes/form.php:216 app/features/ix.php:2719
697
- #: app/features/ix.php:2760 app/features/mec/settings.php:1189
698
- #: app/features/mec/settings.php:1209 app/features/mec/styling.php:199
699
  msgid "Title"
700
  msgstr "Titulo"
701
 
702
- #: app/features/events.php:664 app/features/events.php:677
703
- #: app/features/events.php:697 app/features/events.php:719
704
- #: app/features/events.php:735 app/features/events.php:909
705
- #: app/features/events.php:925 app/features/events.php:939
706
- #: app/features/events.php:1012 app/features/events.php:1029
707
- #: app/features/events.php:1088 app/features/events.php:1113
708
- #: app/features/events.php:1166 app/features/events.php:1188
709
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1138
710
- #: app/features/mec/settings.php:1161 app/features/mec/settings.php:1200
711
- #: app/features/mec/settings.php:1220 app/libraries/main.php:2086
712
- #: app/libraries/main.php:2115 app/libraries/main.php:2144
713
- #: app/libraries/main.php:2173 app/libraries/main.php:2195
714
- #: app/libraries/main.php:2226 app/libraries/main.php:2270
715
- #: app/libraries/main.php:2314 app/libraries/main.php:2361
716
- #: app/libraries/main.php:2399
717
  msgid "Remove"
718
  msgstr "Eliminar"
719
 
720
- #: app/features/events.php:668 app/features/events.php:723
721
  msgid "Add new hourly schedule row"
722
  msgstr "Añadir nueva línea programa horario"
723
 
724
- #: app/features/events.php:673 app/features/events.php:693
725
- #: app/features/events.php:731
726
  msgid "From e.g. 8:15"
727
  msgstr "Desde 8:15"
728
 
729
- #: app/features/events.php:674 app/features/events.php:694
730
- #: app/features/events.php:732
731
  msgid "To e.g. 8:45"
732
  msgstr "a 8:45"
733
 
734
- #: app/features/events.php:676 app/features/events.php:696
735
- #: app/features/events.php:734 app/features/events.php:890
736
- #: app/features/events.php:993
737
  msgid "Description"
738
  msgstr "Descripción"
739
 
740
- #: app/features/events.php:680 app/features/events.php:700
741
- #: app/features/events.php:738 app/features/fes/form.php:603
742
- #: app/features/mec.php:263 app/features/mec/settings.php:77
743
- #: app/features/mec/settings.php:921 app/features/speakers.php:57
744
- #: app/libraries/main.php:4204 app/modules/speakers/details.php:18
745
  msgid "Speakers"
746
  msgstr ""
747
 
748
- #: app/features/events.php:714 app/features/events.php:718
749
  msgid "Day :dd:"
750
  msgstr ""
751
 
752
- #: app/features/events.php:765 app/features/fes/form.php:448
753
- #: app/features/mec/settings.php:867
754
- #, fuzzy
755
  msgid "Event Links"
756
- msgstr "Lugar del evento"
757
 
758
- #: app/features/events.php:767 app/features/fes/form.php:450
759
- #: app/libraries/main.php:4227
760
- #, fuzzy
761
  msgid "Event Link"
762
- msgstr "Lugar del evento"
763
 
764
- #: app/features/events.php:768 app/features/events.php:773
765
  #: app/features/fes/form.php:451 app/features/fes/form.php:456
766
  msgid "eg. http://yoursite.com/your-event"
767
- msgstr "ej. http://yoursite.com/tu-evento"
768
 
769
- #: app/features/events.php:769 app/features/fes/form.php:452
770
- #, fuzzy
771
  msgid ""
772
  "If you fill it, it will be replaced instead of default event page link. "
773
  "Insert full link including http(s)://"
774
- msgstr "Insertar vínculo completo incluyendo http(s)://"
 
 
775
 
776
- #: app/features/events.php:772 app/features/fes/form.php:455
777
- #: app/libraries/main.php:4228 app/skins/single/default.php:105
778
  #: app/skins/single/default.php:312 app/skins/single/m1.php:190
779
  #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
780
  #: app/widgets/single.php:107
781
  msgid "More Info"
782
- msgstr ""
783
 
784
- #: app/features/events.php:774 app/features/fes/form.php:457
785
- #, fuzzy
786
  msgid "More Information"
787
- msgstr "Confirmar"
788
 
789
- #: app/features/events.php:776 app/features/fes/form.php:459
790
  msgid "Current Window"
791
- msgstr ""
792
 
793
- #: app/features/events.php:777 app/features/fes/form.php:460
794
  msgid "New Window"
795
- msgstr ""
796
 
797
- #: app/features/events.php:779 app/features/fes/form.php:462
798
- #, fuzzy
799
  msgid ""
800
  "If you fill it, it will be shown in event details page as an optional link. "
801
  "Insert full link including http(s)://"
802
- msgstr "Insertar vínculo completo incluyendo http(s)://"
 
 
803
 
804
- #: app/features/events.php:810
805
  msgid "Total booking limits"
806
- msgstr "Límite total de booking"
807
 
808
- #: app/features/events.php:815 app/features/events.php:907
809
- #: app/features/events.php:1010 app/modules/booking/default.php:81
810
- #: app/modules/booking/steps/tickets.php:40 app/skins/available_spot/tpl.php:99
 
811
  msgid "Unlimited"
812
  msgstr "Ilimitado"
813
 
814
- #: app/features/events.php:817
815
  msgid "100"
816
  msgstr "100"
817
 
818
- #: app/features/events.php:835 app/libraries/book.php:60
819
- #: app/libraries/main.php:4232 app/modules/booking/steps/tickets.php:40
820
  msgid "Tickets"
821
  msgstr "Tickets"
822
 
823
- #: app/features/events.php:838
824
  msgid ""
825
  "You're translating an event so MEC will use the original event for tickets "
826
  "and booking. You can only translate the ticket name and description. Please "
827
  "define exact tickets that you defined in the original event here."
828
  msgstr ""
 
 
 
 
829
 
830
- #: app/features/events.php:849 app/features/events.php:952
831
  msgid "Ticket Name"
832
  msgstr "Nombre del ticket"
833
 
834
- #: app/features/events.php:853 app/features/events.php:956
835
- #: app/features/events.php:1966 app/features/events.php:2010
836
  #: app/features/ix.php:2719 app/features/ix.php:2760
837
  msgid "Start Time"
838
- msgstr ""
839
 
840
- #: app/features/events.php:871 app/features/events.php:974
841
- #: app/features/events.php:1966 app/features/events.php:2010
842
  #: app/features/ix.php:2719 app/features/ix.php:2760
843
  msgid "End Time"
844
- msgstr ""
845
 
846
- #: app/features/events.php:894 app/features/events.php:923
847
- #: app/features/events.php:937 app/features/events.php:997
848
- #: app/features/events.php:1027 app/features/events.php:1159
849
- #: app/features/events.php:1181 app/features/mec/settings.php:1193
850
- #: app/features/mec/settings.php:1213
851
  msgid "Price"
852
  msgstr "Precio"
853
 
854
- #: app/features/events.php:895 app/features/events.php:998
855
  msgid "Insert 0 for free ticket. Only numbers please."
856
- msgstr "Introduzca un 0 para ticket gratuito. Usar únicamente números."
857
 
858
- #: app/features/events.php:898 app/features/events.php:1001
859
  msgid "Price Label"
860
  msgstr "Etiqueta de precio"
861
 
862
- #: app/features/events.php:899 app/features/events.php:1002
863
  msgid "For showing on website. e.g. $15"
864
  msgstr "Para mostrar en la web. Ej. 15€"
865
 
866
- #: app/features/events.php:903 app/features/events.php:1006
867
  msgid "Available Tickets"
868
  msgstr "Tickets disponibles"
869
 
870
- #: app/features/events.php:913 app/features/events.php:1016
871
- #, fuzzy
872
- #| msgid "Price Label"
873
  msgid "Price per Date"
874
- msgstr "Etiqueta de precio"
875
-
876
- #: app/features/events.php:921 app/features/events.php:935
877
- #: app/features/events.php:1025 app/features/ix/import_f_calendar.php:36
878
- #: app/features/ix/import_g_calendar.php:51
879
- #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
880
- msgid "Start"
881
  msgstr ""
882
 
883
- #: app/features/events.php:922 app/features/events.php:936
884
- #: app/features/events.php:1026
885
- msgid "End"
886
- msgstr ""
887
-
888
- #: app/features/events.php:924 app/features/events.php:938
889
- #: app/features/events.php:1028 app/features/labels.php:60
890
  #: app/features/mec/meta_boxes/display_options.php:660
891
  #: app/features/mec/meta_boxes/search_form.php:52
892
  #: app/features/mec/meta_boxes/search_form.php:99
@@ -900,100 +906,96 @@ msgstr ""
900
  msgid "Label"
901
  msgstr "Etiqueta"
902
 
903
- #: app/features/events.php:1058
904
  msgid "Fees"
905
  msgstr "Tasas"
906
 
907
- #: app/features/events.php:1063 app/features/events.php:1144
908
- #: app/features/events.php:1219
909
  msgid "Inherit from global options"
910
  msgstr "Heredar opciones globales"
911
 
912
- #: app/features/events.php:1074 app/features/events.php:1099
913
- #: app/features/mec/settings.php:1124 app/features/mec/settings.php:1147
914
  msgid "Fee Title"
915
- msgstr "Tarifa título"
916
 
917
- #: app/features/events.php:1078 app/features/events.php:1103
918
- #: app/features/mec/settings.php:1128 app/features/mec/settings.php:1151
919
  msgid "Amount"
920
  msgstr "Cantidad"
921
 
922
- #: app/features/events.php:1079 app/features/events.php:1104
923
- #: app/features/mec/settings.php:1129 app/features/mec/settings.php:1152
924
  msgid ""
925
  "Fee amount, considered as fixed amount if you set the type to amount "
926
  "otherwise considered as percentage"
927
  msgstr ""
928
- "Importe de la cuota, considerado como cantidad fija si se establece el tipo "
929
- "de cantidad considerada de otra manera como porcentaje."
930
 
931
- #: app/features/events.php:1083 app/features/events.php:1108
932
- #: app/features/mec/settings.php:1133 app/features/mec/settings.php:1156
933
  msgid "Percent"
934
  msgstr "Porcentaje"
935
 
936
- #: app/features/events.php:1084 app/features/events.php:1109
937
- #: app/features/mec/settings.php:1134 app/features/mec/settings.php:1157
938
  msgid "Amount (Per Ticket)"
939
- msgstr ""
940
 
941
- #: app/features/events.php:1085 app/features/events.php:1110
942
- #: app/features/mec/settings.php:1135 app/features/mec/settings.php:1158
943
  msgid "Amount (Per Booking)"
944
- msgstr ""
945
 
946
- #: app/features/events.php:1139 app/features/mec/settings.php:945
947
  msgid "Ticket Variations / Options"
948
  msgstr ""
949
 
950
- #: app/features/events.php:1160 app/features/events.php:1182
951
- #: app/features/mec/settings.php:1194 app/features/mec/settings.php:1214
952
- #, fuzzy
953
- #| msgid "Option"
954
  msgid "Option Price"
955
- msgstr "Opción"
956
 
957
- #: app/features/events.php:1163 app/features/events.php:1185
958
- #: app/features/mec/settings.php:1197 app/features/mec/settings.php:1217
959
- #, fuzzy
960
- #| msgid "Maximum events"
961
  msgid "Maximum Per Ticket"
962
- msgstr "Máximo de eventos"
963
 
964
- #: app/features/events.php:1164 app/features/events.php:1186
965
- #: app/features/mec/settings.php:1198 app/features/mec/settings.php:1218
966
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
967
  msgstr ""
968
 
969
- #: app/features/events.php:1248 app/features/mec/regform.php:136
970
- #: app/libraries/main.php:2078
971
  msgid "Text"
972
  msgstr "Texto"
973
 
974
- #: app/features/events.php:1250 app/features/mec/regform.php:138
975
  #: app/features/organizers.php:102 app/features/organizers.php:146
976
  #: app/features/speakers.php:111 app/features/speakers.php:175
977
- #: app/features/speakers.php:244 app/libraries/main.php:2136
978
  msgid "Tel"
979
  msgstr "Tel"
980
 
981
- #: app/features/events.php:1251 app/features/mec/regform.php:139
982
- #: app/libraries/main.php:2165
983
  msgid "Textarea"
984
  msgstr "Área de texto"
985
 
986
- #: app/features/events.php:1252 app/features/mec/regform.php:140
987
- #: app/libraries/main.php:2218
988
  msgid "Checkboxes"
989
  msgstr "Checkboxes"
990
 
991
- #: app/features/events.php:1253 app/features/mec/regform.php:141
992
- #: app/libraries/main.php:2262
993
  msgid "Radio Buttons"
994
  msgstr "Botón tipo radio"
995
 
996
- #: app/features/events.php:1254 app/features/mec/meta_boxes/search_form.php:34
997
  #: app/features/mec/meta_boxes/search_form.php:41
998
  #: app/features/mec/meta_boxes/search_form.php:48
999
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1039,43 +1041,43 @@ msgstr "Botón tipo radio"
1039
  #: app/features/mec/meta_boxes/search_form.php:443
1040
  #: app/features/mec/meta_boxes/search_form.php:450
1041
  #: app/features/mec/meta_boxes/search_form.php:457
1042
- #: app/features/mec/regform.php:142 app/libraries/main.php:2306
1043
  msgid "Dropdown"
1044
  msgstr "Desplegable"
1045
 
1046
- #: app/features/events.php:1255 app/features/mec/regform.php:143
1047
- #: app/libraries/main.php:2353
1048
  msgid "Agreement"
1049
- msgstr ""
1050
 
1051
- #: app/features/events.php:1256 app/features/mec/regform.php:144
1052
- #: app/libraries/main.php:2194
1053
  msgid "Paragraph"
1054
  msgstr "Párrafo"
1055
 
1056
- #: app/features/events.php:1730 app/features/events.php:1745
1057
- #: app/features/events.php:1759
1058
  #, php-format
1059
  msgid "Show all %s"
1060
- msgstr ""
1061
 
1062
- #: app/features/events.php:1730
1063
  msgid "labels"
1064
  msgstr "etiquetas"
1065
 
1066
- #: app/features/events.php:1745
1067
  msgid "locations"
1068
- msgstr ""
1069
 
1070
- #: app/features/events.php:1759
1071
  msgid "organizers"
1072
- msgstr ""
1073
 
1074
- #: app/features/events.php:1785 app/features/events.php:1966
1075
- #: app/features/events.php:2010 app/features/ix.php:2719
1076
  #: app/features/ix.php:2760 app/features/locations.php:58
1077
  #: app/features/locations.php:229 app/features/locations.php:281
1078
- #: app/features/locations.php:283 app/features/mec/dashboard.php:106
1079
  #: app/features/mec/meta_boxes/display_options.php:661
1080
  #: app/features/mec/meta_boxes/search_form.php:38
1081
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1085,18 +1087,17 @@ msgstr ""
1085
  #: app/features/mec/meta_boxes/search_form.php:299
1086
  #: app/features/mec/meta_boxes/search_form.php:339
1087
  #: app/features/mec/meta_boxes/search_form.php:386
1088
- #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1616
1089
- #: app/libraries/main.php:4201 app/libraries/skins.php:737
1090
  #: app/skins/single/default.php:141 app/skins/single/default.php:348
1091
  #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1092
  #: app/skins/single/modern.php:83
1093
  msgid "Location"
1094
  msgstr "Localización"
1095
 
1096
- #: app/features/events.php:1786 app/features/events.php:1966
1097
- #: app/features/events.php:2010 app/features/ix.php:2719
1098
- #: app/features/ix.php:2760 app/features/mec/dashboard.php:113
1099
- #: app/features/mec/meta_boxes/display_options.php:662
1100
  #: app/features/mec/meta_boxes/search_form.php:45
1101
  #: app/features/mec/meta_boxes/search_form.php:92
1102
  #: app/features/mec/meta_boxes/search_form.php:139
@@ -1108,165 +1109,161 @@ msgstr "Localización"
1108
  #: app/features/mec/meta_boxes/search_form.php:440
1109
  #: app/features/organizers.php:58 app/features/organizers.php:199
1110
  #: app/features/organizers.php:255 app/features/organizers.php:257
1111
- #: app/libraries/main.php:4203 app/libraries/skins.php:763
1112
  #: app/skins/single/default.php:181 app/skins/single/default.php:388
1113
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1114
  #: app/skins/single/modern.php:21
1115
  msgid "Organizer"
1116
  msgstr "Organizador"
1117
 
1118
- #: app/features/events.php:1790
1119
  msgid "Repeat"
1120
  msgstr "Repetir"
1121
 
1122
- #: app/features/events.php:1791
1123
  msgid "Author"
1124
  msgstr "Autor"
1125
 
1126
- #: app/features/events.php:1901 app/features/events.php:1902
1127
  msgid "iCal Export"
1128
  msgstr "Exportar iCal"
1129
 
1130
- #: app/features/events.php:1904 app/features/events.php:1905
1131
  msgid "CSV Export"
1132
  msgstr "Exportar CSV"
1133
 
1134
- #: app/features/events.php:1907 app/features/events.php:1908
1135
  msgid "MS Excel Export"
1136
  msgstr "Exportar Excel"
1137
 
1138
- #: app/features/events.php:1910 app/features/events.php:1911
1139
  msgid "XML Export"
1140
- msgstr ""
1141
 
1142
- #: app/features/events.php:1913 app/features/events.php:1914
1143
  msgid "JSON Export"
1144
- msgstr ""
1145
 
1146
- #: app/features/events.php:1916 app/features/events.php:1917
1147
  msgid "Duplicate"
1148
- msgstr ""
1149
 
1150
- #: app/features/events.php:1966 app/features/events.php:2010
1151
  #: app/features/ix.php:2719 app/features/ix.php:2760
1152
  #: app/features/labels.php:176 app/features/locations.php:228
1153
  #: app/features/organizers.php:198 app/features/speakers.php:241
1154
  msgid "ID"
1155
  msgstr "ID"
1156
 
1157
- #: app/features/events.php:1966 app/features/events.php:2010
1158
  #: app/features/ix.php:2719 app/features/ix.php:2760
1159
  msgid "Link"
1160
- msgstr ""
1161
 
1162
- #: app/features/events.php:1966 app/features/events.php:2010
1163
  #, php-format
1164
  msgid "%s Tel"
1165
- msgstr ""
1166
 
1167
- #: app/features/events.php:1966 app/features/events.php:2010
1168
  #, php-format
1169
  msgid "%s Email"
1170
- msgstr ""
1171
 
1172
  #: app/features/fes.php:83
1173
  #, php-format
1174
  msgid "Please %s/%s in order to submit new events."
1175
- msgstr ""
1176
 
1177
  #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1178
  msgid "Login"
1179
- msgstr ""
1180
 
1181
  #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1182
  msgid "Register"
1183
- msgstr ""
1184
 
1185
  #: app/features/fes.php:96
1186
  msgid "Sorry! Selected post is not an event."
1187
- msgstr ""
1188
 
1189
  #: app/features/fes.php:107 app/features/fes.php:146
1190
  msgid "Sorry! You don't have access to modify this event."
1191
- msgstr ""
1192
 
1193
  #: app/features/fes.php:161
1194
  #, php-format
1195
  msgid "Please %s/%s in order to manage events."
1196
- msgstr ""
1197
 
1198
  #: app/features/fes.php:191
1199
- #, fuzzy
1200
  msgid "The event removed!"
1201
- msgstr "No hay eventos!"
1202
 
1203
  #: app/features/fes.php:226
1204
  msgid "The image is uploaded!"
1205
- msgstr ""
1206
 
1207
  #: app/features/fes.php:252
1208
  msgid "Captcha is invalid! Please try again."
1209
- msgstr ""
1210
 
1211
  #: app/features/fes.php:264
1212
  msgid "Please fill event title field!"
1213
- msgstr ""
1214
 
1215
  #: app/features/fes.php:795
1216
  msgid "The event submitted. It will publish as soon as possible."
1217
- msgstr ""
1218
 
1219
  #: app/features/fes.php:796
1220
  msgid "The event published."
1221
- msgstr ""
1222
 
1223
  #: app/features/fes/form.php:159
1224
  msgid "Go back to events list."
1225
- msgstr ""
1226
 
1227
  #: app/features/fes/form.php:409
1228
  msgid "Note to reviewer"
1229
- msgstr ""
1230
 
1231
  #: app/features/fes/form.php:427
1232
  msgid "User Data"
1233
- msgstr ""
1234
 
1235
  #: app/features/fes/form.php:430
1236
  msgid "eg. yourname@gmail.com"
1237
- msgstr ""
1238
 
1239
  #: app/features/fes/form.php:434 app/features/organizers.php:269
1240
  msgid "eg. John Smith"
1241
  msgstr "ej. John Smith"
1242
 
1243
- #: app/features/fes/form.php:488 app/features/mec/settings.php:879
1244
- #, fuzzy
1245
  msgid "Featured Image"
1246
- msgstr "evento destacado"
1247
 
1248
  #: app/features/fes/form.php:493
1249
- #, fuzzy
1250
  msgid "Remove Image"
1251
  msgstr "Eliminar imagen"
1252
 
1253
  #: app/features/fes/form.php:535 app/features/labels.php:61
1254
- #: app/features/labels.php:220 app/features/mec.php:256
1255
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4198
1256
  #: app/skins/single/default.php:120 app/skins/single/default.php:327
1257
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1258
  msgid "Labels"
1259
  msgstr "Etiquetas"
1260
 
1261
- #: app/features/fes/form.php:580 app/features/mec.php:254
1262
  #: app/features/mec/meta_boxes/filter.php:138
1263
  msgid "Tags"
1264
  msgstr "Tags"
1265
 
1266
  #: app/features/fes/form.php:582
1267
- #, fuzzy
1268
  msgid "Insert your desired tags, comma separated."
1269
- msgstr "Insertar sus etiquetas deseadas separados por comas."
1270
 
1271
  #: app/features/fes/form.php:618
1272
  msgid "Submit"
@@ -1274,66 +1271,66 @@ msgstr "Enviar"
1274
 
1275
  #: app/features/fes/list.php:21
1276
  msgid "Click again to remove!"
1277
- msgstr ""
1278
 
1279
  #: app/features/fes/list.php:64 app/features/fes/list.php:78
1280
- #, fuzzy
1281
  msgid "Add new"
1282
- msgstr "Nueva tasa"
1283
 
1284
  #: app/features/fes/list.php:70
1285
- #, fuzzy
1286
  msgid "View"
1287
- msgstr "Ver mapa"
1288
 
1289
  #: app/features/fes/list.php:78
1290
- #, fuzzy, php-format
1291
  msgid "No events found! %s"
1292
- msgstr "No hay eventos"
1293
 
1294
  #: app/features/ix.php:107
1295
  msgid "MEC - Import / Export"
1296
- msgstr ""
1297
 
1298
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1299
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1300
  #: app/features/mec/notifications.php:76 app/features/mec/regform.php:75
1301
- #: app/features/mec/settings.php:254 app/features/mec/styles.php:77
1302
  #: app/features/mec/styling.php:104 app/features/mec/support.php:73
1303
  msgid "Import / Export"
1304
- msgstr ""
1305
 
1306
  #: app/features/ix.php:198
1307
  msgid "Please upload the feed file."
1308
- msgstr ""
1309
 
1310
  #: app/features/ix.php:201
1311
  msgid "The file type should be XML or ICS."
1312
- msgstr ""
1313
 
1314
  #: app/features/ix.php:210
1315
  msgid "An error occurred during the file upload! Please check permissions!"
1316
  msgstr ""
 
 
1317
 
1318
  #: app/features/ix.php:218
1319
  msgid "The events are imported successfully!"
1320
- msgstr ""
1321
 
1322
  #: app/features/ix.php:756
1323
  msgid "Third Party plugin is not installed and activated!"
1324
- msgstr ""
1325
 
1326
  #: app/features/ix.php:781
1327
  msgid "Third Party plugin is invalid!"
1328
- msgstr ""
1329
 
1330
  #: app/features/ix.php:1926 app/features/ix.php:1984
1331
  msgid "Both of API key and Calendar ID are required!"
1332
- msgstr ""
1333
 
1334
- #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3182
1335
  msgid "Please select some events to import!"
1336
- msgstr ""
1337
 
1338
  #: app/features/ix.php:2340 app/features/ix.php:2403
1339
  msgid "Both of API key and Group URL are required!"
@@ -1345,76 +1342,80 @@ msgstr ""
1345
 
1346
  #: app/features/ix.php:2719 app/features/ix.php:2760
1347
  msgid "Organizer Tel"
1348
- msgstr ""
1349
 
1350
  #: app/features/ix.php:2719 app/features/ix.php:2760
1351
  msgid "Organizer Email"
1352
- msgstr ""
1353
 
1354
  #: app/features/ix.php:2841
1355
  msgid "All of Client
1
+ # Translation of Plugins - Modern Events Calendar Lite - Stable (latest release) in Spanish (Spain)
2
+ # This file is distributed under the same license as the Plugins - Modern Events Calendar Lite - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
+ "release)\n"
7
+ "POT-Creation-Date: 2019-03-17 15:03+0330\n"
8
+ "PO-Revision-Date: 2019-03-17 15:03+0330\n"
9
+ "Last-Translator: \n"
10
  "Language-Team: \n"
11
+ "Language: es\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
  "X-Generator: Poedit 2.0.1\n"
 
 
 
 
 
 
 
 
17
 
18
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
19
  #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
20
+ #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
21
  msgid "Modern Events Calendar"
22
+ msgstr "Modern Events Calendar"
23
 
24
  #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:217
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:326
29
+ #: app/features/mec.php:355 app/features/mec.php:381
30
  msgid "Shortcode"
31
  msgstr "Shortcode"
32
 
33
  #: app/addons/KC.php:78 app/addons/VC.php:73
 
34
  msgid "Select from predefined shortcodes"
35
+ msgstr "Seleccionar desde shortcodes predefinidos"
36
 
37
  #: app/addons/elementor/shortcode.php:34
 
 
38
  msgid "Modern Events Calendar (MEC)"
39
+ msgstr "Modern Events Calendar (MEC)"
40
 
41
  #: app/addons/elementor/shortcode.php:78
 
 
42
  msgid "General"
43
+ msgstr "General"
44
 
45
  #: app/addons/elementor/shortcode.php:87
 
 
46
  msgid "Select Type"
47
+ msgstr "Seleccionar tipo"
48
 
49
  #: app/features/colors.php:50 app/features/fes/form.php:558
50
+ #: app/features/mec/settings.php:1007
51
  msgid "Event Color"
52
  msgstr "Color del evento"
53
 
54
+ #: app/features/contextual.php:55 app/features/mec.php:312
55
  #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
56
  #: app/features/mec/messages.php:24 app/features/mec/notifications.php:23
57
+ #: app/features/mec/regform.php:24 app/features/mec/settings.php:41
58
  #: app/features/mec/styles.php:24 app/features/mec/styling.php:51
59
+ #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
60
  msgid "Settings"
61
  msgstr "Ajustes"
62
 
63
+ #: app/features/contextual.php:62 app/features/events.php:1215
64
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
65
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
66
  #: app/features/mec/regform.php:32 app/features/mec/regform.php:95
67
+ #: app/features/mec/settings.php:204 app/features/mec/styles.php:33
68
  #: app/features/mec/styling.php:60 app/features/mec/support.php:29
 
69
  msgid "Booking Form"
70
+ msgstr "Formulario de Reservas"
71
 
72
  #: app/features/contextual.php:63
73
  msgid ""
77
  "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
78
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
79
  msgstr ""
80
+ "<h2 class=\"dark-text\">Formulario de reservas<hr></h2>\n"
81
+ " <strong>Construye tu propio formulario de reservas "
82
+ "( Este formulario se repetirá para todos los asistentes ).</"
83
+ "strong> <iframe width=\"600\" height=\"300\" src=\"https://"
84
+ "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
85
+ "iframe>"
86
 
87
  #: app/features/contextual.php:70 app/features/mec/gateways.php:40
88
  #: app/features/mec/gateways.php:97 app/features/mec/ie.php:36
89
  #: app/features/mec/messages.php:40 app/features/mec/notifications.php:39
90
+ #: app/features/mec/regform.php:39 app/features/mec/settings.php:211
91
  #: app/features/mec/styles.php:40 app/features/mec/styling.php:67
92
  #: app/features/mec/support.php:36
93
  msgid "Payment Gateways"
94
+ msgstr "Pasarelas de pago"
95
 
96
  #: app/features/contextual.php:71
97
  msgid ""
99
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
100
  "\"0\" allowfullscreen></iframe>"
101
  msgstr ""
102
+ "<h2 class=\"dark-text\">Métodos de pago <hr></h2><iframe width=\"600\" "
103
+ "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
104
+ "\"0\" allowfullscreen></iframe>"
105
 
106
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
107
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
108
  #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:96
109
+ #: app/features/mec/regform.php:47 app/features/mec/settings.php:221
110
  #: app/features/mec/styles.php:49 app/features/mec/styling.php:76
111
  #: app/features/mec/support.php:45
112
  msgid "Notifications"
113
+ msgstr "Avisos"
114
 
115
  #: app/features/contextual.php:78
116
  msgid ""
119
  "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
120
  "ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
121
  msgstr ""
122
+ "<h2 class=\"dark-text\">Avisos <hr></h2><strong>Puedes editar tus mensajes a "
123
+ "continuación.</strong><strong>Módulo avisos MEC</strong><iframe width="
124
+ "\"600\" height=\"300\" src=\"https://www.youtube.com/embed/ZAA8zVewOj0\" "
125
+ "frameborder=\"0\" allowfullscreen></iframe>"
126
 
127
  #: app/features/contextual.php:88 app/features/ix/export.php:10
128
  #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
131
  #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
132
  #: app/features/ix/thirdparty.php:10
133
  msgid "Google Cal. Import"
134
+ msgstr "Importar de Google Calendar"
135
 
136
  #: app/features/contextual.php:89
137
  msgid ""
140
  "height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
141
  "\"0\" allowfullscreen></iframe>"
142
  msgstr ""
143
+ "<h2 class=\"dark-text\">Importar/Exportar<hr></h2><div class=\"big-"
144
+ "title2\"><strong>Importación calendario Google:</strong></div><iframe width="
145
+ "\"854\" height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" "
146
+ "frameborder=\"0\" allowfullscreen></iframe>"
147
 
148
  #: app/features/contextual.php:95 app/features/ix/export.php:11
149
  #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
152
  #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
153
  #: app/features/ix/thirdparty.php:11
154
  msgid "Google Cal. Export"
155
+ msgstr "Exportar a Google Calendar"
156
 
157
  #: app/features/contextual.php:96
158
  msgid ""
161
  "height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
162
  "\"0\" allowfullscreen></iframe>"
163
  msgstr ""
164
+ "<h2 class=\"dark-text\">Importar/Exportar<hr></h2><div class=\"big-"
165
+ "title2\"><strong>Exportación Cal. Google:</strong></div><iframe width="
166
+ "\"854\" height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" "
167
+ "frameborder=\"0\" allowfullscreen></iframe>"
168
 
169
  #: app/features/contextual.php:102 app/features/ix/export.php:12
170
  #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
173
  #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
174
  #: app/features/ix/thirdparty.php:12
175
  msgid "Facebook Cal. Import"
176
+ msgstr "Importar de Facebook Calendar"
177
 
178
  #: app/features/contextual.php:103
179
  msgid ""
182
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
183
  "\"0\" allowfullscreen></iframe>"
184
  msgstr ""
185
+ "<h2 class=\"dark-text\">Importar/Exportar<hr></h2><div class=\"big-"
186
+ "title2\"><strong>Importación calendario Facebook:</strong></div><iframe "
187
+ "width=\"854\" height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs"
188
+ "\" frameborder=\"0\" allowfullscreen></iframe>"
189
 
190
+ #: app/features/contextual.php:117 app/features/mec/settings.php:48
191
+ #: app/features/mec/settings.php:273
192
  msgid "General Options"
193
  msgstr "Opciones generales"
194
 
195
+ #: app/features/contextual.php:139 app/features/mec/settings.php:60
196
+ #: app/features/mec/settings.php:540
197
  msgid "Slugs/Permalinks"
198
+ msgstr "Enlaces permanentes"
199
 
200
+ #: app/features/contextual.php:152 app/features/mec/settings.php:66
201
+ #: app/features/mec/settings.php:560
202
  msgid "Event Details/Single Event Page"
203
+ msgstr "Detalles del Evento/Página de Evento Único"
204
 
205
+ #: app/features/contextual.php:166 app/features/mec/settings.php:72
206
+ #: app/features/mec/settings.php:601
207
  msgid "Currency Options"
208
  msgstr "Opciones de moneda"
209
 
210
+ #: app/features/contextual.php:182 app/features/mec/settings.php:84
211
+ #: app/features/mec/settings.php:668
212
  msgid "Google Maps Options"
213
  msgstr "Opciones de Google Maps"
214
 
215
+ #: app/features/contextual.php:244 app/features/mec/settings.php:90
216
+ #: app/features/mec/settings.php:742
 
217
  msgid "Google Recaptcha Options"
218
+ msgstr "Opciones de Google Recaptcha"
219
 
220
+ #: app/features/contextual.php:258 app/features/mec/settings.php:120
221
+ #: app/features/mec/settings.php:860
222
  msgid "Countdown Options"
223
  msgstr "Opciones de cuenta atrás"
224
 
225
+ #: app/features/contextual.php:268 app/features/mec/settings.php:126
226
+ #: app/features/mec/settings.php:881
227
  msgid "Social Networks"
228
  msgstr "Redes Sociales"
229
 
230
+ #: app/features/contextual.php:278 app/features/mec/settings.php:132
231
+ #: app/features/mec/settings.php:906
232
  msgid "Next Event Module"
233
+ msgstr "Módulo de Siguiente Evento"
234
 
235
+ #: app/features/contextual.php:286 app/features/mec/settings.php:138
236
+ #: app/features/mec/settings.php:934
237
  msgid "Frontend Event Submission"
238
+ msgstr "Presentación del evento Frontend"
239
 
240
+ #: app/features/contextual.php:298 app/features/events.php:581
241
+ #: app/features/mec/settings.php:150
 
242
  msgid "Exceptional Days"
243
+ msgstr "Días excepcionales"
244
 
245
  #: app/features/contextual.php:308 app/features/events.php:263
246
+ #: app/features/mec/settings.php:162 app/features/mec/settings.php:1108
247
  msgid "Booking"
248
  msgstr "Reserva"
249
 
250
+ #: app/features/contextual.php:318 app/features/mec/settings.php:168
251
+ #: app/features/mec/settings.php:1198
252
  msgid "Coupons"
253
  msgstr "Cupones"
254
 
255
+ #: app/features/contextual.php:326 app/features/mec/settings.php:186
256
+ #: app/features/mec/settings.php:1339
257
  msgid "BuddyPress Integration"
258
+ msgstr "Integración de BuddyPress"
259
 
260
+ #: app/features/contextual.php:334 app/features/mec/settings.php:192
261
+ #: app/features/mec/settings.php:1369
262
  msgid "Mailchimp Integration"
263
+ msgstr "Integración de MailChimp"
264
 
265
+ #: app/features/contextual.php:346
 
 
266
  msgid "MEC Activation"
267
+ msgstr "Activación MEC"
268
 
269
  #: app/features/events.php:132 app/features/ix/export.php:34
270
+ #: app/features/mec/dashboard.php:157 app/skins/daily_view/tpl.php:79
271
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
272
  msgid "Events"
273
  msgstr "Eventos"
281
  msgid "Event"
282
  msgstr "Evento"
283
 
284
+ #: app/features/events.php:134 app/features/mec.php:298
285
  msgid "Add Event"
286
  msgstr "Nuevo evento"
287
 
289
  msgid "Add New Event"
290
  msgstr "Añadir nuevo evento"
291
 
292
+ #: app/features/events.php:136 app/features/ix.php:3177
293
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:54
294
  msgid "No events found!"
295
  msgstr "No hay eventos"
300
 
301
  #: app/features/events.php:138
302
  msgid "Edit Event"
303
+ msgstr "Editar Evento"
304
 
305
  #: app/features/events.php:139
306
  msgid "View Event"
321
  #: app/features/mec/meta_boxes/search_form.php:292
322
  #: app/features/mec/meta_boxes/search_form.php:332
323
  #: app/features/mec/meta_boxes/search_form.php:379
324
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:4233
325
  #: app/libraries/skins.php:711 app/skins/single/default.php:156
326
  #: app/skins/single/default.php:363 app/skins/single/m1.php:169
327
  #: app/skins/single/m2.php:101 app/skins/single/modern.php:98
329
  msgstr "Categoría"
330
 
331
  #: app/features/events.php:153 app/features/fes/form.php:510
332
+ #: app/features/mec.php:300 app/features/mec/meta_boxes/filter.php:70
333
+ #: app/libraries/main.php:4232
334
  msgid "Categories"
335
  msgstr "Categorías"
336
 
339
  #: app/features/speakers.php:67
340
  #, php-format
341
  msgid "All %s"
342
+ msgstr "Todos %s"
343
 
344
  #: app/features/events.php:164 app/features/labels.php:72
345
  #: app/features/locations.php:70 app/features/organizers.php:70
346
  #: app/features/speakers.php:68
347
  #, php-format
348
  msgid "Edit %s"
349
+ msgstr "Editar %s"
350
 
351
  #: app/features/events.php:165 app/features/labels.php:73
352
  #: app/features/locations.php:71 app/features/organizers.php:71
353
  #: app/features/speakers.php:69
354
  #, php-format
355
  msgid "View %s"
356
+ msgstr "Ver %s"
357
 
358
  #: app/features/events.php:166 app/features/labels.php:74
359
  #: app/features/locations.php:72 app/features/organizers.php:72
360
  #: app/features/speakers.php:70
361
  #, php-format
362
  msgid "Update %s"
363
+ msgstr "Actualizar %s"
364
 
365
  #: app/features/events.php:167 app/features/labels.php:75
366
  #: app/features/locations.php:73 app/features/organizers.php:73
367
  #: app/features/speakers.php:71
368
  #, php-format
369
  msgid "Add New %s"
370
+ msgstr "Añadir nuevo %s"
371
 
372
  #: app/features/events.php:168 app/features/labels.php:76
373
  #: app/features/locations.php:74 app/features/organizers.php:74
374
  #: app/features/speakers.php:72
375
  #, php-format
376
  msgid "New %s Name"
377
+ msgstr "Nuevo %s Nombre"
378
 
379
  #: app/features/events.php:169 app/features/labels.php:77
380
  #: app/features/locations.php:75 app/features/organizers.php:75
381
  #: app/features/speakers.php:73
382
  #, php-format
383
  msgid "Popular %s"
384
+ msgstr "Popular %s"
385
 
386
  #: app/features/events.php:170 app/features/labels.php:78
387
  #: app/features/locations.php:76 app/features/organizers.php:76
388
  #: app/features/speakers.php:74
389
  #, php-format
390
  msgid "Search %s"
391
+ msgstr "Buscar %s"
392
 
393
  #: app/features/events.php:192 app/features/events.php:210
394
  msgid "Category Icon"
395
+ msgstr "Icono de categoría"
396
 
397
  #: app/features/events.php:194 app/features/events.php:214
398
  msgid "Select icon"
399
+ msgstr "Seleccionar icono"
400
 
401
  #: app/features/events.php:260
402
  msgid "Event Details"
403
  msgstr "Detalle de evento"
404
 
405
+ #: app/features/events.php:296 app/features/events.php:1984
406
+ #: app/features/events.php:2028 app/features/fes/form.php:471
407
  #: app/features/ix.php:2719 app/features/ix.php:2760
408
+ #: app/features/mec/settings.php:983 app/libraries/main.php:4265
409
  #: app/widgets/single.php:103
410
  msgid "Event Cost"
411
  msgstr "Coste del evento"
412
 
413
  #: app/features/events.php:299 app/features/fes/form.php:474
414
+ #: app/libraries/main.php:4266 app/skins/single/default.php:91
415
  #: app/skins/single/default.php:298 app/skins/single/m1.php:49
416
  #: app/skins/single/modern.php:184
417
  msgid "Cost"
419
 
420
  #: app/features/events.php:372
421
  msgid "Note for reviewer"
422
+ msgstr "Nota para el encargado"
423
 
424
  #: app/features/events.php:379
425
  msgid "Guest Data"
426
+ msgstr "Datos del invitado"
427
 
428
  #: app/features/events.php:380 app/features/fes/form.php:433
429
  #: app/features/labels.php:177 app/features/organizers.php:268
432
  msgid "Name"
433
  msgstr "Nombre"
434
 
435
+ #: app/features/events.php:381 app/features/events.php:1250
436
  #: app/features/fes/form.php:429 app/features/mec/regform.php:137
437
  #: app/features/organizers.php:110 app/features/organizers.php:150
438
  #: app/features/profile/profile.php:93 app/features/speakers.php:119
439
+ #: app/features/speakers.php:179 app/libraries/main.php:1082
440
+ #: app/libraries/main.php:1163 app/libraries/main.php:2134
441
  #: app/libraries/notifications.php:560 app/modules/booking/steps/form.php:31
442
  #: app/modules/booking/steps/form.php:32 app/skins/single.php:216
443
  #: app/skins/single/default.php:198 app/skins/single/default.php:405
444
  #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
445
  #: app/skins/single/modern.php:38
446
  msgid "Email"
447
+ msgstr "Correo electrónico"
448
 
449
  #: app/features/events.php:385 app/features/fes/form.php:223
450
  msgid "Date and Time"
451
  msgstr "Día y hora"
452
 
453
  #: app/features/events.php:389 app/features/events.php:393
454
+ #: app/features/events.php:1805 app/features/events.php:1984
455
+ #: app/features/events.php:2028 app/features/fes/form.php:227
456
  #: app/features/fes/form.php:231 app/features/ix.php:2719
457
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:38
458
+ #: app/features/mec/dashboard.php:298
459
  #: app/features/mec/meta_boxes/display_options.php:42
460
  #: app/features/mec/meta_boxes/display_options.php:139
461
  #: app/features/mec/meta_boxes/display_options.php:235
467
  #: app/features/mec/meta_boxes/display_options.php:544
468
  #: app/features/mec/meta_boxes/display_options.php:590
469
  #: app/features/mec/meta_boxes/display_options.php:633
470
+ #: app/features/mec/meta_boxes/display_options.php:800
471
+ #: app/features/mec/meta_boxes/display_options.php:869
472
  msgid "Start Date"
473
  msgstr "Día de inicio"
474
 
475
  #: app/features/events.php:421 app/features/events.php:461
476
+ #: app/features/events.php:867 app/features/events.php:885
477
+ #: app/features/events.php:970 app/features/events.php:988
478
  #: app/features/fes/form.php:259 app/features/fes/form.php:299
479
  msgid "AM"
480
  msgstr "AM"
481
 
482
  #: app/features/events.php:422 app/features/events.php:462
483
+ #: app/features/events.php:868 app/features/events.php:886
484
+ #: app/features/events.php:971 app/features/events.php:989
485
  #: app/features/fes/form.php:260 app/features/fes/form.php:300
486
  msgid "PM"
487
  msgstr "PM"
488
 
489
  #: app/features/events.php:429 app/features/events.php:433
490
+ #: app/features/events.php:1806 app/features/events.php:1984
491
+ #: app/features/events.php:2028 app/features/fes/form.php:267
492
  #: app/features/fes/form.php:271 app/features/ix.php:2719
493
  #: app/features/ix.php:2760 app/features/ix/import_g_calendar.php:44
494
+ #: app/features/mec/dashboard.php:299
495
  msgid "End Date"
496
  msgstr "Día final"
497
 
498
  #: app/features/events.php:468 app/features/fes/form.php:306
499
  msgid "All Day Event"
500
+ msgstr "Evento de todo el día"
501
 
502
  #: app/features/events.php:471 app/features/fes/form.php:309
503
  msgid "Hide Event Time"
504
  msgstr "Ocultar hora del evento"
505
 
506
  #: app/features/events.php:474 app/features/fes/form.php:312
 
507
  msgid "Hide Event End Time"
508
+ msgstr "Oculta la hora de finalización del evento"
509
 
510
  #: app/features/events.php:478 app/features/fes/form.php:316
511
  msgid "Time Comment"
516
  "It shows next to event time on calendar. You can insert Timezone etc. in "
517
  "this field."
518
  msgstr ""
519
+ "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
520
+ "horaria, etc en este campo."
521
 
522
  #: app/features/events.php:485 app/features/fes/form.php:323
523
  msgid "Event Repeating"
528
  msgstr "Repeticiones"
529
 
530
  #: app/features/events.php:491 app/features/fes/form.php:329
531
+ #: app/features/mec/dashboard.php:301 app/skins/full_calendar/tpl.php:71
532
  msgid "Daily"
533
  msgstr "Diariamente"
534
 
541
  msgstr "Cada fin de semana"
542
 
543
  #: app/features/events.php:494 app/features/fes/form.php:332
 
544
  msgid "Certain Weekdays"
545
+ msgstr "Ciertos días de la semana"
546
 
547
  #: app/features/events.php:495 app/features/fes/form.php:333
548
  #: app/skins/full_calendar/tpl.php:70
550
  msgstr "Semanal"
551
 
552
  #: app/features/events.php:496 app/features/fes/form.php:334
553
+ #: app/features/mec/dashboard.php:302 app/skins/full_calendar/tpl.php:69
554
  msgid "Monthly"
555
  msgstr "Mensual"
556
 
557
  #: app/features/events.php:497 app/features/fes/form.php:335
558
+ #: app/features/mec/dashboard.php:303 app/skins/full_calendar/tpl.php:68
559
  msgid "Yearly"
560
  msgstr "Anual"
561
 
562
  #: app/features/events.php:498 app/features/fes/form.php:336
 
563
  msgid "Custom Days"
564
+ msgstr "Días personalizados"
565
 
566
  #: app/features/events.php:502 app/features/fes/form.php:340
567
  msgid "Repeat Interval"
572
  msgstr "Intervalo de repetición"
573
 
574
  #: app/features/events.php:506 app/features/fes/form.php:344
 
575
  msgid "Week Days"
576
+ msgstr "Días de semana"
577
 
578
  #: app/features/events.php:507 app/features/fes/form.php:345
579
  #: app/libraries/main.php:403
580
  msgid "Monday"
581
+ msgstr "Lunes"
582
 
583
  #: app/features/events.php:508 app/features/fes/form.php:346
584
  #: app/libraries/main.php:403
585
  msgid "Tuesday"
586
+ msgstr "Martes"
587
 
588
  #: app/features/events.php:509 app/features/fes/form.php:347
589
  #: app/libraries/main.php:403
590
  msgid "Wednesday"
591
+ msgstr "Miércoles"
592
 
593
  #: app/features/events.php:510 app/features/fes/form.php:348
594
  #: app/libraries/main.php:403
595
  msgid "Thursday"
596
+ msgstr "Jueves"
597
 
598
  #: app/features/events.php:511 app/features/fes/form.php:349
599
  #: app/libraries/main.php:403
600
  msgid "Friday"
601
+ msgstr "Viernes"
602
 
603
  #: app/features/events.php:512 app/features/fes/form.php:350
604
  #: app/libraries/main.php:403
605
  msgid "Saturday"
606
+ msgstr "Sábado"
607
 
608
  #: app/features/events.php:513 app/features/fes/form.php:351
609
  #: app/libraries/main.php:403
610
  msgid "Sunday"
611
+ msgstr "Domingo"
612
 
613
+ #: app/features/events.php:518 app/features/events.php:922
614
+ #: app/features/events.php:936 app/features/events.php:1026
615
+ #: app/features/ix/import_f_calendar.php:42
616
+ #: app/features/ix/import_g_calendar.php:51
617
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
618
+ msgid "Start"
619
+ msgstr "Inicio"
620
+
621
+ #: app/features/events.php:519 app/features/events.php:923
622
+ #: app/features/events.php:937 app/features/events.php:1027
623
+ msgid "End"
624
+ msgstr ""
625
 
626
+ #: app/features/events.php:520 app/features/events.php:592
627
+ #: app/features/events.php:668 app/features/events.php:723
628
+ #: app/features/events.php:844 app/features/events.php:915
629
+ #: app/features/events.php:1018 app/features/events.php:1069
630
+ #: app/features/events.php:1150 app/features/fes/form.php:357
631
  msgid "Add"
632
  msgstr "Añadir"
633
 
634
+ #: app/features/events.php:521 app/features/fes/form.php:358
635
  msgid "Add certain days to event occurrence dates."
636
+ msgstr "Añade ciertos días a las fechas de ocurrencia del evento."
637
 
638
+ #: app/features/events.php:543 app/features/fes/form.php:380
639
  msgid "Ends Repeat"
640
+ msgstr "Finaliza la repetición"
641
 
642
+ #: app/features/events.php:547 app/features/fes/form.php:384
643
  msgid "Never"
644
  msgstr "Nunca"
645
 
646
+ #: app/features/events.php:552 app/features/fes/form.php:389
647
  msgid "On"
648
  msgstr "On"
649
 
650
+ #: app/features/events.php:559 app/features/fes/form.php:396
651
  msgid "After"
652
  msgstr "Después"
653
 
654
+ #: app/features/events.php:561 app/features/fes/form.php:398
655
  msgid "Occurrences times"
656
+ msgstr "Ocurrencias del evento"
657
 
658
+ #: app/features/events.php:562 app/features/fes/form.php:399
659
  msgid ""
660
  "The event will finish after certain repeats. For example if you set it to "
661
  "10, the event will finish after 10 repeats."
662
  msgstr ""
663
+ "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
664
+ "estableces en 10, el evento terminará después de 10 repeticiones."
665
 
666
+ #: app/features/events.php:587
 
667
  msgid "Exclude certain days"
668
+ msgstr "Excluir ciertos días"
669
+
670
+ #: app/features/events.php:591 app/features/fes/form.php:356
671
+ #: app/features/profile/profile.php:31 app/libraries/main.php:1649
672
+ #: app/modules/booking/steps/tickets.php:22
673
+ #: app/modules/next-event/details.php:86 app/skins/single/default.php:55
674
+ #: app/skins/single/default.php:262 app/skins/single/m1.php:16
675
+ #: app/skins/single/modern.php:151
676
+ msgid "Date"
677
+ msgstr "Fecha"
678
 
679
+ #: app/features/events.php:593
680
  msgid "Exclude certain days from event occurrence dates."
681
+ msgstr "Excluye ciertos días de las fechas de ocurrencia del evento."
682
 
683
+ #: app/features/events.php:637 app/libraries/render.php:454
684
  msgid "Day 1"
685
  msgstr ""
686
 
687
+ #: app/features/events.php:650 app/features/mec/settings.php:1037
688
  #: app/skins/single.php:246
689
  msgid "Hourly Schedule"
690
  msgstr "Programación horaria"
691
 
692
+ #: app/features/events.php:653
693
  msgid "Add Day"
694
  msgstr ""
695
 
696
+ #: app/features/events.php:654
697
  msgid ""
698
  "Add new days for schedule. For example if your event is multiple days, you "
699
  "can add a different schedule for each day!"
700
  msgstr ""
701
 
702
+ #: app/features/events.php:660
703
  #, php-format
704
  msgid "Day %s"
705
  msgstr ""
706
 
707
+ #: app/features/events.php:663 app/features/events.php:676
708
+ #: app/features/events.php:696 app/features/events.php:718
709
+ #: app/features/events.php:734 app/features/events.php:1156
710
+ #: app/features/events.php:1178 app/features/events.php:1802
711
+ #: app/features/events.php:1984 app/features/events.php:2028
712
  #: app/features/fes/form.php:216 app/features/ix.php:2719
713
+ #: app/features/ix.php:2760 app/features/mec/settings.php:1299
714
+ #: app/features/mec/settings.php:1319 app/features/mec/styling.php:199
715
  msgid "Title"
716
  msgstr "Titulo"
717
 
718
+ #: app/features/events.php:665 app/features/events.php:678
719
+ #: app/features/events.php:698 app/features/events.php:720
720
+ #: app/features/events.php:736 app/features/events.php:910
721
+ #: app/features/events.php:926 app/features/events.php:940
722
+ #: app/features/events.php:1013 app/features/events.php:1030
723
+ #: app/features/events.php:1089 app/features/events.php:1114
724
+ #: app/features/events.php:1167 app/features/events.php:1189
725
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1248
726
+ #: app/features/mec/settings.php:1271 app/features/mec/settings.php:1310
727
+ #: app/features/mec/settings.php:1330 app/libraries/main.php:2113
728
+ #: app/libraries/main.php:2142 app/libraries/main.php:2171
729
+ #: app/libraries/main.php:2200 app/libraries/main.php:2222
730
+ #: app/libraries/main.php:2253 app/libraries/main.php:2297
731
+ #: app/libraries/main.php:2341 app/libraries/main.php:2388
732
+ #: app/libraries/main.php:2426
733
  msgid "Remove"
734
  msgstr "Eliminar"
735
 
736
+ #: app/features/events.php:669 app/features/events.php:724
737
  msgid "Add new hourly schedule row"
738
  msgstr "Añadir nueva línea programa horario"
739
 
740
+ #: app/features/events.php:674 app/features/events.php:694
741
+ #: app/features/events.php:732
742
  msgid "From e.g. 8:15"
743
  msgstr "Desde 8:15"
744
 
745
+ #: app/features/events.php:675 app/features/events.php:695
746
+ #: app/features/events.php:733
747
  msgid "To e.g. 8:45"
748
  msgstr "a 8:45"
749
 
750
+ #: app/features/events.php:677 app/features/events.php:697
751
+ #: app/features/events.php:735 app/features/events.php:891
752
+ #: app/features/events.php:994
753
  msgid "Description"
754
  msgstr "Descripción"
755
 
756
+ #: app/features/events.php:681 app/features/events.php:701
757
+ #: app/features/events.php:739 app/features/fes/form.php:603
758
+ #: app/features/mec.php:308 app/features/mec/settings.php:78
759
+ #: app/features/mec/settings.php:1031 app/features/speakers.php:57
760
+ #: app/libraries/main.php:4240 app/modules/speakers/details.php:18
761
  msgid "Speakers"
762
  msgstr ""
763
 
764
+ #: app/features/events.php:715 app/features/events.php:719
765
  msgid "Day :dd:"
766
  msgstr ""
767
 
768
+ #: app/features/events.php:766 app/features/fes/form.php:448
769
+ #: app/features/mec/settings.php:977
 
770
  msgid "Event Links"
771
+ msgstr "Enlaces de eventos"
772
 
773
+ #: app/features/events.php:768 app/features/fes/form.php:450
774
+ #: app/libraries/main.php:4263
 
775
  msgid "Event Link"
776
+ msgstr "Enlace del evento"
777
 
778
+ #: app/features/events.php:769 app/features/events.php:774
779
  #: app/features/fes/form.php:451 app/features/fes/form.php:456
780
  msgid "eg. http://yoursite.com/your-event"
781
+ msgstr "ej. http://yoursite.com/your-event"
782
 
783
+ #: app/features/events.php:770 app/features/fes/form.php:452
 
784
  msgid ""
785
  "If you fill it, it will be replaced instead of default event page link. "
786
  "Insert full link including http(s)://"
787
+ msgstr ""
788
+ "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
789
+ "defecto. Inserta todo el enlace incluyendo http(s)://"
790
 
791
+ #: app/features/events.php:773 app/features/fes/form.php:455
792
+ #: app/libraries/main.php:4264 app/skins/single/default.php:105
793
  #: app/skins/single/default.php:312 app/skins/single/m1.php:190
794
  #: app/skins/single/m2.php:123 app/skins/single/modern.php:120
795
  #: app/widgets/single.php:107
796
  msgid "More Info"
797
+ msgstr "Más Información"
798
 
799
+ #: app/features/events.php:775 app/features/fes/form.php:457
 
800
  msgid "More Information"
801
+ msgstr "Más Información"
802
 
803
+ #: app/features/events.php:777 app/features/fes/form.php:459
804
  msgid "Current Window"
805
+ msgstr "Ventana actual"
806
 
807
+ #: app/features/events.php:778 app/features/fes/form.php:460
808
  msgid "New Window"
809
+ msgstr "Nueva ventana"
810
 
811
+ #: app/features/events.php:780 app/features/fes/form.php:462
 
812
  msgid ""
813
  "If you fill it, it will be shown in event details page as an optional link. "
814
  "Insert full link including http(s)://"
815
+ msgstr ""
816
+ "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
817
+ "opcional. Inserta todo el enlace incluyendo http(s)://"
818
 
819
+ #: app/features/events.php:811
820
  msgid "Total booking limits"
821
+ msgstr "Límite total de reservas"
822
 
823
+ #: app/features/events.php:816 app/features/events.php:908
824
+ #: app/features/events.php:1011 app/modules/booking/default.php:81
825
+ #: app/modules/booking/steps/tickets.php:40
826
+ #: app/skins/available_spot/tpl.php:133
827
  msgid "Unlimited"
828
  msgstr "Ilimitado"
829
 
830
+ #: app/features/events.php:818
831
  msgid "100"
832
  msgstr "100"
833
 
834
+ #: app/features/events.php:836 app/libraries/book.php:60
835
+ #: app/libraries/main.php:4268 app/modules/booking/steps/tickets.php:40
836
  msgid "Tickets"
837
  msgstr "Tickets"
838
 
839
+ #: app/features/events.php:839
840
  msgid ""
841
  "You're translating an event so MEC will use the original event for tickets "
842
  "and booking. You can only translate the ticket name and description. Please "
843
  "define exact tickets that you defined in the original event here."
844
  msgstr ""
845
+ "Estás traduciendo un evento por lo que MEC utilizará el evento original para "
846
+ "las entradas y reservas. Puedes sólo traducir el nombre y descripción de la "
847
+ "entrada. Por favor define las entradas exactas que podrías definir en un "
848
+ "evento original aquí."
849
 
850
+ #: app/features/events.php:850 app/features/events.php:953
851
  msgid "Ticket Name"
852
  msgstr "Nombre del ticket"
853
 
854
+ #: app/features/events.php:854 app/features/events.php:957
855
+ #: app/features/events.php:1984 app/features/events.php:2028
856
  #: app/features/ix.php:2719 app/features/ix.php:2760
857
  msgid "Start Time"
858
+ msgstr "Hora de Inicio"
859
 
860
+ #: app/features/events.php:872 app/features/events.php:975
861
+ #: app/features/events.php:1984 app/features/events.php:2028
862
  #: app/features/ix.php:2719 app/features/ix.php:2760
863
  msgid "End Time"
864
+ msgstr "Hora de finalización"
865
 
866
+ #: app/features/events.php:895 app/features/events.php:924
867
+ #: app/features/events.php:938 app/features/events.php:998
868
+ #: app/features/events.php:1028 app/features/events.php:1160
869
+ #: app/features/events.php:1182 app/features/mec/settings.php:1303
870
+ #: app/features/mec/settings.php:1323
871
  msgid "Price"
872
  msgstr "Precio"
873
 
874
+ #: app/features/events.php:896 app/features/events.php:999
875
  msgid "Insert 0 for free ticket. Only numbers please."
876
+ msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
877
 
878
+ #: app/features/events.php:899 app/features/events.php:1002
879
  msgid "Price Label"
880
  msgstr "Etiqueta de precio"
881
 
882
+ #: app/features/events.php:900 app/features/events.php:1003
883
  msgid "For showing on website. e.g. $15"
884
  msgstr "Para mostrar en la web. Ej. 15€"
885
 
886
+ #: app/features/events.php:904 app/features/events.php:1007
887
  msgid "Available Tickets"
888
  msgstr "Tickets disponibles"
889
 
890
+ #: app/features/events.php:914 app/features/events.php:1017
 
 
891
  msgid "Price per Date"
 
 
 
 
 
 
 
892
  msgstr ""
893
 
894
+ #: app/features/events.php:925 app/features/events.php:939
895
+ #: app/features/events.php:1029 app/features/labels.php:60
 
 
 
 
 
896
  #: app/features/mec/meta_boxes/display_options.php:660
897
  #: app/features/mec/meta_boxes/search_form.php:52
898
  #: app/features/mec/meta_boxes/search_form.php:99
906
  msgid "Label"
907
  msgstr "Etiqueta"
908
 
909
+ #: app/features/events.php:1059
910
  msgid "Fees"
911
  msgstr "Tasas"
912
 
913
+ #: app/features/events.php:1064 app/features/events.php:1145
914
+ #: app/features/events.php:1220
915
  msgid "Inherit from global options"
916
  msgstr "Heredar opciones globales"
917
 
918
+ #: app/features/events.php:1075 app/features/events.php:1100
919
+ #: app/features/mec/settings.php:1234 app/features/mec/settings.php:1257
920
  msgid "Fee Title"
921
+ msgstr "Título de la cuota"
922
 
923
+ #: app/features/events.php:1079 app/features/events.php:1104
924
+ #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1261
925
  msgid "Amount"
926
  msgstr "Cantidad"
927
 
928
+ #: app/features/events.php:1080 app/features/events.php:1105
929
+ #: app/features/mec/settings.php:1239 app/features/mec/settings.php:1262
930
  msgid ""
931
  "Fee amount, considered as fixed amount if you set the type to amount "
932
  "otherwise considered as percentage"
933
  msgstr ""
934
+ "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
935
+ "cantidad, si no será considerada como porcentaje"
936
 
937
+ #: app/features/events.php:1084 app/features/events.php:1109
938
+ #: app/features/mec/settings.php:1243 app/features/mec/settings.php:1266
939
  msgid "Percent"
940
  msgstr "Porcentaje"
941
 
942
+ #: app/features/events.php:1085 app/features/events.php:1110
943
+ #: app/features/mec/settings.php:1244 app/features/mec/settings.php:1267
944
  msgid "Amount (Per Ticket)"
945
+ msgstr "Cantidad (Por ticket)"
946
 
947
+ #: app/features/events.php:1086 app/features/events.php:1111
948
+ #: app/features/mec/settings.php:1245 app/features/mec/settings.php:1268
949
  msgid "Amount (Per Booking)"
950
+ msgstr "Cantidad (por reservas)"
951
 
952
+ #: app/features/events.php:1140 app/features/mec/settings.php:1055
953
  msgid "Ticket Variations / Options"
954
  msgstr ""
955
 
956
+ #: app/features/events.php:1161 app/features/events.php:1183
957
+ #: app/features/mec/settings.php:1304 app/features/mec/settings.php:1324
 
 
958
  msgid "Option Price"
959
+ msgstr ""
960
 
961
+ #: app/features/events.php:1164 app/features/events.php:1186
962
+ #: app/features/mec/settings.php:1307 app/features/mec/settings.php:1327
 
 
963
  msgid "Maximum Per Ticket"
964
+ msgstr ""
965
 
966
+ #: app/features/events.php:1165 app/features/events.php:1187
967
+ #: app/features/mec/settings.php:1308 app/features/mec/settings.php:1328
968
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
969
  msgstr ""
970
 
971
+ #: app/features/events.php:1249 app/features/mec/regform.php:136
972
+ #: app/libraries/main.php:2105
973
  msgid "Text"
974
  msgstr "Texto"
975
 
976
+ #: app/features/events.php:1251 app/features/mec/regform.php:138
977
  #: app/features/organizers.php:102 app/features/organizers.php:146
978
  #: app/features/speakers.php:111 app/features/speakers.php:175
979
+ #: app/features/speakers.php:244 app/libraries/main.php:2163
980
  msgid "Tel"
981
  msgstr "Tel"
982
 
983
+ #: app/features/events.php:1252 app/features/mec/regform.php:139
984
+ #: app/libraries/main.php:2192
985
  msgid "Textarea"
986
  msgstr "Área de texto"
987
 
988
+ #: app/features/events.php:1253 app/features/mec/regform.php:140
989
+ #: app/libraries/main.php:2245
990
  msgid "Checkboxes"
991
  msgstr "Checkboxes"
992
 
993
+ #: app/features/events.php:1254 app/features/mec/regform.php:141
994
+ #: app/libraries/main.php:2289
995
  msgid "Radio Buttons"
996
  msgstr "Botón tipo radio"
997
 
998
+ #: app/features/events.php:1255 app/features/mec/meta_boxes/search_form.php:34
999
  #: app/features/mec/meta_boxes/search_form.php:41
1000
  #: app/features/mec/meta_boxes/search_form.php:48
1001
  #: app/features/mec/meta_boxes/search_form.php:55
1041
  #: app/features/mec/meta_boxes/search_form.php:443
1042
  #: app/features/mec/meta_boxes/search_form.php:450
1043
  #: app/features/mec/meta_boxes/search_form.php:457
1044
+ #: app/features/mec/regform.php:142 app/libraries/main.php:2333
1045
  msgid "Dropdown"
1046
  msgstr "Desplegable"
1047
 
1048
+ #: app/features/events.php:1256 app/features/mec/regform.php:143
1049
+ #: app/libraries/main.php:2380
1050
  msgid "Agreement"
1051
+ msgstr "Acuerdo"
1052
 
1053
+ #: app/features/events.php:1257 app/features/mec/regform.php:144
1054
+ #: app/libraries/main.php:2221
1055
  msgid "Paragraph"
1056
  msgstr "Párrafo"
1057
 
1058
+ #: app/features/events.php:1748 app/features/events.php:1763
1059
+ #: app/features/events.php:1777
1060
  #, php-format
1061
  msgid "Show all %s"
1062
+ msgstr "Mostrar todos %s"
1063
 
1064
+ #: app/features/events.php:1748
1065
  msgid "labels"
1066
  msgstr "etiquetas"
1067
 
1068
+ #: app/features/events.php:1763
1069
  msgid "locations"
1070
+ msgstr "ubicaciones"
1071
 
1072
+ #: app/features/events.php:1777
1073
  msgid "organizers"
1074
+ msgstr "organizadores"
1075
 
1076
+ #: app/features/events.php:1803 app/features/events.php:1984
1077
+ #: app/features/events.php:2028 app/features/ix.php:2719
1078
  #: app/features/ix.php:2760 app/features/locations.php:58
1079
  #: app/features/locations.php:229 app/features/locations.php:281
1080
+ #: app/features/locations.php:283
1081
  #: app/features/mec/meta_boxes/display_options.php:661
1082
  #: app/features/mec/meta_boxes/search_form.php:38
1083
  #: app/features/mec/meta_boxes/search_form.php:85
1087
  #: app/features/mec/meta_boxes/search_form.php:299
1088
  #: app/features/mec/meta_boxes/search_form.php:339
1089
  #: app/features/mec/meta_boxes/search_form.php:386
1090
+ #: app/features/mec/meta_boxes/search_form.php:433 app/libraries/main.php:1643
1091
+ #: app/libraries/main.php:4237 app/libraries/skins.php:737
1092
  #: app/skins/single/default.php:141 app/skins/single/default.php:348
1093
  #: app/skins/single/m1.php:154 app/skins/single/m2.php:86
1094
  #: app/skins/single/modern.php:83
1095
  msgid "Location"
1096
  msgstr "Localización"
1097
 
1098
+ #: app/features/events.php:1804 app/features/events.php:1984
1099
+ #: app/features/events.php:2028 app/features/ix.php:2719
1100
+ #: app/features/ix.php:2760 app/features/mec/meta_boxes/display_options.php:662
 
1101
  #: app/features/mec/meta_boxes/search_form.php:45
1102
  #: app/features/mec/meta_boxes/search_form.php:92
1103
  #: app/features/mec/meta_boxes/search_form.php:139
1109
  #: app/features/mec/meta_boxes/search_form.php:440
1110
  #: app/features/organizers.php:58 app/features/organizers.php:199
1111
  #: app/features/organizers.php:255 app/features/organizers.php:257
1112
+ #: app/libraries/main.php:4239 app/libraries/skins.php:763
1113
  #: app/skins/single/default.php:181 app/skins/single/default.php:388
1114
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1115
  #: app/skins/single/modern.php:21
1116
  msgid "Organizer"
1117
  msgstr "Organizador"
1118
 
1119
+ #: app/features/events.php:1808
1120
  msgid "Repeat"
1121
  msgstr "Repetir"
1122
 
1123
+ #: app/features/events.php:1809
1124
  msgid "Author"
1125
  msgstr "Autor"
1126
 
1127
+ #: app/features/events.php:1919 app/features/events.php:1920
1128
  msgid "iCal Export"
1129
  msgstr "Exportar iCal"
1130
 
1131
+ #: app/features/events.php:1922 app/features/events.php:1923
1132
  msgid "CSV Export"
1133
  msgstr "Exportar CSV"
1134
 
1135
+ #: app/features/events.php:1925 app/features/events.php:1926
1136
  msgid "MS Excel Export"
1137
  msgstr "Exportar Excel"
1138
 
1139
+ #: app/features/events.php:1928 app/features/events.php:1929
1140
  msgid "XML Export"
1141
+ msgstr "Exportación XML"
1142
 
1143
+ #: app/features/events.php:1931 app/features/events.php:1932
1144
  msgid "JSON Export"
1145
+ msgstr "Exportación JSON"
1146
 
1147
+ #: app/features/events.php:1934 app/features/events.php:1935
1148
  msgid "Duplicate"
1149
+ msgstr "Duplicar"
1150
 
1151
+ #: app/features/events.php:1984 app/features/events.php:2028
1152
  #: app/features/ix.php:2719 app/features/ix.php:2760
1153
  #: app/features/labels.php:176 app/features/locations.php:228
1154
  #: app/features/organizers.php:198 app/features/speakers.php:241
1155
  msgid "ID"
1156
  msgstr "ID"
1157
 
1158
+ #: app/features/events.php:1984 app/features/events.php:2028
1159
  #: app/features/ix.php:2719 app/features/ix.php:2760
1160
  msgid "Link"
1161
+ msgstr "Enlace"
1162
 
1163
+ #: app/features/events.php:1984 app/features/events.php:2028
1164
  #, php-format
1165
  msgid "%s Tel"
1166
+ msgstr "%s Teléfono "
1167
 
1168
+ #: app/features/events.php:1984 app/features/events.php:2028
1169
  #, php-format
1170
  msgid "%s Email"
1171
+ msgstr "%s Correo electrónico"
1172
 
1173
  #: app/features/fes.php:83
1174
  #, php-format
1175
  msgid "Please %s/%s in order to submit new events."
1176
+ msgstr "Por favor %s/%s para poder añadir nuevos eventos."
1177
 
1178
  #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1179
  msgid "Login"
1180
+ msgstr "Iniciar sesión"
1181
 
1182
  #: app/features/fes.php:83 app/features/fes.php:161 app/features/profile.php:74
1183
  msgid "Register"
1184
+ msgstr "Registro"
1185
 
1186
  #: app/features/fes.php:96
1187
  msgid "Sorry! Selected post is not an event."
1188
+ msgstr "¡Lo siento! la noticia seleccionada no es un evento."
1189
 
1190
  #: app/features/fes.php:107 app/features/fes.php:146
1191
  msgid "Sorry! You don't have access to modify this event."
1192
+ msgstr "¡Lo siento! No tienes acceso para modificar este evento."
1193
 
1194
  #: app/features/fes.php:161
1195
  #, php-format
1196
  msgid "Please %s/%s in order to manage events."
1197
+ msgstr "Por favor %s/%s para gestionar eventos."
1198
 
1199
  #: app/features/fes.php:191
 
1200
  msgid "The event removed!"
1201
+ msgstr "¡El evento ha sido eliminado!"
1202
 
1203
  #: app/features/fes.php:226
1204
  msgid "The image is uploaded!"
1205
+ msgstr "¡La imagen está subida!"
1206
 
1207
  #: app/features/fes.php:252
1208
  msgid "Captcha is invalid! Please try again."
1209
+ msgstr "¡El Captcha no es válido! Inténtalo de nuevo."
1210
 
1211
  #: app/features/fes.php:264
1212
  msgid "Please fill event title field!"
1213
+ msgstr "Por favor llena el campo de título del evento!"
1214
 
1215
  #: app/features/fes.php:795
1216
  msgid "The event submitted. It will publish as soon as possible."
1217
+ msgstr "El evento presentado. Se publicará lo antes posible."
1218
 
1219
  #: app/features/fes.php:796
1220
  msgid "The event published."
1221
+ msgstr "El evento a sido publicado."
1222
 
1223
  #: app/features/fes/form.php:159
1224
  msgid "Go back to events list."
1225
+ msgstr "Regrese a la lista de eventos."
1226
 
1227
  #: app/features/fes/form.php:409
1228
  msgid "Note to reviewer"
1229
+ msgstr "Nota al revisor"
1230
 
1231
  #: app/features/fes/form.php:427
1232
  msgid "User Data"
1233
+ msgstr "Datos del usuario"
1234
 
1235
  #: app/features/fes/form.php:430
1236
  msgid "eg. yourname@gmail.com"
1237
+ msgstr "Ejemplo. sunombre@gmail.com"
1238
 
1239
  #: app/features/fes/form.php:434 app/features/organizers.php:269
1240
  msgid "eg. John Smith"
1241
  msgstr "ej. John Smith"
1242
 
1243
+ #: app/features/fes/form.php:488 app/features/mec/settings.php:989
 
1244
  msgid "Featured Image"
1245
+ msgstr "Imagen destacada"
1246
 
1247
  #: app/features/fes/form.php:493
 
1248
  msgid "Remove Image"
1249
  msgstr "Eliminar imagen"
1250
 
1251
  #: app/features/fes/form.php:535 app/features/labels.php:61
1252
+ #: app/features/labels.php:220 app/features/mec.php:301
1253
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4234
1254
  #: app/skins/single/default.php:120 app/skins/single/default.php:327
1255
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:199
1256
  msgid "Labels"
1257
  msgstr "Etiquetas"
1258
 
1259
+ #: app/features/fes/form.php:580 app/features/mec.php:299
1260
  #: app/features/mec/meta_boxes/filter.php:138
1261
  msgid "Tags"
1262
  msgstr "Tags"
1263
 
1264
  #: app/features/fes/form.php:582
 
1265
  msgid "Insert your desired tags, comma separated."
1266
+ msgstr "Inserta las etiquetas que quieras, separadas por comas."
1267
 
1268
  #: app/features/fes/form.php:618
1269
  msgid "Submit"
1271
 
1272
  #: app/features/fes/list.php:21
1273
  msgid "Click again to remove!"
1274
+ msgstr "¡Haz clic de nuevo para eliminar!"
1275
 
1276
  #: app/features/fes/list.php:64 app/features/fes/list.php:78
 
1277
  msgid "Add new"
1278
+ msgstr "Añadir nuevo"
1279
 
1280
  #: app/features/fes/list.php:70
 
1281
  msgid "View"
1282
+ msgstr "Ver"
1283
 
1284
  #: app/features/fes/list.php:78
1285
+ #, php-format
1286
  msgid "No events found! %s"
1287
+ msgstr "No se encontraron eventos! %s"
1288
 
1289
  #: app/features/ix.php:107
1290
  msgid "MEC - Import / Export"
1291
+ msgstr "MEC - Importar / Exportar"
1292
 
1293
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1294
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1295
  #: app/features/mec/notifications.php:76 app/features/mec/regform.php:75
1296
+ #: app/features/mec/settings.php:249 app/features/mec/styles.php:77
1297
  #: app/features/mec/styling.php:104 app/features/mec/support.php:73
1298
  msgid "Import / Export"
1299
+ msgstr "Import / Export"
1300
 
1301
  #: app/features/ix.php:198
1302
  msgid "Please upload the feed file."
1303
+ msgstr "Por favor, sube el archivo del feed."
1304
 
1305
  #: app/features/ix.php:201
1306
  msgid "The file type should be XML or ICS."
1307
+ msgstr "El tipo de archivo debería ser XML o ICS."
1308
 
1309
  #: app/features/ix.php:210
1310
  msgid "An error occurred during the file upload! Please check permissions!"
1311
  msgstr ""
1312
+ "¡Ha ocurrido un error durante la subida del archivo! ¡Por favor, revisa los "
1313
+ "permisos!"
1314
 
1315
  #: app/features/ix.php:218
1316
  msgid "The events are imported successfully!"
1317
+ msgstr "¡Los eventos se importaron correctamente!"
1318
 
1319
  #: app/features/ix.php:756
1320
  msgid "Third Party plugin is not installed and activated!"
1321
+ msgstr "¡Plugin de terceros no esta instalado ni activado!"
1322
 
1323
  #: app/features/ix.php:781
1324
  msgid "Third Party plugin is invalid!"
1325
+ msgstr "¡El Plugin de terceros no es válido!"
1326
 
1327
  #: app/features/ix.php:1926 app/features/ix.php:1984
1328
  msgid "Both of API key and Calendar ID are required!"
1329
+ msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
1330
 
1331
+ #: app/features/ix.php:1979 app/features/ix.php:2398 app/features/ix.php:3184
1332
  msgid "Please select some events to import!"
1333
+ msgstr "Por favor, ¡selecciona algunos eventos para importar!"
1334
 
1335
  #: app/features/ix.php:2340 app/features/ix.php:2403
1336
  msgid "Both of API key and Group URL are required!"
1342
 
1343
  #: app/features/ix.php:2719 app/features/ix.php:2760
1344
  msgid "Organizer Tel"
1345
+ msgstr "Teléfono del Organizador"
1346
 
1347
  #: app/features/ix.php:2719 app/features/ix.php:2760
1348
  msgid "Organizer Email"
1349
+ msgstr "Correo electrónico del organizador"
1350
 
1351
  #: app/features/ix.php:2841
1352
  msgid "All of Client