Modern Events Calendar Lite - Version 5.13.6

Version Description

Download this release

Release Info

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

Code changes from version 5.13.5 to 5.13.6

app/features/events.php CHANGED
@@ -3264,7 +3264,7 @@ class MEC_feature_events extends MEC_base
3264
  $hourly_schedules = array();
3265
  foreach($raw_hourly_schedules as $raw_hourly_schedule)
3266
  {
3267
- unset($raw_hourly_schedule['schedules'][':i:']);
3268
  $hourly_schedules[] = $raw_hourly_schedule;
3269
  }
3270
 
@@ -3275,7 +3275,7 @@ class MEC_feature_events extends MEC_base
3275
  update_post_meta($post_id, 'mec_booking', $booking);
3276
 
3277
  $tickets = isset($_mec['tickets']) ? $_mec['tickets'] : array();
3278
- unset($tickets[':i:']);
3279
 
3280
  // Unset Ticket Dats
3281
  if(count($tickets))
@@ -3324,6 +3324,8 @@ class MEC_feature_events extends MEC_base
3324
  update_post_meta($post_id, 'mec_fees_global_inheritance', $fees_global_inheritance);
3325
 
3326
  $fees = isset($_mec['fees']) ? $_mec['fees'] : array();
 
 
3327
  update_post_meta($post_id, 'mec_fees', $fees);
3328
 
3329
  // Ticket Variations options
@@ -3331,7 +3333,7 @@ class MEC_feature_events extends MEC_base
3331
  update_post_meta($post_id, 'mec_ticket_variations_global_inheritance', $ticket_variations_global_inheritance);
3332
 
3333
  $ticket_variations = isset($_mec['ticket_variations']) ? $_mec['ticket_variations'] : array();
3334
- unset($ticket_variations[':i:']);
3335
 
3336
  update_post_meta($post_id, 'mec_ticket_variations', $ticket_variations);
3337
 
3264
  $hourly_schedules = array();
3265
  foreach($raw_hourly_schedules as $raw_hourly_schedule)
3266
  {
3267
+ if(isset($raw_hourly_schedule['schedules'][':i:'])) unset($raw_hourly_schedule['schedules'][':i:']);
3268
  $hourly_schedules[] = $raw_hourly_schedule;
3269
  }
3270
 
3275
  update_post_meta($post_id, 'mec_booking', $booking);
3276
 
3277
  $tickets = isset($_mec['tickets']) ? $_mec['tickets'] : array();
3278
+ if(isset($tickets[':i:'])) unset($tickets[':i:']);
3279
 
3280
  // Unset Ticket Dats
3281
  if(count($tickets))
3324
  update_post_meta($post_id, 'mec_fees_global_inheritance', $fees_global_inheritance);
3325
 
3326
  $fees = isset($_mec['fees']) ? $_mec['fees'] : array();
3327
+ if(isset($fees[':i:'])) unset($fees[':i:']);
3328
+
3329
  update_post_meta($post_id, 'mec_fees', $fees);
3330
 
3331
  // Ticket Variations options
3333
  update_post_meta($post_id, 'mec_ticket_variations_global_inheritance', $ticket_variations_global_inheritance);
3334
 
3335
  $ticket_variations = isset($_mec['ticket_variations']) ? $_mec['ticket_variations'] : array();
3336
+ if(isset($ticket_variations[':i:'])) unset($ticket_variations[':i:']);
3337
 
3338
  update_post_meta($post_id, 'mec_ticket_variations', $ticket_variations);
3339
 
app/features/fes.php CHANGED
@@ -304,11 +304,11 @@ class MEC_feature_fes extends MEC_base
304
  if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
305
 
306
  $ticket_variations_output = '';
307
- if(isset($transaction['tickets']) and is_array($transaction['tickets']) and isset($transaction['tickets'][$counter]) and isset($transaction['tickets'][$counter]['variations']))
308
  {
309
- foreach($transaction['tickets'][$counter]['variations'] as $variation_id => $variation_count)
310
  {
311
- if($variation_count > 0) $ticket_variations_output .= $ticket_variations[$variation_id]['title'].": ( ".$variation_count.' )'.", ";
312
  }
313
  }
314
 
304
  if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
305
 
306
  $ticket_variations_output = '';
307
+ if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
308
  {
309
+ foreach($attendee['variations'] as $a_variation_id => $a_variation_count)
310
  {
311
+ if((int) $a_variation_count > 0) $ticket_variations_output .= $ticket_variations[$a_variation_id]['title'].": (".$a_variation_count.')'.", ";
312
  }
313
  }
314
 
app/features/ix.php CHANGED
@@ -394,7 +394,7 @@ class MEC_feature_ix extends MEC_base
394
  $u->assign($book_id, $user_id);
395
 
396
  update_post_meta($book_id, 'mec_gateway', 'MEC_gateway');
397
- update_post_meta($book_id, 'mec_gateway_label', $gateway->label());
398
  update_post_meta($book_id, 'mec_confirmed', $transaction['confirmed']);
399
  update_post_meta($book_id, 'mec_verified', $transaction['verified']);
400
  }
@@ -649,6 +649,15 @@ class MEC_feature_ix extends MEC_base
649
  }
650
  }
651
 
 
 
 
 
 
 
 
 
 
652
  $args = array
653
  (
654
  'title'=> (string) $event->title,
@@ -737,6 +746,7 @@ class MEC_feature_ix extends MEC_base
737
  'mec_fees'=>$fees,
738
  'mec_reg_fields_global_inheritance'=> (int) $meta->mec_reg_fields_global_inheritance,
739
  'mec_reg_fields'=>$reg_fields,
 
740
  )
741
  );
742
 
394
  $u->assign($book_id, $user_id);
395
 
396
  update_post_meta($book_id, 'mec_gateway', 'MEC_gateway');
397
+ update_post_meta($book_id, 'mec_gateway_label', $gateway->title());
398
  update_post_meta($book_id, 'mec_confirmed', $transaction['confirmed']);
399
  update_post_meta($book_id, 'mec_verified', $transaction['verified']);
400
  }
649
  }
650
  }
651
 
652
+ $advanced_days = array();
653
+ if(isset($meta->mec_advanced_days))
654
+ {
655
+ foreach($meta->mec_advanced_days->children() as $t)
656
+ {
657
+ $advanced_days[] = (string) $t;
658
+ }
659
+ }
660
+
661
  $args = array
662
  (
663
  'title'=> (string) $event->title,
746
  'mec_fees'=>$fees,
747
  'mec_reg_fields_global_inheritance'=> (int) $meta->mec_reg_fields_global_inheritance,
748
  'mec_reg_fields'=>$reg_fields,
749
+ 'mec_advanced_days'=>$advanced_days,
750
  )
751
  );
752
 
app/features/mec/booking.php CHANGED
@@ -794,6 +794,24 @@ $gateways_options = $this->main->get_gateways_options();
794
  </div>
795
  </div>
796
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
797
  <div id="payment_gateways_option" class="mec-options-fields">
798
  <h4 class="mec-form-subtitle"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></h4>
799
  <div class="mec-container">
794
  </div>
795
  </div>
796
 
797
+ <div id="uploadfield_option" class="mec-options-fields">
798
+ <h4 class="mec-form-subtitle"><?php _e('Upload Field Options', 'modern-events-calendar-lite'); ?></h4>
799
+ <div class="mec-form-row">
800
+ <label class="mec-col-3" for="mec_booking_form_upload_field_mime_types"><?php _e('Mime types', 'modern-events-calendar-lite'); ?></label>
801
+ <div class="mec-col-4">
802
+ <input type="text" id="mec_booking_form_upload_field_mime_types" name="mec[settings][upload_field_mime_types]" placeholder="jpeg,jpg,png,pdf" value="<?php echo ((isset($settings['upload_field_mime_types']) and trim($settings['upload_field_mime_types']) != '') ? $settings['upload_field_mime_types'] : ''); ?>" />
803
+ </div>
804
+ <p class="description"><?php echo __('Split mime types with ",".', 'modern-events-calendar-lite'); ?> <br /> <?php esc_attr_e("Default: jpeg,jpg,png,pdf", 'modern-events-calendar-lite'); ?></p>
805
+ </div>
806
+ <div class="mec-form-row">
807
+ <label class="mec-col-3" for="mec_booking_form_upload_field_max_upload_size"><?php _e('Maximum file size', 'modern-events-calendar-lite'); ?></label>
808
+ <div class="mec-col-4">
809
+ <input type="number" id="mec_booking_form_upload_field_max_upload_size" name="mec[settings][upload_field_max_upload_size]" value="<?php echo ((isset($settings['upload_field_max_upload_size']) and trim($settings['upload_field_max_upload_size']) != '') ? $settings['upload_field_max_upload_size'] : ''); ?>" />
810
+ </div>
811
+ <p class="description"><?php echo __('The unit is Megabyte "MB"', 'modern-events-calendar-lite'); ?></p>
812
+ </div>
813
+ </div>
814
+
815
  <div id="payment_gateways_option" class="mec-options-fields">
816
  <h4 class="mec-form-subtitle"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></h4>
817
  <div class="mec-container">
app/features/mec/dyncss.php CHANGED
@@ -19,9 +19,13 @@ function mec_dyn_hex2rgb( $cc ) {
19
  } else {
20
  return false;
21
  }
22
- $r = hexdec( $r );
23
- $g = hexdec( $g );
24
- $b = hexdec( $b );
 
 
 
 
25
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
26
  }
27
 
19
  } else {
20
  return false;
21
  }
22
+
23
+ $r = (ctype_xdigit($r) ? hexdec($r) : NULL);
24
+ $g = (ctype_xdigit($g) ? hexdec($g) : NULL);
25
+ $b = (ctype_xdigit($b) ? hexdec($b) : NULL);
26
+
27
+ if(is_null($r) or is_null($g) or is_null($b)) return false;
28
+
29
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
30
  }
31
 
app/features/mec/settings.php CHANGED
@@ -1237,24 +1237,6 @@ $get_n_option = get_option('mec_addons_notification_option');
1237
  </div>
1238
  </div>
1239
 
1240
- <div id="uploadfield_option" class="mec-options-fields">
1241
- <h4 class="mec-form-subtitle"><?php _e('Upload Field Options', 'modern-events-calendar-lite'); ?></h4>
1242
- <div class="mec-form-row">
1243
- <label class="mec-col-3" for="mec_booking_form_upload_field_mime_types"><?php _e('Mime types', 'modern-events-calendar-lite'); ?></label>
1244
- <div class="mec-col-4">
1245
- <input type="text" id="mec_booking_form_upload_field_mime_types" name="mec[settings][upload_field_mime_types]" placeholder="jpeg,jpg,png,pdf" value="<?php echo ((isset($settings['upload_field_mime_types']) and trim($settings['upload_field_mime_types']) != '') ? $settings['upload_field_mime_types'] : ''); ?>" />
1246
- </div>
1247
- <p class="description"><?php echo __('Split mime types with ",".', 'modern-events-calendar-lite'); ?> <br /> <?php esc_attr_e("Default: jpeg,jpg,png,pdf", 'modern-events-calendar-lite'); ?></p>
1248
- </div>
1249
- <div class="mec-form-row">
1250
- <label class="mec-col-3" for="mec_booking_form_upload_field_max_upload_size"><?php _e('Maximum file size', 'modern-events-calendar-lite'); ?></label>
1251
- <div class="mec-col-4">
1252
- <input type="number" id="mec_booking_form_upload_field_max_upload_size" name="mec[settings][upload_field_max_upload_size]" value="<?php echo ((isset($settings['upload_field_max_upload_size']) and trim($settings['upload_field_max_upload_size']) != '') ? $settings['upload_field_max_upload_size'] : ''); ?>" />
1253
- </div>
1254
- <p class="description"><?php echo __('The unit is Megabyte "MB"', 'modern-events-calendar-lite'); ?></p>
1255
- </div>
1256
- </div>
1257
-
1258
  <?php endif; ?>
1259
 
1260
  <?php do_action('mec-settings-page-before-form-end', $settings) ?>
1237
  </div>
1238
  </div>
1239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1240
  <?php endif; ?>
1241
 
1242
  <?php do_action('mec-settings-page-before-form-end', $settings) ?>
app/libraries/book.php CHANGED
@@ -222,6 +222,9 @@ class MEC_book extends MEC_base
222
  // Update transaction id after insert book for prevent repeat reservation books.
223
  update_post_meta($book_id, 'mec_transaction_id', $transaction_id);
224
 
 
 
 
225
  // Publish it
226
  wp_publish_post($book_id);
227
 
222
  // Update transaction id after insert book for prevent repeat reservation books.
223
  update_post_meta($book_id, 'mec_transaction_id', $transaction_id);
224
 
225
+ $transaction['booking_id'] = $book_id;
226
+ $this->update_transaction($transaction_id, $transaction);
227
+
228
  // Publish it
229
  wp_publish_post($book_id);
230
 
app/libraries/main.php CHANGED
@@ -549,7 +549,6 @@ class MEC_main extends MEC_base
549
  __('Constant Contact Integration', 'modern-events-calendar-lite') => 'constantcontact_option',
550
  __('Active Campaign Integration', 'modern-events-calendar-lite') => 'active_campaign_option',
551
  __('AWeber Integration', 'modern-events-calendar-lite') => 'aweber_option',
552
- __('Upload Field', 'modern-events-calendar-lite') => 'uploadfield_option',
553
  ), $active_menu);
554
 
555
  $single_event = apply_filters('mec-settings-item-single_event', array(
@@ -570,6 +569,7 @@ class MEC_main extends MEC_base
570
  __('Taxes / Fees', 'modern-events-calendar-lite') => 'taxes_option',
571
  __('Ticket Variations & Options', 'modern-events-calendar-lite') => 'ticket_variations_option',
572
  __('Booking Form', 'modern-events-calendar-lite') => 'booking_form_option',
 
573
  __('Payment Gateways', 'modern-events-calendar-lite') => 'payment_gateways_option',
574
  ), $active_menu);
575
 
@@ -621,7 +621,7 @@ class MEC_main extends MEC_base
621
  <ul class="<?php echo $active_menu == 'settings' ? 'subsection' : 'mec-settings-submenu'; ?>">
622
  <?php foreach ($settings as $settings_name => $settings_link) : ?>
623
  <?php
624
- if ( $settings_link == 'mailchimp_option' || $settings_link == 'active_campaign_option' || $settings_link == 'uploadfield_option' || $settings_link == 'campaign_monitor_option' || $settings_link == 'mailerlite_option' || $settings_link == 'constantcontact_option') :
625
  if ( $this->getPRO() ) : ?>
626
  <li>
627
  <a
@@ -686,7 +686,7 @@ class MEC_main extends MEC_base
686
  <ul class="<?php echo $active_menu == 'booking' ? 'subsection' : 'mec-settings-submenu'; ?>">
687
 
688
  <?php foreach ($booking as $booking_name => $booking_link) : ?>
689
- <?php if ( $booking_link == 'coupon_option' || $booking_link == 'taxes_option' || $booking_link == 'ticket_variations_option' || $booking_link == 'booking_form_option' || $booking_link == 'payment_gateways_option' || $booking_link == 'booking_shortcode' ): ?>
690
  <?php if ( isset($options['booking_status']) and $options['booking_status'] ) : ?>
691
  <li>
692
  <a
@@ -3030,7 +3030,7 @@ class MEC_main extends MEC_base
3030
  $ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
3031
  $ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
3032
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3033
- $ical .= "DESCRIPTION:".html_entity_decode(trim(strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3034
  $ical .= "URL:".$event->permalink.PHP_EOL;
3035
 
3036
  // Organizer
@@ -3125,7 +3125,7 @@ class MEC_main extends MEC_base
3125
  $ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
3126
  $ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
3127
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3128
- $ical .= "DESCRIPTION:".html_entity_decode(trim(strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3129
  $ical .= "URL:".$event->permalink.PHP_EOL;
3130
 
3131
  // Location
@@ -4213,9 +4213,7 @@ class MEC_main extends MEC_base
4213
  {
4214
  $seconds = $offset*3600;
4215
 
4216
- $timezone = timezone_name_from_abbr('', $seconds, 1);
4217
- if($timezone === false) $timezone = timezone_name_from_abbr('', $seconds, 0);
4218
-
4219
  if($timezone === false)
4220
  {
4221
  $timezones = array(
@@ -4702,13 +4700,13 @@ class MEC_main extends MEC_base
4702
  $offset_start = $timezone_site->getOffset($dt_start);
4703
  $offset_end = $timezone_site->getOffset($dt_end);
4704
 
4705
- if($offset_now != $offset_start)
4706
  {
4707
  $diff = $offset_start - $offset_now;
4708
  if($diff > 0) $start_timestamp += $diff;
4709
  }
4710
 
4711
- if($offset_now != $offset_end)
4712
  {
4713
  $diff = $offset_end - $offset_now;
4714
  if($diff > 0) $end_timestamp += $diff;
@@ -4729,11 +4727,6 @@ class MEC_main extends MEC_base
4729
  // Same Month but Different Days
4730
  if($minify and $start_m == $end_m and date('d', $start_timestamp) != date('d', $end_timestamp))
4731
  {
4732
- $day_format = 'j';
4733
- if(strpos($format, 'l') !== false) $day_format = 'l';
4734
- elseif(strpos($format, 'd') !== false) $day_format = 'd';
4735
- elseif(strpos($format, 'D') !== false) $day_format = 'D';
4736
-
4737
  $month_format = 'F';
4738
  if(strpos($format, 'm') !== false) $month_format = 'm';
4739
  elseif(strpos($format, 'M') !== false) $month_format = 'M';
@@ -4743,9 +4736,6 @@ class MEC_main extends MEC_base
4743
  if(strpos($format, 'Y') !== false) $year_format = 'Y';
4744
  elseif(strpos($format, 'y') !== false) $year_format = 'y';
4745
 
4746
- $start_d = date_i18n($day_format, $start_timestamp);
4747
- $end_d = date_i18n($day_format, $end_timestamp);
4748
-
4749
  $start_m = date_i18n($month_format, $start_timestamp);
4750
  $start_y = (trim($year_format) ? date_i18n($year_format, $start_timestamp) : '');
4751
 
@@ -4756,7 +4746,8 @@ class MEC_main extends MEC_base
4756
  {
4757
  if(in_array($char, array('d', 'D', 'j', 'l', 'N', 'S', 'w', 'z')))
4758
  {
4759
- $date_label .= $start_d . ' - ' . $end_d;
 
4760
  }
4761
  elseif(in_array($char, array('F', 'm', 'M', 'n')))
4762
  {
@@ -4815,7 +4806,7 @@ class MEC_main extends MEC_base
4815
  $offset_now = $timezone_site->getOffset($dt_now);
4816
  $offset_time = $timezone_site->getOffset($dt_time);
4817
 
4818
- if($offset_now != $offset_time)
4819
  {
4820
  $diff = $offset_time - $offset_now;
4821
  if($diff > 0) $time += $diff;
549
  __('Constant Contact Integration', 'modern-events-calendar-lite') => 'constantcontact_option',
550
  __('Active Campaign Integration', 'modern-events-calendar-lite') => 'active_campaign_option',
551
  __('AWeber Integration', 'modern-events-calendar-lite') => 'aweber_option',
 
552
  ), $active_menu);
553
 
554
  $single_event = apply_filters('mec-settings-item-single_event', array(
569
  __('Taxes / Fees', 'modern-events-calendar-lite') => 'taxes_option',
570
  __('Ticket Variations & Options', 'modern-events-calendar-lite') => 'ticket_variations_option',
571
  __('Booking Form', 'modern-events-calendar-lite') => 'booking_form_option',
572
+ __('Upload Field', 'modern-events-calendar-lite') => 'uploadfield_option',
573
  __('Payment Gateways', 'modern-events-calendar-lite') => 'payment_gateways_option',
574
  ), $active_menu);
575
 
621
  <ul class="<?php echo $active_menu == 'settings' ? 'subsection' : 'mec-settings-submenu'; ?>">
622
  <?php foreach ($settings as $settings_name => $settings_link) : ?>
623
  <?php
624
+ if ( $settings_link == 'mailchimp_option' || $settings_link == 'active_campaign_option' || $settings_link == 'aweber_option' || $settings_link == 'campaign_monitor_option' || $settings_link == 'mailerlite_option' || $settings_link == 'constantcontact_option') :
625
  if ( $this->getPRO() ) : ?>
626
  <li>
627
  <a
686
  <ul class="<?php echo $active_menu == 'booking' ? 'subsection' : 'mec-settings-submenu'; ?>">
687
 
688
  <?php foreach ($booking as $booking_name => $booking_link) : ?>
689
+ <?php if ( $booking_link == 'coupon_option' || $booking_link == 'taxes_option' || $booking_link == 'ticket_variations_option' || $booking_link == 'booking_form_option' || $booking_link == 'uploadfield_option' || $booking_link == 'payment_gateways_option' || $booking_link == 'booking_shortcode' ): ?>
690
  <?php if ( isset($options['booking_status']) and $options['booking_status'] ) : ?>
691
  <li>
692
  <a
3030
  $ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
3031
  $ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
3032
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3033
+ $ical .= "DESCRIPTION:".html_entity_decode(str_replace("\n", "\\n", strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3034
  $ical .= "URL:".$event->permalink.PHP_EOL;
3035
 
3036
  // Organizer
3125
  $ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
3126
  $ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
3127
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3128
+ $ical .= "DESCRIPTION:".html_entity_decode(str_replace("\n", "\\n", strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3129
  $ical .= "URL:".$event->permalink.PHP_EOL;
3130
 
3131
  // Location
4213
  {
4214
  $seconds = $offset*3600;
4215
 
4216
+ $timezone = timezone_name_from_abbr('', $seconds, 0);
 
 
4217
  if($timezone === false)
4218
  {
4219
  $timezones = array(
4700
  $offset_start = $timezone_site->getOffset($dt_start);
4701
  $offset_end = $timezone_site->getOffset($dt_end);
4702
 
4703
+ if($offset_now != $offset_start and !function_exists('wp_date'))
4704
  {
4705
  $diff = $offset_start - $offset_now;
4706
  if($diff > 0) $start_timestamp += $diff;
4707
  }
4708
 
4709
+ if($offset_now != $offset_end and !function_exists('wp_date'))
4710
  {
4711
  $diff = $offset_end - $offset_now;
4712
  if($diff > 0) $end_timestamp += $diff;
4727
  // Same Month but Different Days
4728
  if($minify and $start_m == $end_m and date('d', $start_timestamp) != date('d', $end_timestamp))
4729
  {
 
 
 
 
 
4730
  $month_format = 'F';
4731
  if(strpos($format, 'm') !== false) $month_format = 'm';
4732
  elseif(strpos($format, 'M') !== false) $month_format = 'M';
4736
  if(strpos($format, 'Y') !== false) $year_format = 'Y';
4737
  elseif(strpos($format, 'y') !== false) $year_format = 'y';
4738
 
 
 
 
4739
  $start_m = date_i18n($month_format, $start_timestamp);
4740
  $start_y = (trim($year_format) ? date_i18n($year_format, $start_timestamp) : '');
4741
 
4746
  {
4747
  if(in_array($char, array('d', 'D', 'j', 'l', 'N', 'S', 'w', 'z')))
4748
  {
4749
+ $dot = (strpos($format, $char.'.') !== false);
4750
+ $date_label .= date_i18n($char, $start_timestamp).($dot ? '.' : '') . ' - ' . date_i18n($char, $end_timestamp);
4751
  }
4752
  elseif(in_array($char, array('F', 'm', 'M', 'n')))
4753
  {
4806
  $offset_now = $timezone_site->getOffset($dt_now);
4807
  $offset_time = $timezone_site->getOffset($dt_time);
4808
 
4809
+ if($offset_now != $offset_time and !function_exists('wp_date'))
4810
  {
4811
  $diff = $offset_time - $offset_now;
4812
  if($diff > 0) $time += $diff;
app/libraries/notifications.php CHANGED
@@ -757,6 +757,9 @@ class MEC_notifications extends MEC_base
757
  $attendees = get_post_meta($book_id, 'mec_attendees', true);
758
  if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
759
 
 
 
 
760
  // Changing some sender email info.
761
  $this->mec_sender_email_notification_filter();
762
 
@@ -769,11 +772,12 @@ class MEC_notifications extends MEC_base
769
  if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
770
 
771
  $to = $attendee['email'];
772
- $message = isset($this->notif_settings['booking_reminder']['content']) ? $this->notif_settings['booking_reminder']['content'] : '';
773
- $message = $this->content($this->get_content($message, 'booking_reminder', $event_id), $book_id, $attendee);
774
 
775
  if(!trim($to)) continue;
 
776
 
 
 
777
  $message = $this->add_template($message);
778
 
779
  // Filter the email
@@ -789,6 +793,8 @@ class MEC_notifications extends MEC_base
789
 
790
  // Send the mail
791
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
 
 
792
  }
793
 
794
  // Remove the HTML Email filter
757
  $attendees = get_post_meta($book_id, 'mec_attendees', true);
758
  if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
759
 
760
+ // Do not send email twice!
761
+ $done_emails = array();
762
+
763
  // Changing some sender email info.
764
  $this->mec_sender_email_notification_filter();
765
 
772
  if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
773
 
774
  $to = $attendee['email'];
 
 
775
 
776
  if(!trim($to)) continue;
777
+ if(in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
778
 
779
+ $message = isset($this->notif_settings['booking_reminder']['content']) ? $this->notif_settings['booking_reminder']['content'] : '';
780
+ $message = $this->content($this->get_content($message, 'booking_reminder', $event_id), $book_id, $attendee);
781
  $message = $this->add_template($message);
782
 
783
  // Filter the email
793
 
794
  // Send the mail
795
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
796
+
797
+ $done_emails[] = $to;
798
  }
799
 
800
  // Remove the HTML Email filter
app/libraries/render.php CHANGED
@@ -498,6 +498,7 @@ class MEC_render extends MEC_base
498
  // All Meta Data
499
  $meta = $this->main->get_post_meta($post_id);
500
  if(isset($meta['mec_notifications'])) unset($meta['mec_notifications']);
 
501
 
502
  $data->meta = $meta;
503
 
@@ -1423,9 +1424,9 @@ class MEC_render extends MEC_base
1423
  $start['timestamp'] = strtotime($start_time);
1424
  $end['timestamp'] = strtotime($end_time);
1425
 
1426
- $allday = isset($date['allday']) ? $date['allday'] : 0;
1427
- $hide_time = isset($date['hide_time']) ? $date['hide_time'] : 0;
1428
- $past = isset($date['past']) ? $date['past'] : 0;
1429
 
1430
  return array(
1431
  'start' => $start,
498
  // All Meta Data
499
  $meta = $this->main->get_post_meta($post_id);
500
  if(isset($meta['mec_notifications'])) unset($meta['mec_notifications']);
501
+ if(isset($meta['mec_fees']) and is_array($meta['mec_fees']) and isset($meta['mec_fees'][':i:'])) unset($meta['mec_fees'][':i:']);
502
 
503
  $data->meta = $meta;
504
 
1424
  $start['timestamp'] = strtotime($start_time);
1425
  $end['timestamp'] = strtotime($end_time);
1426
 
1427
+ $allday = (isset($date['allday']) ? $date['allday'] : 0);
1428
+ $hide_time = (isset($date['hide_time']) ? $date['hide_time'] : 0);
1429
+ $past = (isset($date['past']) ? $date['past'] : 0);
1430
 
1431
  return array(
1432
  'start' => $start,
app/libraries/skins.php CHANGED
@@ -678,12 +678,12 @@ class MEC_skins extends MEC_base
678
  $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
679
  $start = ((isset($this->sf) || $this->request->getVar('sf', array())) and $apply_sf_date) ? date('Y-m-t', strtotime($this->start_date)) : $this->start_date;
680
 
681
- $end = date('Y-m-01', strtotime('-10 Year', strtotime($start)));
682
  }
683
  else
684
  {
685
  $start = $this->start_date;
686
- $end = date('Y-m-t', strtotime('+10 Year', strtotime($start)));
687
  }
688
 
689
  // Set a certain maximum date from shortcode page.
@@ -1246,6 +1246,15 @@ class MEC_skins extends MEC_base
1246
  return ($a_timestamp > $b_timestamp) ? +1 : -1;
1247
  }
1248
 
 
 
 
 
 
 
 
 
 
1249
  public function booking_button($event, $type = 'button')
1250
  {
1251
  if(!$this->booking_button) return '';
678
  $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
679
  $start = ((isset($this->sf) || $this->request->getVar('sf', array())) and $apply_sf_date) ? date('Y-m-t', strtotime($this->start_date)) : $this->start_date;
680
 
681
+ $end = date('Y-m-01', strtotime('-25 Year', strtotime($start)));
682
  }
683
  else
684
  {
685
  $start = $this->start_date;
686
+ $end = date('Y-m-t', strtotime('+25 Year', strtotime($start)));
687
  }
688
 
689
  // Set a certain maximum date from shortcode page.
1246
  return ($a_timestamp > $b_timestamp) ? +1 : -1;
1247
  }
1248
 
1249
+ public function sort_dates($a, $b)
1250
+ {
1251
+ $a_timestamp = strtotime($a);
1252
+ $b_timestamp = strtotime($b);
1253
+
1254
+ if($a_timestamp == $b_timestamp) return 0;
1255
+ return ($a_timestamp > $b_timestamp) ? +1 : -1;
1256
+ }
1257
+
1258
  public function booking_button($event, $type = 'button')
1259
  {
1260
  if(!$this->booking_button) return '';
app/libraries/wc.php CHANGED
@@ -354,7 +354,7 @@ class MEC_wc extends MEC_base
354
  $u->assign($book_id, $user_id);
355
 
356
  update_post_meta($book_id, 'mec_gateway', 'MEC_gateway_woocommerce');
357
- update_post_meta($book_id, 'mec_gateway_label', $gateway->label());
358
  update_post_meta($book_id, 'mec_order_id', $order_id);
359
 
360
  // Add WC coupon code
354
  $u->assign($book_id, $user_id);
355
 
356
  update_post_meta($book_id, 'mec_gateway', 'MEC_gateway_woocommerce');
357
+ update_post_meta($book_id, 'mec_gateway_label', $gateway->title());
358
  update_post_meta($book_id, 'mec_order_id', $order_id);
359
 
360
  // Add WC coupon code
app/modules/booking/steps/tickets.php CHANGED
@@ -134,13 +134,13 @@ if($total_spots > 0) $available_spots = min($available_spots, $total_spots);
134
  <input type="hidden" name="book[tickets][<?php echo $ticket_id; ?>]" value="1" />
135
  <p>
136
  <?php _e('1 Ticket selected.', 'modern-events-calendar-lite'); ?>
137
- <div class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), ($ticket['unlimited'] ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></div>
138
  </p>
139
  <?php else: ?>
140
  <div>
141
  <input onkeydown="return event.keyCode !== 69" type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" title="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
142
  </div>
143
- <span class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), ($ticket['unlimited'] ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></span>
144
  <?php endif; ?>
145
  </div>
146
  <?php
134
  <input type="hidden" name="book[tickets][<?php echo $ticket_id; ?>]" value="1" />
135
  <p>
136
  <?php _e('1 Ticket selected.', 'modern-events-calendar-lite'); ?>
137
+ <div class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), (($ticket['unlimited'] and $ticket_limit == '-1') ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></div>
138
  </p>
139
  <?php else: ?>
140
  <div>
141
  <input onkeydown="return event.keyCode !== 69" type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" title="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
142
  </div>
143
+ <span class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), (($ticket['unlimited'] and $ticket_limit == '-1') ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></span>
144
  <?php endif; ?>
145
  </div>
146
  <?php
app/modules/export/details.php CHANGED
@@ -37,6 +37,21 @@ if((is_null($start_date_temp) or is_null($start_hour_temp) or is_null($start_min
37
  return;
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  $start_time = strtotime((trim($occurrence) ? $occurrence : $start_date_temp).' '.sprintf("%02d", $start_hour_temp).':'.sprintf("%02d", $start_minutes_temp).' '.$start_ampm_temp);
41
  $end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $end_date_temp).' '.sprintf("%02d", $end_hour_temp).':'.sprintf("%02d", $end_minutes_temp).' '.$end_ampm_temp);
42
  $gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time, $event);
37
  return;
38
  }
39
 
40
+ $allday = isset($event->data->meta['mec_allday']) ? $event->data->meta['mec_allday'] : 0;
41
+ if($allday)
42
+ {
43
+ $start_hour_temp = 12;
44
+ $start_minutes_temp = 0;
45
+ $start_ampm_temp = 'AM';
46
+
47
+ $end_hour_temp = 12;
48
+ $end_minutes_temp = 0;
49
+ $end_ampm_temp = 'AM';
50
+
51
+ if(trim($occurrence_end_date)) $occurrence_end_date = date('Y-m-d', strtotime('+1 day', strtotime($occurrence_end_date)));
52
+ $end_date_temp = date('Y-m-d', strtotime('+1 day', strtotime($end_date_temp)));
53
+ }
54
+
55
  $start_time = strtotime((trim($occurrence) ? $occurrence : $start_date_temp).' '.sprintf("%02d", $start_hour_temp).':'.sprintf("%02d", $start_minutes_temp).' '.$start_ampm_temp);
56
  $end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $end_date_temp).' '.sprintf("%02d", $end_hour_temp).':'.sprintf("%02d", $end_minutes_temp).' '.$end_ampm_temp);
57
  $gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time, $event);
app/skins/tile.php CHANGED
@@ -183,7 +183,7 @@ class MEC_skin_tile extends MEC_skins
183
  else
184
  {
185
  $start = $this->start_date;
186
- $end = ($this->load_method === 'month' ? date('Y-m-t', strtotime($this->start_date)) : date('Y-m-t', strtotime('+10 Year', strtotime($start))));
187
  }
188
 
189
  // Date Events
183
  else
184
  {
185
  $start = $this->start_date;
186
+ $end = ($this->load_method === 'month' ? date('Y-m-t', strtotime($this->start_date)) : date('Y-m-t', strtotime('+25 Year', strtotime($start))));
187
  }
188
 
189
  // Date Events
app/skins/timeline/render.php CHANGED
@@ -53,7 +53,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
53
  do_action('mec_schema', $event);
54
  ?>
55
  <div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timeline-event clearfix <?php echo $this->get_event_classes($event); ?>">
56
- <div class="mec-timeline-event-date mec-color<?php echo ($event->date['start']['date'] != $event->date['end']['date']) ? ' mec-timeline-dates' : '' ; ?>"><?php echo ($event->date['start']['date'] == $event->date['end']['date']) ? $this->main->date_i18n(get_option('date_format'), strtotime($event->date['start']['date'])) : $this->main->date_i18n(get_option('date_format'), strtotime($event->date['start']['date'])) . '<br>' . $this->main->date_i18n(get_option('date_format'), strtotime($event->date['end']['date'])); ?> </div>
57
  <div class="mec-timeline-event-content">
58
  <div class="clearfix">
59
  <div class="mec-timeline-right-content">
53
  do_action('mec_schema', $event);
54
  ?>
55
  <div class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-timeline-event clearfix <?php echo $this->get_event_classes($event); ?>">
56
+ <div class="mec-timeline-event-date mec-color<?php echo ($event->date['start']['date'] != $event->date['end']['date']) ? ' mec-timeline-dates' : '' ; ?>"><?php echo ($event->date['start']['date'] == $event->date['end']['date']) ? $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])) : $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])) . '<br>' . $this->main->date_i18n($this->date_format_classic_1, strtotime($event->date['end']['date'])); ?> </div>
57
  <div class="mec-timeline-event-content">
58
  <div class="clearfix">
59
  <div class="mec-timeline-right-content">
app/skins/weekly_view.php CHANGED
@@ -162,12 +162,12 @@ class MEC_skin_weekly_view extends MEC_skins
162
  if($this->show_only_expired_events)
163
  {
164
  $start = date('Y-m-d H:i:s', current_time('timestamp', 0));
165
- $end = $this->start_date;
166
  }
167
  else
168
  {
169
- $start = $this->start_date;
170
- $end = date('Y-m-t', strtotime($this->start_date));
171
  }
172
 
173
  // Date Events
@@ -183,7 +183,8 @@ class MEC_skin_weekly_view extends MEC_skins
183
  $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
184
  }
185
 
186
- $dates = $sorted;
 
187
 
188
  // Limit
189
  $this->args['posts_per_page'] = $this->limit;
162
  if($this->show_only_expired_events)
163
  {
164
  $start = date('Y-m-d H:i:s', current_time('timestamp', 0));
165
+ $end = $this->main->array_key_first($this->week_of_days);
166
  }
167
  else
168
  {
169
+ $start = $this->main->array_key_first($this->week_of_days);
170
+ $end = $this->maximum_date ? $this->maximum_date : $this->main->array_key_last($this->week_of_days);
171
  }
172
 
173
  // Date Events
183
  $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
184
  }
185
 
186
+ $dates = array_merge($sorted, $dates);
187
+ uksort($dates, array($this, 'sort_dates'));
188
 
189
  // Limit
190
  $this->args['posts_per_page'] = $this->limit;
app/skins/weekly_view/render.php CHANGED
@@ -17,7 +17,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
17
  }
18
  ?>
19
  <?php if(count($events)): ?>
20
- <li class="mec-weekly-view-date-events mec-util-hidden mec-calendar-day-events mec-clear mec-weekly-view-week-<?php echo $this->id; ?>-<?php echo date('Ym', strtotime($date)).$week; ?>" id="mec_weekly_view_date_events<?php echo $this->id; ?>_<?php echo date('Ymd', strtotime($date)); ?>" data-week-number="<?php echo $week; ?>">
21
  <?php foreach($events as $event): ?>
22
  <?php
23
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
17
  }
18
  ?>
19
  <?php if(count($events)): ?>
20
+ <li class="mec-weekly-view-date-events mec-util-hidden mec-calendar-day-events mec-clear mec-weekly-view-week-<?php echo $this->id; ?>-<?php echo $this->year.$this->month.$week; ?>" id="mec_weekly_view_date_events<?php echo $this->id; ?>_<?php echo date('Ymd', strtotime($date)); ?>" data-week-number="<?php echo $week; ?>">
21
  <?php foreach($events as $event): ?>
22
  <?php
23
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
app/skins/weekly_view/tpl.php CHANGED
@@ -30,7 +30,7 @@ foreach($this->weeks as $week_number=>$week)
30
  {
31
  $time = strtotime($day);
32
  $count = isset($this->events[$day]) ? count($this->events[$day]) : 0;
33
- $weeks .= '<dt data-events-count="'.$count.'" class="'.((strtotime($day) < $current_month_time or strtotime($day) >= $_1month_after) ? 'mec-weekly-disabled mec-table-nullday' : '').'">'
34
  .'<span class="mec-weekly-view-weekday">'.$this->main->date_i18n('D', $time).'</span> '
35
  .'<span class="mec-weekly-view-monthday">'.$this->main->date_i18n('j', $time).'</span> '
36
  .'</dt>';
@@ -124,10 +124,10 @@ else $this->factory->params('footer', $javascript);
124
  $styling = $this->main->get_styling();
125
 
126
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
127
- $dark_mode = ( isset($styling['dark_mode']) ) ? $styling['dark_mode'] : '';
128
- if ( $dark_mode == 1 ): $set_dark = 'mec-dark-mode';
129
- else: $set_dark ='';
130
- endif;
131
 
132
  do_action('mec_start_skin', $this->id);
133
  do_action('mec_weekly_skin_head');
30
  {
31
  $time = strtotime($day);
32
  $count = isset($this->events[$day]) ? count($this->events[$day]) : 0;
33
+ $weeks .= '<dt data-events-count="'.$count.'" class="'.(!$count ? 'mec-weekly-disabled mec-table-nullday' : '').'">'
34
  .'<span class="mec-weekly-view-weekday">'.$this->main->date_i18n('D', $time).'</span> '
35
  .'<span class="mec-weekly-view-monthday">'.$this->main->date_i18n('j', $time).'</span> '
36
  .'</dt>';
124
  $styling = $this->main->get_styling();
125
 
126
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
127
+
128
+ $dark_mode = (isset($styling['dark_mode']) ? $styling['dark_mode'] : '');
129
+ if($dark_mode == 1) $set_dark = 'mec-dark-mode';
130
+ else $set_dark = '';
131
 
132
  do_action('mec_start_skin', $this->id);
133
  do_action('mec_weekly_skin_head');
assets/css/frontend.css CHANGED
@@ -5655,13 +5655,12 @@ address.mec-events-address {
5655
  font-size: 12px;
5656
  }
5657
 
5658
- .mec-calendar-side {
5659
  min-width: 600px !important;
5660
  overflow-x: scroll;
5661
  }
5662
  }
5663
 
5664
-
5665
  .mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover {
5666
  background: #f4f4f4
5667
  }
5655
  font-size: 12px;
5656
  }
5657
 
5658
+ .mec-event-container-simple .mec-calendar-side {
5659
  min-width: 600px !important;
5660
  overflow-x: scroll;
5661
  }
5662
  }
5663
 
 
5664
  .mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover {
5665
  background: #f4f4f4
5666
  }
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,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,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius: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:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-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;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;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-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;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,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;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-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color: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;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media(min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media(min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;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-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{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-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom: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;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0;margin-left:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}.mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-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-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none;padding-left:40px}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:680px){.mec-fes-list ul li .mec-event-title{width:100%;font-size:13px;margin:0 0 20px 0;display:block}.mec-fes-list ul li{padding:10px 12px 40px}}@media (max-width:480px){.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{padding-left:0}}.mec-fes-form .mec-required{color:#ff3c3c}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.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{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence ul{padding-left:0;margin-left:0}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight{z-index:999999!important}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-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:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-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}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@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:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}@media (max-width:480px){.mec-masonry-content.mec-event-grid-modern .mec-labels-normal{display:block}}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-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-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.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}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events{margin-right:-15px;margin-left:-15px}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-next-previous-events{width:100%;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-wrap .mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event{float:right;text-align:right}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}.mec-next-multiple ul{padding:0}.mec-next-multiple ul li a{display:block;position:relative;padding:11px 14px 9px;z-index:9}.mec-next-multiple ul .mec-date,.mec-next-multiple ul .mec-time{display:inline-block;width:50%}.mec-next-multiple ul .mec-date{float:left;text-align:left}.mec-next-multiple ul .mec-time{text-align:right;position:relative;z-index:-1}.mec-next-multiple ul .mec-time dd{margin:0}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:14px;line-height:24px}@media(max-width:1280px){.mec-next-multiple ul li a{padding:7px 9px 5px}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:12px}}@media(max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{cursor:pointer;box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-event-title-soldout,.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-few-tickets{display:inline}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal,.mec-owl-carousel .mec-event-footer-carousel-type3 span.soldout{margin-top:0;color:#fff;display:unset}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#d2d2d2}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{margin-bottom:-20px;font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:20px 0 0;padding:10px 15px;border-radius:3px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}
1
+ .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,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,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius: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:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-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;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;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-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;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,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;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-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color: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;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media(min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media(min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;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-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{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-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom: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;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0;margin-left:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}.mec-event-container-simple .mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-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-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none;padding-left:40px}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:680px){.mec-fes-list ul li .mec-event-title{width:100%;font-size:13px;margin:0 0 20px 0;display:block}.mec-fes-list ul li{padding:10px 12px 40px}}@media (max-width:480px){.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{padding-left:0}}.mec-fes-form .mec-required{color:#ff3c3c}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.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{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence ul{padding-left:0;margin-left:0}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight{z-index:999999!important}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-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:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-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}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@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:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}@media (max-width:480px){.mec-masonry-content.mec-event-grid-modern .mec-labels-normal{display:block}}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-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-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.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}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events{margin-right:-15px;margin-left:-15px}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-next-previous-events{width:100%;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-wrap .mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event{float:right;text-align:right}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}.mec-next-multiple ul{padding:0}.mec-next-multiple ul li a{display:block;position:relative;padding:11px 14px 9px;z-index:9}.mec-next-multiple ul .mec-date,.mec-next-multiple ul .mec-time{display:inline-block;width:50%}.mec-next-multiple ul .mec-date{float:left;text-align:left}.mec-next-multiple ul .mec-time{text-align:right;position:relative;z-index:-1}.mec-next-multiple ul .mec-time dd{margin:0}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:14px;line-height:24px}@media(max-width:1280px){.mec-next-multiple ul li a{padding:7px 9px 5px}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:12px}}@media(max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{cursor:pointer;box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-event-title-soldout,.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-few-tickets{display:inline}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal,.mec-owl-carousel .mec-event-footer-carousel-type3 span.soldout{margin-top:0;color:#fff;display:unset}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#d2d2d2}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{margin-bottom:-20px;font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:20px 0 0;padding:10px 15px;border-radius:3px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}
changelog.txt CHANGED
@@ -1,4 +1,19 @@
1
- v 5.13.510 November 2020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: “Event Sold-out” notification (pro)
3
  - Added: “Booking Rejection” notification (pro)
4
  - Added: Ability to translate booking fields in the translated event in multilingual websites (pro)
1
+ v 5.13.618 November 2020
2
+ - Improved: Weekly skin to show events of the previous and next month in the current month (pro)
3
+ - Fixed: Showing long-time span events in shortcakes
4
+ - Fixed: Sending duplicated emails on booking reminder notification (pro)
5
+ - Fixed: Showing dates on the backend booking menu (pro)
6
+ - Fixed: Ticket variations in the booking export feature (pro)
7
+ - Fixed: Event description exported to Google or iCal services
8
+ - Fixed: Manual username and password in the booking form (pro)
9
+ - Fixed: Date format of multiple-day events
10
+ - Fixed: "%%payment_gateway%%" placeholder (pro)
11
+ - Fixed: Showing unlimited for tickets when the total booking is limited (pro)
12
+ - Fixed: The export and import of the advanced events
13
+ - Fixed: Related to Daylight Saving and Timezones
14
+ - Fixed: Some PHP notices
15
+
16
+ v 5.13.5 – 10 November 2020
17
  - Added: “Event Sold-out” notification (pro)
18
  - Added: “Booking Rejection” notification (pro)
19
  - Added: Ability to translate booking fields in the translated event in multilingual websites (pro)
languages/modern-events-calendar-lite-cs_CZ.mo CHANGED
Binary file
languages/modern-events-calendar-lite-cs_CZ.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
- "POT-Creation-Date: 2020-11-10 21:11+0330\n"
5
- "PO-Revision-Date: 2020-11-10 21:12+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -106,8 +106,8 @@ msgstr "Nastavení"
106
 
107
  #: app/features/contextual.php:62 app/features/events.php:1617
108
  #: app/features/events.php:2513 app/features/mec/booking.php:606
109
- #: app/features/mec/booking.php:854 app/features/mec/support.php:29
110
- #: app/libraries/main.php:572
111
  msgid "Booking Form"
112
  msgstr "Rezervační formulář"
113
 
@@ -135,7 +135,7 @@ msgstr ""
135
  "iframe>"
136
 
137
  #: app/features/contextual.php:70 app/features/events.php:1625
138
- #: app/features/mec/booking.php:798 app/features/mec/support-page.php:115
139
  #: app/features/mec/support.php:36 app/libraries/main.php:573
140
  msgid "Payment Gateways"
141
  msgstr "Platební brány"
@@ -266,7 +266,7 @@ msgid "Google Recaptcha Options"
266
  msgstr "Možnosti Google Recaptcha"
267
 
268
  #: app/features/contextual.php:258 app/features/mec/single.php:248
269
- #: app/libraries/main.php:558
270
  msgid "Countdown Options"
271
  msgstr "Možnosti Odpočítávání"
272
 
@@ -285,20 +285,20 @@ msgid "Frontend Event Submission"
285
  msgstr "Předání události frontendu"
286
 
287
  #: app/features/contextual.php:298 app/features/events.php:345
288
- #: app/libraries/main.php:559
289
  msgid "Exceptional Days"
290
  msgstr "Výjimečné dny"
291
 
292
  #: app/features/contextual.php:308 app/features/events.php:315
293
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
294
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
295
- #: app/libraries/main.php:567 app/libraries/main.php:597
296
  #: app/libraries/main.php:684
297
  msgid "Booking"
298
  msgstr "Rezervace"
299
 
300
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
301
- #: app/features/mec/booking.php:814 app/libraries/main.php:569
302
  msgid "Coupons"
303
  msgstr "Kupóny"
304
 
@@ -356,8 +356,8 @@ msgid "File uploaded!"
356
  msgstr "Obrázek je nahraný!"
357
 
358
  #: app/features/events.php:167 app/features/ix/export.php:34
359
- #: app/features/mec/dashboard.php:265 app/libraries/main.php:5551
360
- #: app/libraries/main.php:5571 app/skins/daily_view/tpl.php:82
361
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
362
  #: app/skins/yearly_view/tpl.php:71
363
  msgid "Events"
@@ -381,7 +381,7 @@ msgstr "Přidat událost"
381
  msgid "Add New Event"
382
  msgstr "Přidat novou událost"
383
 
384
- #: app/features/events.php:171 app/features/ix.php:4391
385
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
386
  #: app/skins/map/tpl.php:88
387
  msgid "No events found!"
@@ -404,7 +404,7 @@ msgstr "Zobrazit událost"
404
  msgid "No events found in Trash!"
405
  msgstr "V koši nebyly nalezeny žádné události!"
406
 
407
- #: app/features/events.php:192 app/features/events.php:3597
408
  #: app/features/mec/meta_boxes/display_options.php:1463
409
  #: app/features/mec/meta_boxes/search_form.php:31
410
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -419,19 +419,19 @@ msgstr "V koši nebyly nalezeny žádné události!"
419
  #: app/features/mec/meta_boxes/search_form.php:760
420
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
421
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
422
- #: app/features/search.php:68 app/libraries/main.php:6350
423
- #: app/libraries/main.php:6404 app/libraries/skins.php:934
424
  #: app/skins/single.php:1016 app/skins/single/default.php:219
425
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
426
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
427
  msgid "Category"
428
  msgstr "Kategorie"
429
 
430
- #: app/features/events.php:193 app/features/events.php:3552
431
  #: app/features/fes/form.php:865 app/features/mec.php:467
432
  #: app/features/mec/meta_boxes/filter.php:69
433
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6349
434
- #: app/libraries/main.php:6403
435
  msgid "Categories"
436
  msgstr "Kategorie"
437
 
@@ -542,9 +542,9 @@ msgstr "Umístění"
542
  msgid "Links"
543
  msgstr "Odkaz"
544
 
545
- #: app/features/events.php:349 app/features/events.php:3599
546
- #: app/features/events.php:3788 app/features/ix.php:3980
547
- #: app/features/ix.php:4022
548
  #: app/features/mec/meta_boxes/display_options.php:1466
549
  #: app/features/mec/meta_boxes/search_form.php:46
550
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -562,8 +562,8 @@ msgstr "Odkaz"
562
  #: app/features/organizers.php:204 app/features/organizers.php:260
563
  #: app/features/organizers.php:262 app/features/organizers.php:271
564
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
565
- #: app/features/search.php:80 app/libraries/main.php:6356
566
- #: app/libraries/main.php:6410 app/libraries/skins.php:986
567
  #: app/skins/single.php:1264 app/skins/single/default.php:244
568
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
569
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
@@ -572,7 +572,7 @@ msgstr "Organizátor"
572
 
573
  #: app/features/events.php:350 app/features/events.php:1165
574
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
575
- #: app/libraries/main.php:6387 app/libraries/main.php:6436
576
  #: app/skins/single.php:1042 app/skins/single/default.php:142
577
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
578
  #: app/skins/single/modern.php:237
@@ -594,17 +594,17 @@ msgid "Guest Data"
594
  msgstr "Údaje hosta"
595
 
596
  #: app/features/events.php:511 app/features/events.php:2499
597
- #: app/features/events.php:4111 app/features/fes.php:243
598
  #: app/features/fes/form.php:795 app/features/labels.php:178
599
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
600
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
601
- #: app/libraries/notifications.php:1611 app/modules/booking/steps/form.php:63
602
  msgid "Name"
603
  msgstr "Jméno"
604
 
605
  #: app/features/events.php:512 app/features/events.php:2508
606
  #: app/features/events.php:2575 app/features/events.php:2664
607
- #: app/features/events.php:4114 app/features/fes.php:243
608
  #: app/features/fes/form.php:791 app/features/login/login.php:5
609
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
610
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
@@ -612,7 +612,7 @@ msgstr "Jméno"
612
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
613
  #: app/features/speakers.php:204 app/libraries/main.php:1872
614
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
615
- #: app/libraries/notifications.php:1612 app/modules/booking/steps/form.php:72
616
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
617
  #: app/skins/single.php:1340 app/skins/single/default.php:261
618
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
@@ -631,9 +631,9 @@ msgid "Date and Time"
631
  msgstr "Datum a čas"
632
 
633
  #: app/features/events.php:528 app/features/events.php:532
634
- #: app/features/events.php:3600 app/features/events.php:3788
635
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
636
- #: app/features/ix.php:3980 app/features/ix.php:4022
637
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
638
  #: app/features/mec/meta_boxes/display_options.php:52
639
  #: app/features/mec/meta_boxes/display_options.php:295
@@ -655,9 +655,9 @@ msgid "Start Date"
655
  msgstr "Počátečná den"
656
 
657
  #: app/features/events.php:547 app/features/events.php:551
658
- #: app/features/events.php:3601 app/features/events.php:3788
659
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
660
- #: app/features/ix.php:3980 app/features/ix.php:4022
661
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
662
  #: app/features/popup/event.php:92
663
  msgid "End Date"
@@ -713,7 +713,7 @@ msgstr ""
713
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
714
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
715
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
716
- #: app/features/mec/booking.php:830 app/features/mec/booking.php:856
717
  #: app/features/mec/dashboard.php:71
718
  #: app/features/mec/meta_boxes/display_options.php:85
719
  #: app/features/mec/meta_boxes/display_options.php:98
@@ -995,10 +995,10 @@ msgstr ""
995
  msgid "Show only one occurrence of this event"
996
  msgstr "Další výskyt dalších událostí"
997
 
998
- #: app/features/events.php:1161 app/features/events.php:3788
999
- #: app/features/fes/form.php:833 app/features/ix.php:3980
1000
- #: app/features/ix.php:4022 app/features/mec/settings.php:763
1001
- #: app/libraries/main.php:6386 app/libraries/main.php:6435
1002
  #: app/widgets/single.php:103
1003
  msgid "Event Cost"
1004
  msgstr "Cena události"
@@ -1033,7 +1033,7 @@ msgstr ""
1033
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
1034
  "vícedenních výskytů."
1035
 
1036
- #: app/features/events.php:1334 app/libraries/render.php:559
1037
  msgid "Day 1"
1038
  msgstr "Den 1"
1039
 
@@ -1057,9 +1057,9 @@ msgstr "Den %s"
1057
  #: app/features/events.php:1376 app/features/events.php:1415
1058
  #: app/features/events.php:1450 app/features/events.php:1482
1059
  #: app/features/events.php:1511 app/features/events.php:2371
1060
- #: app/features/events.php:2418 app/features/events.php:3596
1061
- #: app/features/events.php:3788 app/features/fes/form.php:256
1062
- #: app/features/ix.php:3980 app/features/ix.php:4022
1063
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1064
  #: app/features/mec/styling.php:130
1065
  msgid "Title"
@@ -1100,7 +1100,7 @@ msgstr "Do např. 8:45"
1100
 
1101
  #: app/features/events.php:1419 app/features/events.php:1453
1102
  #: app/features/events.php:1514 app/features/events.php:1892
1103
- #: app/features/events.php:2074 app/features/events.php:3788
1104
  msgid "Description"
1105
  msgstr "Popis"
1106
 
@@ -1108,8 +1108,8 @@ msgstr "Popis"
1108
  #: app/features/events.php:1519 app/features/fes/form.php:959
1109
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1110
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1111
- #: app/libraries/main.php:577 app/libraries/main.php:6357
1112
- #: app/libraries/main.php:6411 app/modules/speakers/details.php:18
1113
  msgid "Speakers"
1114
  msgstr "Řečníci"
1115
 
@@ -1124,7 +1124,7 @@ msgstr "Odkazy na událost"
1124
 
1125
  #: app/features/events.php:1553 app/features/events.php:1561
1126
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1127
- #: app/libraries/main.php:6384 app/libraries/main.php:6433
1128
  msgid "Event Link"
1129
  msgstr "Odkaz na událost"
1130
 
@@ -1153,8 +1153,8 @@ msgid "URL Shortener"
1153
  msgstr "Zkracovač URL"
1154
 
1155
  #: app/features/events.php:1571 app/features/events.php:1584
1156
- #: app/features/fes/form.php:817 app/libraries/main.php:6385
1157
- #: app/libraries/main.php:6434 app/skins/single.php:1126
1158
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1159
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1160
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
@@ -1194,7 +1194,7 @@ msgid "Total User Booking Limits"
1194
  msgstr "Celkové limity rezervace uživatelů"
1195
 
1196
  #: app/features/events.php:1610 app/features/events.php:1835
1197
- #: app/libraries/book.php:63 app/libraries/main.php:6389
1198
  #: app/modules/booking/steps/tickets.php:137
1199
  #: app/modules/booking/steps/tickets.php:143
1200
  msgid "Tickets"
@@ -1209,7 +1209,7 @@ msgstr "Poplatky"
1209
  msgid "Ticket Variations / Options"
1210
  msgstr "Varianty vstupenky / možnosti"
1211
 
1212
- #: app/features/events.php:1619 app/features/mec/booking.php:885
1213
  #: app/features/mec/support-page.php:118
1214
  msgid "Organizer Payment"
1215
  msgstr "Platba organizátora"
@@ -1313,8 +1313,8 @@ msgstr "Ověřovací email"
1313
 
1314
  #: app/features/events.php:1763 app/features/events.php:1773
1315
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1316
- #: app/features/mec/booking.php:253 app/features/mec/booking.php:824
1317
- #: app/features/mec/booking.php:849
1318
  #: app/features/mec/meta_boxes/search_form.php:33
1319
  #: app/features/mec/meta_boxes/search_form.php:40
1320
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1420,8 +1420,8 @@ msgstr "Zakázaný"
1420
 
1421
  #: app/features/events.php:1764 app/features/events.php:1774
1422
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1423
- #: app/features/mec/booking.php:254 app/features/mec/booking.php:823
1424
- #: app/features/mec/booking.php:850 app/features/mec/settings.php:106
1425
  msgid "Enabled"
1426
  msgstr "Povoleno"
1427
 
@@ -1474,8 +1474,8 @@ msgid "Ticket ID"
1474
  msgstr "Vstupenka"
1475
 
1476
  #: app/features/events.php:1855 app/features/events.php:2039
1477
- #: app/features/events.php:3788 app/features/fes.php:243
1478
- #: app/features/ix.php:3980 app/features/ix.php:4022
1479
  #: app/features/labels.php:177 app/features/locations.php:262
1480
  #: app/features/organizers.php:203 app/features/speakers.php:282
1481
  msgid "ID"
@@ -1486,14 +1486,14 @@ msgid "Ticket Name"
1486
  msgstr "Název vstupenky"
1487
 
1488
  #: app/features/events.php:1863 app/features/events.php:2046
1489
- #: app/features/events.php:3788 app/features/ix.php:3980
1490
- #: app/features/ix.php:4022
1491
  msgid "Start Time"
1492
  msgstr "Začátek"
1493
 
1494
  #: app/features/events.php:1876 app/features/events.php:2059
1495
- #: app/features/events.php:3788 app/features/ix.php:3980
1496
- #: app/features/ix.php:4022
1497
  msgid "End Time"
1498
  msgstr "Konec"
1499
 
@@ -1813,32 +1813,32 @@ msgstr "Paragraf"
1813
  msgid "Fixed Fields"
1814
  msgstr "Požadovaná pole"
1815
 
1816
- #: app/features/events.php:3498 app/features/events.php:3516
1817
- #: app/features/events.php:3534 app/features/events.php:3552
1818
  #, php-format
1819
  msgid "Show all %s"
1820
  msgstr "Ukázat všechny %s"
1821
 
1822
- #: app/features/events.php:3498
1823
  msgid "labels"
1824
  msgstr "štítky"
1825
 
1826
- #: app/features/events.php:3516
1827
  msgid "locations"
1828
  msgstr "umístění"
1829
 
1830
- #: app/features/events.php:3534
1831
  msgid "organizers"
1832
  msgstr "organizátoři"
1833
 
1834
- #: app/features/events.php:3568
1835
  #, fuzzy
1836
  #| msgid "Attendees Limit"
1837
  msgid "Attendees List"
1838
  msgstr "Limit účastníků"
1839
 
1840
- #: app/features/events.php:3598 app/features/events.php:3788
1841
- #: app/features/ix.php:3980 app/features/ix.php:4022
1842
  #: app/features/locations.php:58 app/features/locations.php:263
1843
  #: app/features/locations.php:324 app/features/locations.php:326
1844
  #: app/features/locations.php:335
@@ -1857,8 +1857,8 @@ msgstr "Limit účastníků"
1857
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1858
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1859
  #: app/features/popup/event.php:125 app/features/search.php:74
1860
- #: app/libraries/main.php:2641 app/libraries/main.php:6354
1861
- #: app/libraries/main.php:6408 app/libraries/skins.php:960
1862
  #: app/skins/single.php:943 app/skins/single.php:1386
1863
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1864
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
@@ -1866,48 +1866,48 @@ msgstr "Limit účastníků"
1866
  msgid "Location"
1867
  msgstr "Umístění"
1868
 
1869
- #: app/features/events.php:3603
1870
  msgid "Repeat"
1871
  msgstr "Opakovat"
1872
 
1873
- #: app/features/events.php:3604
1874
  msgid "Author"
1875
  msgstr "Autor"
1876
 
1877
- #: app/features/events.php:3725 app/features/events.php:3726
1878
  #, fuzzy
1879
  #| msgid "iCal Export"
1880
  msgid "iCal / Outlook Export"
1881
  msgstr "iCal Export"
1882
 
1883
- #: app/features/events.php:3728 app/features/events.php:3729
1884
  msgid "CSV Export"
1885
  msgstr "CSV Export"
1886
 
1887
- #: app/features/events.php:3731 app/features/events.php:3732
1888
  msgid "MS Excel Export"
1889
  msgstr "MS Excel Export"
1890
 
1891
- #: app/features/events.php:3734 app/features/events.php:3735
1892
  msgid "XML Export"
1893
  msgstr "XML Export"
1894
 
1895
- #: app/features/events.php:3737 app/features/events.php:3738
1896
  msgid "JSON Export"
1897
  msgstr "JSON Export"
1898
 
1899
- #: app/features/events.php:3740 app/features/events.php:3741
1900
- #: app/features/events.php:3897
1901
  msgid "Duplicate"
1902
  msgstr "Duplikát"
1903
 
1904
- #: app/features/events.php:3788 app/features/ix.php:3980
1905
- #: app/features/ix.php:4022
1906
  msgid "Link"
1907
  msgstr "Odkaz"
1908
 
1909
- #: app/features/events.php:3788 app/features/ix.php:3980
1910
- #: app/features/ix.php:4022 app/features/locations.php:110
1911
  #: app/features/locations.php:180 app/features/locations.php:264
1912
  #: app/features/mec/meta_boxes/search_form.php:74
1913
  #: app/features/mec/meta_boxes/search_form.php:144
@@ -1923,49 +1923,49 @@ msgstr "Odkaz"
1923
  msgid "Address"
1924
  msgstr "Adresa"
1925
 
1926
- #: app/features/events.php:3788
1927
  #, php-format
1928
  msgid "%s Tel"
1929
  msgstr "%s Tel"
1930
 
1931
- #: app/features/events.php:3788
1932
  #, php-format
1933
  msgid "%s Email"
1934
  msgstr "%s Email"
1935
 
1936
  # v kontextu
1937
- #: app/features/events.php:3788 app/features/fes/form.php:850
1938
  #: app/features/mec/settings.php:769
1939
  msgid "Featured Image"
1940
  msgstr "Hlavní obrázek"
1941
 
1942
- #: app/features/events.php:4117 app/features/fes.php:243
1943
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1944
- #: app/libraries/main.php:6388
1945
  msgid "Ticket"
1946
  msgstr "Vstupenka"
1947
 
1948
- #: app/features/events.php:4120 app/features/profile/profile.php:186
1949
  msgid "Variations"
1950
  msgstr "Variace"
1951
 
1952
- #: app/features/events.php:4135 app/features/fes.php:316
1953
  msgid "Unknown"
1954
  msgstr "Neznámý"
1955
 
1956
- #: app/features/events.php:4161
1957
  msgid ""
1958
  "If you want to send an email, first select your attendees and then click in "
1959
  "the button below, please."
1960
  msgstr ""
1961
 
1962
- #: app/features/events.php:4161 app/features/mec/report.php:58
1963
  #, fuzzy
1964
  #| msgid "Organizer Email"
1965
  msgid "Send Email"
1966
  msgstr "Organizátor Email"
1967
 
1968
- #: app/features/events.php:4165
1969
  #, fuzzy
1970
  #| msgid "Attendees Form"
1971
  msgid "No Attendees Found!"
@@ -2201,8 +2201,8 @@ msgstr "Odebrat obrázek"
2201
  #: app/features/fes/form.php:891 app/features/labels.php:61
2202
  #: app/features/labels.php:221 app/features/mec.php:468
2203
  #: app/features/mec/meta_boxes/filter.php:72
2204
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6351
2205
- #: app/libraries/main.php:6405 app/skins/single.php:1156
2206
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2207
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2208
  msgid "Labels"
@@ -2286,27 +2286,27 @@ msgstr "Typ souboru by měl být XML nebo ICS."
2286
  msgid "An error occurred during the file upload! Please check permissions!"
2287
  msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
2288
 
2289
- #: app/features/ix.php:265 app/libraries/main.php:6636
2290
- #: app/libraries/main.php:6656
2291
  msgid "Confirmed"
2292
  msgstr "Potvrzeno"
2293
 
2294
- #: app/features/ix.php:266 app/libraries/main.php:6637
2295
- #: app/libraries/main.php:6664
2296
  msgid "Rejected"
2297
  msgstr "Odmítnuto"
2298
 
2299
- #: app/features/ix.php:270 app/features/mec/booking.php:992
2300
- #: app/features/mec/booking.php:1014 app/features/mec/modules.php:431
2301
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2302
- #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1313
2303
- #: app/features/mec/settings.php:1335 app/features/mec/single.php:446
2304
- #: app/features/mec/single.php:468 app/libraries/main.php:6684
2305
  msgid "Verified"
2306
  msgstr "Ověřeno"
2307
 
2308
  #: app/features/ix.php:271 app/features/labels.php:118
2309
- #: app/features/labels.php:143 app/libraries/main.php:6685
2310
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2311
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2312
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
@@ -2342,63 +2342,63 @@ msgstr "Typ souboru by měl být XML nebo ICS."
2342
  msgid "The events are imported successfully!"
2343
  msgstr "Události byly úspěšně importovány!"
2344
 
2345
- #: app/features/ix.php:1166
2346
  msgid "Third Party plugin is not installed and activated!"
2347
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
2348
 
2349
- #: app/features/ix.php:1190
2350
  msgid "Third Party plugin is invalid!"
2351
  msgstr "Plugin třetí strany je neplatný!"
2352
 
2353
- #: app/features/ix.php:3165 app/features/ix.php:3223
2354
  #, fuzzy
2355
  #| msgid "Both of API key and Calendar ID are required!"
2356
  msgid "API key and Calendar ID are required!"
2357
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
2358
 
2359
- #: app/features/ix.php:3218 app/features/ix.php:3663 app/features/ix.php:4398
2360
  #, fuzzy
2361
  #| msgid "Please select some events to import!"
2362
  msgid "Please select events to import!"
2363
  msgstr "Vyberte události, které chcete importovat!"
2364
 
2365
- #: app/features/ix.php:3605 app/features/ix.php:3668
2366
  #, fuzzy
2367
  #| msgid "Both of API key and Group URL are required!"
2368
  msgid "API key and Group URL are required!"
2369
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
2370
 
2371
- #: app/features/ix.php:3907
2372
  msgid "Check at Meetup"
2373
  msgstr "Ověřit Meetup"
2374
 
2375
- #: app/features/ix.php:3980 app/features/ix.php:4022
2376
  msgid "Organizer Tel"
2377
  msgstr "Organizátor Tel"
2378
 
2379
- #: app/features/ix.php:3980 app/features/ix.php:4022
2380
  msgid "Organizer Email"
2381
  msgstr "Organizátor Email"
2382
 
2383
  # Client Secret dle kontextu
2384
- #: app/features/ix.php:4098
2385
  #, fuzzy
2386
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2387
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2388
  msgstr ""
2389
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
2390
 
2391
- #: app/features/ix.php:4121
2392
  #, fuzzy, php-format
2393
  #| msgid "All seems good! Please click %s for authenticating your app."
2394
  msgid "All seems good! Please click %s to authenticate your app."
2395
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
2396
 
2397
- #: app/features/ix.php:4121 app/features/mec/settings.php:1236
2398
  msgid "here"
2399
  msgstr ""
2400
 
2401
- #: app/features/ix.php:4175
2402
  #, fuzzy
2403
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2404
  msgid "Client App, Client Secret, and Calendar ID are all required!"
@@ -2406,28 +2406,28 @@ msgstr ""
2406
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
2407
  "povinné!"
2408
 
2409
- #: app/features/ix.php:4320
2410
  #, fuzzy, php-format
2411
  #| msgid "%s events added to Google Calendar successfully."
2412
  msgid "%s events added to Google Calendar with success."
2413
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
2414
 
2415
- #: app/features/ix.php:4321
2416
  #, fuzzy, php-format
2417
  #| msgid "%s previously added events get updated."
2418
  msgid "%s Updated previously added events."
2419
  msgstr "% s dříve přidané události byly aktualizovány."
2420
 
2421
- #: app/features/ix.php:4322
2422
  #, php-format
2423
  msgid "%s events failed to add for following reasons: %s"
2424
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
2425
 
2426
- #: app/features/ix.php:4354
2427
  msgid "Please insert your Facebook page's link."
2428
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
2429
 
2430
- #: app/features/ix.php:4365 app/features/ix.php:4407
2431
  #, fuzzy
2432
  #| msgid ""
2433
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2439,7 +2439,7 @@ msgstr ""
2439
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
2440
  "poskytněte nám platný odkaz na stránku Facebooku."
2441
 
2442
- #: app/features/ix.php:4402
2443
  msgid "Please insert your facebook page's link."
2444
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
2445
 
@@ -2611,9 +2611,9 @@ msgstr "Přepnout"
2611
  msgid "Add to Google Calendar"
2612
  msgstr "Přidat do Google kalendáře"
2613
 
2614
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:994
2615
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2616
- #: app/features/mec/settings.php:1315 app/features/mec/single.php:448
2617
  msgid "Checking ..."
2618
  msgstr "Ověřování ..."
2619
 
@@ -3118,8 +3118,8 @@ msgstr "Událost %s"
3118
 
3119
  #: app/features/locations.php:59 app/features/mec.php:469
3120
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
3121
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6353
3122
- #: app/libraries/main.php:6407
3123
  msgid "Locations"
3124
  msgstr "Umístění"
3125
 
@@ -3238,8 +3238,8 @@ msgstr "Vyberte obrázek"
3238
  msgid "Don't show map in single event page"
3239
  msgstr "Nezobrazovat mapu na jednostránkové události"
3240
 
3241
- #: app/features/locations.php:398 app/libraries/main.php:6391
3242
- #: app/libraries/main.php:6438
3243
  msgid "Other Locations"
3244
  msgstr "Další místa"
3245
 
@@ -3327,7 +3327,7 @@ msgstr "Podpora"
3327
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3328
  #: app/features/mec/meta_boxes/filter.php:71
3329
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3330
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
3331
  msgid "Organizers"
3332
  msgstr "Organizátoři"
3333
 
@@ -3533,9 +3533,9 @@ msgid "Search..."
3533
  msgstr "Vyhledávání ..."
3534
 
3535
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3536
- #: app/features/mec/booking.php:910 app/features/mec/booking.php:919
3537
- #: app/features/mec/booking.php:929 app/features/mec/booking.php:1011
3538
- #: app/features/mec/booking.php:1025 app/features/mec/messages.php:15
3539
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3540
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3541
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
@@ -3545,8 +3545,8 @@ msgstr "Vyhledávání ..."
3545
  #: app/features/mec/notifications.php:1218
3546
  #: app/features/mec/notifications.php:1324
3547
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3548
- #: app/features/mec/settings.php:1264 app/features/mec/settings.php:1274
3549
- #: app/features/mec/settings.php:1332 app/features/mec/settings.php:1346
3550
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3551
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3552
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
@@ -3849,7 +3849,7 @@ msgstr "Automatické ověření pro placené rezervace"
3849
  msgid "Send confirmation email in auto confirmation mode"
3850
  msgstr ""
3851
 
3852
- #: app/features/mec/booking.php:412 app/libraries/main.php:568
3853
  #, fuzzy
3854
  #| msgid "Booking Style"
3855
  msgid "Booking Shortcode"
@@ -3888,8 +3888,8 @@ msgstr ""
3888
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
3889
  "novou nabídku na řídícím panelu > Rezervace"
3890
 
3891
- #: app/features/mec/booking.php:446 app/features/mec/booking.php:816
3892
- #: app/libraries/main.php:570
3893
  msgid "Taxes / Fees"
3894
  msgstr "Daně / poplatky"
3895
 
@@ -3901,7 +3901,7 @@ msgstr "Povolit modul daní / poplatků"
3901
  msgid "Add Fee"
3902
  msgstr "Přidat poplatek"
3903
 
3904
- #: app/features/mec/booking.php:523 app/libraries/main.php:571
3905
  msgid "Ticket Variations & Options"
3906
  msgstr "Varianty a možnosti vstupenek"
3907
 
@@ -3913,11 +3913,35 @@ msgstr "Povolit modul možností vstupenek"
3913
  msgid "Add Variation / Option"
3914
  msgstr "Přidat varianty / možnosti"
3915
 
3916
- #: app/features/mec/booking.php:806
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3917
  msgid "Use WooCommerce as Payment System"
3918
  msgstr ""
3919
 
3920
- #: app/features/mec/booking.php:808
3921
  msgid ""
3922
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3923
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -3925,77 +3949,77 @@ msgid ""
3925
  "fields etc, you need to configure WooCommerce on your website."
3926
  msgstr ""
3927
 
3928
- #: app/features/mec/booking.php:810
3929
  msgid ""
3930
  "You cannot use following MEC features so you should use WooCommerc and its "
3931
  "addons if you need them."
3932
  msgstr ""
3933
 
3934
- #: app/features/mec/booking.php:812
3935
  #, fuzzy
3936
  #| msgid "Payment Gateways"
3937
  msgid "Payment gateways"
3938
  msgstr "Platební brány"
3939
 
3940
- #: app/features/mec/booking.php:813
3941
  #, fuzzy
3942
  #| msgid "Price per Date"
3943
  msgid "Price per dates of tickets"
3944
  msgstr "Cena za datum"
3945
 
3946
- #: app/features/mec/booking.php:815
3947
  #, fuzzy
3948
  #| msgid "Ticket Variations / Options"
3949
  msgid "Ticket variations"
3950
  msgstr "Varianty vstupenky / možnosti"
3951
 
3952
- #: app/features/mec/booking.php:820
3953
  msgid "Automatically complete WooCommerce orders"
3954
  msgstr ""
3955
 
3956
- #: app/features/mec/booking.php:828
3957
  #, fuzzy
3958
  #| msgid "WooCommerce gateways"
3959
  msgid "Auto WooCommerce orders"
3960
  msgstr "Brána WooCommerce"
3961
 
3962
- #: app/features/mec/booking.php:829
3963
  msgid "It applies only to the orders that are related to MEC."
3964
  msgstr ""
3965
 
3966
- #: app/features/mec/booking.php:837
3967
  msgid "After Add to Cart"
3968
  msgstr ""
3969
 
3970
- #: app/features/mec/booking.php:840
3971
  #, fuzzy
3972
  #| msgid "Get Directions"
3973
  msgid "Redirect to Cart"
3974
  msgstr "Získat směr"
3975
 
3976
- #: app/features/mec/booking.php:841
3977
  #, fuzzy
3978
  #| msgid "Get Directions"
3979
  msgid "Redirect to Checkout"
3980
  msgstr "Získat směr"
3981
 
3982
- #: app/features/mec/booking.php:846
3983
  #, fuzzy
3984
  #| msgid "Booking Form"
3985
  msgid "MEC Booking Form"
3986
  msgstr "Rezervační formulář"
3987
 
3988
- #: app/features/mec/booking.php:855
3989
  msgid ""
3990
  "If enabled then users should fill the booking form in MEC and then they will "
3991
  "be redirected to checkout."
3992
  msgstr ""
3993
 
3994
- #: app/features/mec/booking.php:881
3995
  msgid "Enable Organizer Payment Module"
3996
  msgstr "Povolit platební modul organizátora"
3997
 
3998
- #: app/features/mec/booking.php:886
3999
  msgid ""
4000
  "By enabling this module, organizers are able to insert their own payment "
4001
  "credentials for enabled gateways per event and receive the payments directly!"
@@ -4003,17 +4027,17 @@ msgstr ""
4003
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
4004
  "údaje pro povolené brány pro události a přijímat platby přímo!"
4005
 
4006
- #: app/features/mec/booking.php:896
4007
  msgid "Disable / Enable payment gateways per event"
4008
  msgstr ""
4009
 
4010
- #: app/features/mec/booking.php:900
4011
  #, fuzzy
4012
  #| msgid "Payment Gateways"
4013
  msgid "Payment Gateways Per Event"
4014
  msgstr "Platební brány"
4015
 
4016
- #: app/features/mec/booking.php:901
4017
  #, fuzzy
4018
  #| msgid ""
4019
  #| "By enabling this module, organizers are able to insert their own payment "
@@ -4026,22 +4050,22 @@ msgstr ""
4026
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
4027
  "údaje pro povolené brány pro události a přijímat platby přímo!"
4028
 
4029
- #: app/features/mec/booking.php:989 app/features/mec/messages.php:78
4030
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
4031
- #: app/features/mec/settings.php:1310 app/features/mec/single.php:443
4032
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
4033
  msgid "Saved"
4034
  msgstr "Uloženo"
4035
 
4036
- #: app/features/mec/booking.php:990 app/features/mec/messages.php:79
4037
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
4038
- #: app/features/mec/settings.php:1311 app/features/mec/single.php:444
4039
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
4040
  msgid "Settings Saved!"
4041
  msgstr "Nastavení uložena!"
4042
 
4043
- #: app/features/mec/booking.php:1016 app/features/mec/modules.php:455
4044
- #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1337
4045
  #: app/features/mec/single.php:470
4046
  msgid "Please Refresh Page"
4047
  msgstr "Prosím obnovte stránku"
@@ -5274,7 +5298,7 @@ msgstr "Zobrazit vyhledávací formulář"
5274
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5275
  #: app/features/mec/single.php:386 app/features/search.php:86
5276
  #: app/features/speakers.php:60 app/features/speakers.php:283
5277
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
5278
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5279
  msgid "Speaker"
5280
  msgstr "Řečník"
@@ -6477,8 +6501,8 @@ msgstr ""
6477
  msgid "only once per hour"
6478
  msgstr "pouze jednou denně"
6479
 
6480
- #: app/features/mec/notifications.php:950 app/libraries/main.php:7446
6481
- #: app/libraries/main.php:7463
6482
  #, fuzzy
6483
  #| msgid "hours"
6484
  msgid "Hours"
@@ -6761,7 +6785,7 @@ msgid "You can enable/disable Schema scripts"
6761
  msgstr "Můžete povolit nebo zakázat skripty schématu"
6762
 
6763
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6764
- #: app/libraries/main.php:6362 app/libraries/main.php:6416
6765
  msgid "Weekdays"
6766
  msgstr "Pracovní dny"
6767
 
@@ -7107,8 +7131,8 @@ msgstr "Při spuštění události"
7107
  msgid "Let WordPress decide"
7108
  msgstr "WordPress"
7109
 
7110
- #: app/features/mec/settings.php:660 app/libraries/main.php:6638
7111
- #: app/libraries/main.php:6660
7112
  msgid "Pending"
7113
  msgstr "Nevyřízený"
7114
 
@@ -7266,8 +7290,8 @@ msgstr "Požadovaná pole"
7266
  msgid "Event Description"
7267
  msgstr "Popis"
7268
 
7269
- #: app/features/mec/settings.php:930 app/libraries/main.php:6385
7270
- #: app/libraries/main.php:6434
7271
  msgid "More Info Link"
7272
  msgstr "Odkaz na více informací"
7273
 
@@ -7470,31 +7494,7 @@ msgstr "Plugin třetích stran není nainstalován a aktivován!"
7470
  msgid "More information about the list ID can be found %s."
7471
  msgstr ""
7472
 
7473
- #: app/features/mec/settings.php:1241
7474
- msgid "Upload Field Options"
7475
- msgstr "Možnosti pole Nahrát"
7476
-
7477
- #: app/features/mec/settings.php:1243
7478
- msgid "Mime types"
7479
- msgstr "MIME typy"
7480
-
7481
- #: app/features/mec/settings.php:1247
7482
- msgid "Split mime types with \",\"."
7483
- msgstr "Rozdělte typy MIME pomocí “,“."
7484
-
7485
- #: app/features/mec/settings.php:1247
7486
- msgid "Default: jpeg,jpg,png,pdf"
7487
- msgstr "Výchozí: jpeg,jpg,png,pdf"
7488
-
7489
- #: app/features/mec/settings.php:1250
7490
- msgid "Maximum file size"
7491
- msgstr "Maximální velikost souboru"
7492
-
7493
- #: app/features/mec/settings.php:1254
7494
- msgid "The unit is Megabyte \"MB\""
7495
- msgstr "Jednotkou je Megabyte \"MB\""
7496
-
7497
- #: app/features/mec/single.php:38 app/libraries/main.php:556
7498
  msgid "Single Event Page"
7499
  msgstr "Stránka jedné události"
7500
 
@@ -7618,7 +7618,7 @@ msgid ""
7618
  "the settings page.' tab"
7619
  msgstr ""
7620
 
7621
- #: app/features/mec/single.php:162 app/libraries/main.php:557
7622
  #, fuzzy
7623
  #| msgid "Custom Styles"
7624
  msgid "Custom Fields"
@@ -7664,7 +7664,7 @@ msgid ""
7664
  msgstr ""
7665
  "Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
7666
 
7667
- #: app/features/mec/single.php:286 app/libraries/main.php:560
7668
  msgid "Additional Organizers"
7669
  msgstr "Další organizátoři"
7670
 
@@ -7692,7 +7692,7 @@ msgstr ""
7692
  "Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
7693
  "jediné události."
7694
 
7695
- #: app/features/mec/single.php:318 app/libraries/main.php:562
7696
  #: app/skins/single.php:170 app/skins/single.php:435
7697
  msgid "Related Events"
7698
  msgstr "Související události"
@@ -7707,7 +7707,7 @@ msgstr ""
7707
  msgid "Select Taxonomies:"
7708
  msgstr "Vyberte taxonomie:"
7709
 
7710
- #: app/features/mec/single.php:360 app/libraries/main.php:563
7711
  #, fuzzy
7712
  #| msgid "Next/Previous Buttons"
7713
  msgid "Next / Previous Events"
@@ -8559,8 +8559,8 @@ msgstr "např. info@itreseni.cz"
8559
  msgid "eg. https://webnus.net"
8560
  msgstr "např. https://webnus.net"
8561
 
8562
- #: app/features/organizers.php:312 app/libraries/main.php:6390
8563
- #: app/libraries/main.php:6437 app/skins/single.php:1314
8564
  msgid "Other Organizers"
8565
  msgstr "Další organizátoři"
8566
 
@@ -8818,9 +8818,9 @@ msgstr "Vyhledat"
8818
  msgid "No search result."
8819
  msgstr "Žádný výsledek vyhledávání."
8820
 
8821
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6392
8822
- #: app/libraries/main.php:6439 app/libraries/notifications.php:1256
8823
- #: app/libraries/render.php:531 app/libraries/render.php:853
8824
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8825
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8826
  #: app/modules/next-event/details.php:154
@@ -8919,9 +8919,9 @@ msgstr ""
8919
  "Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
8920
  "hodinového plánu a v sekci widgetu řečníka!"
8921
 
8922
- #: app/features/wc.php:103 app/libraries/notifications.php:1241
8923
- #: app/libraries/notifications.php:1256 app/libraries/notifications.php:1267
8924
- #: app/libraries/notifications.php:1536 app/libraries/notifications.php:1537
8925
  #, php-format
8926
  msgid "%s to %s"
8927
  msgstr ""
@@ -8941,11 +8941,11 @@ msgstr ""
8941
  msgid "%s Price"
8942
  msgstr "%s Cena"
8943
 
8944
- #: app/libraries/book.php:703 app/libraries/book.php:794
8945
  msgid "Discount"
8946
  msgstr "Sleva"
8947
 
8948
- #: app/libraries/book.php:881 app/modules/booking/default.php:426
8949
  #: app/modules/booking/default.php:531
8950
  msgid "Download Invoice"
8951
  msgstr "Stáhnout fakturu"
@@ -9078,49 +9078,49 @@ msgstr "Zobrazení posuvníku"
9078
  msgid "Timeline View"
9079
  msgstr "Zobrazení rozvrhu"
9080
 
9081
- #: app/libraries/main.php:391 app/libraries/main.php:6364
9082
- #: app/libraries/main.php:6418
9083
  msgid "SU"
9084
  msgstr "NE"
9085
 
9086
- #: app/libraries/main.php:392 app/libraries/main.php:6365
9087
- #: app/libraries/main.php:6419
9088
  msgid "MO"
9089
  msgstr "PO"
9090
 
9091
- #: app/libraries/main.php:393 app/libraries/main.php:6366
9092
- #: app/libraries/main.php:6420
9093
  msgid "TU"
9094
  msgstr "ÚT"
9095
 
9096
- #: app/libraries/main.php:394 app/libraries/main.php:6367
9097
- #: app/libraries/main.php:6421
9098
  msgid "WE"
9099
  msgstr "ST"
9100
 
9101
- #: app/libraries/main.php:395 app/libraries/main.php:6368
9102
- #: app/libraries/main.php:6422
9103
  msgid "TH"
9104
  msgstr "ČT"
9105
 
9106
- #: app/libraries/main.php:396 app/libraries/main.php:6369
9107
- #: app/libraries/main.php:6423
9108
  msgid "FR"
9109
  msgstr "PÁ"
9110
 
9111
- #: app/libraries/main.php:397 app/libraries/main.php:6370
9112
- #: app/libraries/main.php:6424
9113
  msgid "SA"
9114
  msgstr "SO"
9115
 
9116
- #: app/libraries/main.php:552
9117
- msgid "Upload Field"
9118
- msgstr "Nahrát pole"
9119
-
9120
- #: app/libraries/main.php:561
9121
  msgid "Additional Locations"
9122
  msgstr "Další umístění"
9123
 
 
 
 
 
9124
  #: app/libraries/main.php:726
9125
  msgid "Modules"
9126
  msgstr "Moduly"
@@ -9470,111 +9470,111 @@ msgstr "Vložte štítek pro tuto možnost"
9470
  msgid "Free"
9471
  msgstr "Zdarma"
9472
 
9473
- #: app/libraries/main.php:4447 app/libraries/main.php:6699
9474
  msgid "M.E. Calender"
9475
  msgstr "M.E. Kalendář"
9476
 
9477
- #: app/libraries/main.php:4603
9478
  #, php-format
9479
  msgid "Copy of %s"
9480
  msgstr "Kopie %s"
9481
 
9482
- #: app/libraries/main.php:5475
9483
  msgid "Booked an event."
9484
  msgstr "Událost byla rezervována."
9485
 
9486
- #: app/libraries/main.php:5516
9487
  #, php-format
9488
  msgid "%s booked %s event."
9489
  msgstr "%s zarezervoval %s událost."
9490
 
9491
- #: app/libraries/main.php:6347 app/libraries/main.php:6401
9492
  msgid "Taxonomies"
9493
  msgstr "Taxonomie"
9494
 
9495
  # Mrknout na kontext
9496
- #: app/libraries/main.php:6349 app/libraries/main.php:6403
9497
  msgid "Category Plural Label"
9498
  msgstr "Štítek množné kategorie"
9499
 
9500
  # Mrknout na kontext
9501
- #: app/libraries/main.php:6350 app/libraries/main.php:6404
9502
  msgid "Category Singular Label"
9503
  msgstr "Štítek jednotné kategorie"
9504
 
9505
- #: app/libraries/main.php:6351 app/libraries/main.php:6405
9506
  msgid "Label Plural Label"
9507
  msgstr "Štítek množného štítku"
9508
 
9509
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9510
  msgid "Label Singular Label"
9511
  msgstr "Štítek jednotného štítku"
9512
 
9513
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9514
  msgid "label"
9515
  msgstr "štítek"
9516
 
9517
- #: app/libraries/main.php:6353 app/libraries/main.php:6407
9518
  msgid "Location Plural Label"
9519
  msgstr "Štítek množného umístění"
9520
 
9521
- #: app/libraries/main.php:6354 app/libraries/main.php:6408
9522
  msgid "Location Singular Label"
9523
  msgstr "Štítek jednotného umístění"
9524
 
9525
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
9526
  msgid "Organizer Plural Label"
9527
  msgstr "Štítek množného organizátora"
9528
 
9529
- #: app/libraries/main.php:6356 app/libraries/main.php:6410
9530
  msgid "Organizer Singular Label"
9531
  msgstr "Štítek jednotného organizátora"
9532
 
9533
- #: app/libraries/main.php:6357 app/libraries/main.php:6411
9534
  msgid "Speaker Plural Label"
9535
  msgstr "Štítek množného řečníka"
9536
 
9537
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
9538
  msgid "Speaker Singular Label"
9539
  msgstr "Štítek jednotného řečníka"
9540
 
9541
- #: app/libraries/main.php:6364 app/libraries/main.php:6418
9542
  msgid "Sunday abbreviation"
9543
  msgstr "Neděle zkratka"
9544
 
9545
- #: app/libraries/main.php:6365 app/libraries/main.php:6419
9546
  msgid "Monday abbreviation"
9547
  msgstr "Pondělí zkratka"
9548
 
9549
- #: app/libraries/main.php:6366 app/libraries/main.php:6420
9550
  msgid "Tuesday abbreviation"
9551
  msgstr "Úterý zkratka"
9552
 
9553
- #: app/libraries/main.php:6367 app/libraries/main.php:6421
9554
  msgid "Wednesday abbreviation"
9555
  msgstr "Středa zkratka"
9556
 
9557
- #: app/libraries/main.php:6368 app/libraries/main.php:6422
9558
  msgid "Thursday abbreviation"
9559
  msgstr "Čtvrtek zkratka"
9560
 
9561
- #: app/libraries/main.php:6369 app/libraries/main.php:6423
9562
  msgid "Friday abbreviation"
9563
  msgstr "Pátek zkratka"
9564
 
9565
- #: app/libraries/main.php:6370 app/libraries/main.php:6424
9566
  msgid "Saturday abbreviation"
9567
  msgstr "Sobota zkratka"
9568
 
9569
- #: app/libraries/main.php:6374 app/libraries/main.php:6428
9570
  msgid "Others"
9571
  msgstr "Další"
9572
 
9573
- #: app/libraries/main.php:6376
9574
  msgid "Booking Success Message"
9575
  msgstr "Zpráva o úspěchu rezervace"
9576
 
9577
- #: app/libraries/main.php:6376
9578
  #, fuzzy
9579
  #| msgid ""
9580
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -9586,60 +9586,60 @@ msgstr ""
9586
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
9587
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
9588
 
9589
- #: app/libraries/main.php:6377
9590
  #, fuzzy
9591
  #| msgid "Booking Success Message"
9592
  msgid "Booking Restriction Message 1"
9593
  msgstr "Zpráva o úspěchu rezervace"
9594
 
9595
- #: app/libraries/main.php:6377
9596
  #, php-format
9597
  msgid ""
9598
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9599
  "tickets."
9600
  msgstr ""
9601
 
9602
- #: app/libraries/main.php:6378
9603
  #, fuzzy
9604
  #| msgid "Booking Success Message"
9605
  msgid "Booking Restriction Message 2"
9606
  msgstr "Zpráva o úspěchu rezervace"
9607
 
9608
- #: app/libraries/main.php:6378
9609
  #, php-format
9610
  msgid ""
9611
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9612
  "tickets."
9613
  msgstr ""
9614
 
9615
- #: app/libraries/main.php:6379
9616
  #, fuzzy
9617
  #| msgid "Booking Success Message"
9618
  msgid "Booking IP Restriction Message"
9619
  msgstr "Zpráva o úspěchu rezervace"
9620
 
9621
- #: app/libraries/main.php:6379
9622
  #, php-format
9623
  msgid "Maximum allowed number of tickets that you can book is %s."
9624
  msgstr ""
9625
 
9626
- #: app/libraries/main.php:6380
9627
  #, fuzzy
9628
  #| msgid "Booking Options"
9629
  msgid "Booking Button"
9630
  msgstr "Možnosti rezervace"
9631
 
9632
- #: app/libraries/main.php:6380 app/libraries/skins.php:1259
9633
  #: app/modules/booking/steps/tickets.php:102
9634
  msgid "Book Event"
9635
  msgstr "Rezervovat událost"
9636
 
9637
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9638
  #: app/widgets/single.php:131
9639
  msgid "Register Button"
9640
  msgstr "Registrační tlačítko"
9641
 
9642
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9643
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9644
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9645
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
@@ -9657,11 +9657,11 @@ msgstr "Registrační tlačítko"
9657
  msgid "REGISTER"
9658
  msgstr "REGISTROVAT"
9659
 
9660
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9661
  msgid "View Detail Button"
9662
  msgstr "Tlačítko Zobrazit detail"
9663
 
9664
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9665
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9666
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9667
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
@@ -9673,142 +9673,142 @@ msgstr "Tlačítko Zobrazit detail"
9673
  msgid "View Detail"
9674
  msgstr "Zobrazit detail"
9675
 
9676
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9677
  msgid "Event Detail Button"
9678
  msgstr "Tlačítko Detail události"
9679
 
9680
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9681
  msgid "Event Detail"
9682
  msgstr "Zobrazit událost"
9683
 
9684
- #: app/libraries/main.php:6388
9685
  msgid "Ticket (Singular)"
9686
  msgstr "Vstupenka (Jednotné)"
9687
 
9688
- #: app/libraries/main.php:6389
9689
  msgid "Tickets (Plural)"
9690
  msgstr "Vstupenky (Množné)"
9691
 
9692
- #: app/libraries/main.php:6547
9693
  msgid "EventON"
9694
  msgstr "EventON"
9695
 
9696
- #: app/libraries/main.php:6548
9697
  msgid "The Events Calendar"
9698
  msgstr "The Events Calendar"
9699
 
9700
- #: app/libraries/main.php:6549
9701
  msgid "Events Schedule WP Plugin"
9702
  msgstr "Events Schedule WP Plugin"
9703
 
9704
- #: app/libraries/main.php:6550
9705
  msgid "Calendarize It"
9706
  msgstr "Calendarize It"
9707
 
9708
- #: app/libraries/main.php:6551
9709
  #, fuzzy
9710
  #| msgid "Event Speakers"
9711
  msgid "Event Espresso"
9712
  msgstr "Řečník události"
9713
 
9714
- #: app/libraries/main.php:6552
9715
  #, fuzzy
9716
  #| msgid "Event Repeating (Recurring events)"
9717
  msgid "Events Manager (Recurring)"
9718
  msgstr "Opakování události (opakující se události)"
9719
 
9720
- #: app/libraries/main.php:6553
9721
  #, fuzzy
9722
  #| msgid "Modern Events Calendar (Lite)"
9723
  msgid "Events Manager (Single)"
9724
  msgstr "Modern Events Calendar (Lite)"
9725
 
9726
- #: app/libraries/main.php:6554
9727
  #, fuzzy
9728
  #| msgid "Modern Events Calendar (Lite)"
9729
  msgid "WP Event Manager"
9730
  msgstr "Modern Events Calendar (Lite)"
9731
 
9732
- #: app/libraries/main.php:6686
9733
  msgid "Waiting"
9734
  msgstr "Čekající"
9735
 
9736
- #: app/libraries/main.php:6729
9737
  #, fuzzy
9738
  #| msgid "Sunday"
9739
  msgid "Sun"
9740
  msgstr "Neděle"
9741
 
9742
- #: app/libraries/main.php:6729
9743
  #, fuzzy
9744
  #| msgid "Monday"
9745
  msgid "Mon"
9746
  msgstr "Pondělí"
9747
 
9748
- #: app/libraries/main.php:6729
9749
  #, fuzzy
9750
  #| msgid "Tel"
9751
  msgid "Tue"
9752
  msgstr "Tel"
9753
 
9754
- #: app/libraries/main.php:6729
9755
  msgid "Wed"
9756
  msgstr ""
9757
 
9758
- #: app/libraries/main.php:6729
9759
  msgid "Thu"
9760
  msgstr ""
9761
 
9762
- #: app/libraries/main.php:6729
9763
  #, fuzzy
9764
  #| msgid "Friday"
9765
  msgid "Fri"
9766
  msgstr "Pátek"
9767
 
9768
- #: app/libraries/main.php:6729
9769
  #, fuzzy
9770
  #| msgid "Start"
9771
  msgid "Sat"
9772
  msgstr "Začátek"
9773
 
9774
- #: app/libraries/main.php:6895 app/libraries/render.php:80
9775
  #: app/libraries/render.php:445
9776
  msgid "Skin controller does not exist."
9777
  msgstr "Ovladač vzhledu neexistuje."
9778
 
9779
- #: app/libraries/main.php:7110
9780
  msgid "Sold Out"
9781
  msgstr "Vyprodáno"
9782
 
9783
- #: app/libraries/main.php:7121
9784
  #, fuzzy
9785
  #| msgid "Ticket"
9786
  msgid "Last Few Tickets"
9787
  msgstr "Vstupenka"
9788
 
9789
- #: app/libraries/main.php:7452 app/libraries/main.php:7469
9790
  #, fuzzy
9791
  #| msgid "minutes"
9792
  msgid "Minutes"
9793
  msgstr "minuty"
9794
 
9795
- #: app/libraries/main.php:7474
9796
  msgid "AM / PM"
9797
  msgstr ""
9798
 
9799
- #: app/libraries/main.php:7475
9800
  msgid "AM"
9801
  msgstr "dop."
9802
 
9803
- #: app/libraries/main.php:7476
9804
  msgid "PM"
9805
  msgstr "odp."
9806
 
9807
- #: app/libraries/main.php:7484
9808
  msgid "Ongoing..."
9809
  msgstr ""
9810
 
9811
- #: app/libraries/main.php:7485
9812
  #, fuzzy
9813
  #| msgid "Expired Events"
9814
  msgid "Expired!"
@@ -9840,45 +9840,45 @@ msgstr "rezervace zrušena."
9840
  msgid "A new booking is received."
9841
  msgstr "Je přijata nová rezervace."
9842
 
9843
- #: app/libraries/notifications.php:852
9844
  msgid "A new event is added."
9845
  msgstr "Je přidána se nová událost."
9846
 
9847
- #: app/libraries/notifications.php:968
9848
  msgid "Your event is published."
9849
  msgstr "Vaše událost je zveřejněna."
9850
 
9851
- #: app/libraries/notifications.php:1118
9852
  #, fuzzy
9853
  #| msgid "Event Color"
9854
  msgid "Event is soldout!"
9855
  msgstr "Barva události"
9856
 
9857
- #: app/libraries/notifications.php:1480
9858
  msgid "to"
9859
  msgstr "do"
9860
 
9861
- #: app/libraries/notifications.php:1501 app/modules/export/details.php:48
9862
  msgid "+ Add to Google Calendar"
9863
  msgstr "+ Přidat do Google kalendáře"
9864
 
9865
- #: app/libraries/notifications.php:1502 app/modules/export/details.php:49
9866
  #, fuzzy
9867
  #| msgid "+ iCal export"
9868
  msgid "+ iCal / Outlook export"
9869
  msgstr "+ iCal export"
9870
 
9871
- #: app/libraries/notifications.php:1551
9872
  #, fuzzy, php-format
9873
  #| msgid "+ Add to Google Calendar"
9874
  msgid "+ %s to Google Calendar"
9875
  msgstr "+ Přidat do Google kalendáře"
9876
 
9877
- #: app/libraries/notifications.php:1631
9878
  msgid "Yes"
9879
  msgstr "Ano"
9880
 
9881
- #: app/libraries/notifications.php:1631
9882
  msgid "No"
9883
  msgstr "Ne"
9884
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2020-11-18 11:01+0330\n"
5
+ "PO-Revision-Date: 2020-11-18 11:01+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
106
 
107
  #: app/features/contextual.php:62 app/features/events.php:1617
108
  #: app/features/events.php:2513 app/features/mec/booking.php:606
109
+ #: app/features/mec/booking.php:872 app/features/mec/support.php:29
110
+ #: app/libraries/main.php:571
111
  msgid "Booking Form"
112
  msgstr "Rezervační formulář"
113
 
135
  "iframe>"
136
 
137
  #: app/features/contextual.php:70 app/features/events.php:1625
138
+ #: app/features/mec/booking.php:816 app/features/mec/support-page.php:115
139
  #: app/features/mec/support.php:36 app/libraries/main.php:573
140
  msgid "Payment Gateways"
141
  msgstr "Platební brány"
266
  msgstr "Možnosti Google Recaptcha"
267
 
268
  #: app/features/contextual.php:258 app/features/mec/single.php:248
269
+ #: app/libraries/main.php:557
270
  msgid "Countdown Options"
271
  msgstr "Možnosti Odpočítávání"
272
 
285
  msgstr "Předání události frontendu"
286
 
287
  #: app/features/contextual.php:298 app/features/events.php:345
288
+ #: app/libraries/main.php:558
289
  msgid "Exceptional Days"
290
  msgstr "Výjimečné dny"
291
 
292
  #: app/features/contextual.php:308 app/features/events.php:315
293
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
294
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
295
+ #: app/libraries/main.php:566 app/libraries/main.php:597
296
  #: app/libraries/main.php:684
297
  msgid "Booking"
298
  msgstr "Rezervace"
299
 
300
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
301
+ #: app/features/mec/booking.php:832 app/libraries/main.php:568
302
  msgid "Coupons"
303
  msgstr "Kupóny"
304
 
356
  msgstr "Obrázek je nahraný!"
357
 
358
  #: app/features/events.php:167 app/features/ix/export.php:34
359
+ #: app/features/mec/dashboard.php:265 app/libraries/main.php:5542
360
+ #: app/libraries/main.php:5562 app/skins/daily_view/tpl.php:82
361
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
362
  #: app/skins/yearly_view/tpl.php:71
363
  msgid "Events"
381
  msgid "Add New Event"
382
  msgstr "Přidat novou událost"
383
 
384
+ #: app/features/events.php:171 app/features/ix.php:4401
385
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
386
  #: app/skins/map/tpl.php:88
387
  msgid "No events found!"
404
  msgid "No events found in Trash!"
405
  msgstr "V koši nebyly nalezeny žádné události!"
406
 
407
+ #: app/features/events.php:192 app/features/events.php:3599
408
  #: app/features/mec/meta_boxes/display_options.php:1463
409
  #: app/features/mec/meta_boxes/search_form.php:31
410
  #: app/features/mec/meta_boxes/search_form.php:101
419
  #: app/features/mec/meta_boxes/search_form.php:760
420
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
421
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
422
+ #: app/features/search.php:68 app/libraries/main.php:6341
423
+ #: app/libraries/main.php:6395 app/libraries/skins.php:934
424
  #: app/skins/single.php:1016 app/skins/single/default.php:219
425
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
426
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
427
  msgid "Category"
428
  msgstr "Kategorie"
429
 
430
+ #: app/features/events.php:193 app/features/events.php:3554
431
  #: app/features/fes/form.php:865 app/features/mec.php:467
432
  #: app/features/mec/meta_boxes/filter.php:69
433
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6340
434
+ #: app/libraries/main.php:6394
435
  msgid "Categories"
436
  msgstr "Kategorie"
437
 
542
  msgid "Links"
543
  msgstr "Odkaz"
544
 
545
+ #: app/features/events.php:349 app/features/events.php:3601
546
+ #: app/features/events.php:3790 app/features/ix.php:3990
547
+ #: app/features/ix.php:4032
548
  #: app/features/mec/meta_boxes/display_options.php:1466
549
  #: app/features/mec/meta_boxes/search_form.php:46
550
  #: app/features/mec/meta_boxes/search_form.php:116
562
  #: app/features/organizers.php:204 app/features/organizers.php:260
563
  #: app/features/organizers.php:262 app/features/organizers.php:271
564
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
565
+ #: app/features/search.php:80 app/libraries/main.php:6347
566
+ #: app/libraries/main.php:6401 app/libraries/skins.php:986
567
  #: app/skins/single.php:1264 app/skins/single/default.php:244
568
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
569
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
572
 
573
  #: app/features/events.php:350 app/features/events.php:1165
574
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
575
+ #: app/libraries/main.php:6378 app/libraries/main.php:6427
576
  #: app/skins/single.php:1042 app/skins/single/default.php:142
577
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
578
  #: app/skins/single/modern.php:237
594
  msgstr "Údaje hosta"
595
 
596
  #: app/features/events.php:511 app/features/events.php:2499
597
+ #: app/features/events.php:4113 app/features/fes.php:243
598
  #: app/features/fes/form.php:795 app/features/labels.php:178
599
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
600
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
601
+ #: app/libraries/notifications.php:1617 app/modules/booking/steps/form.php:63
602
  msgid "Name"
603
  msgstr "Jméno"
604
 
605
  #: app/features/events.php:512 app/features/events.php:2508
606
  #: app/features/events.php:2575 app/features/events.php:2664
607
+ #: app/features/events.php:4116 app/features/fes.php:243
608
  #: app/features/fes/form.php:791 app/features/login/login.php:5
609
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
610
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
612
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
613
  #: app/features/speakers.php:204 app/libraries/main.php:1872
614
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
615
+ #: app/libraries/notifications.php:1618 app/modules/booking/steps/form.php:72
616
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
617
  #: app/skins/single.php:1340 app/skins/single/default.php:261
618
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
631
  msgstr "Datum a čas"
632
 
633
  #: app/features/events.php:528 app/features/events.php:532
634
+ #: app/features/events.php:3602 app/features/events.php:3790
635
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
636
+ #: app/features/ix.php:3990 app/features/ix.php:4032
637
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
638
  #: app/features/mec/meta_boxes/display_options.php:52
639
  #: app/features/mec/meta_boxes/display_options.php:295
655
  msgstr "Počátečná den"
656
 
657
  #: app/features/events.php:547 app/features/events.php:551
658
+ #: app/features/events.php:3603 app/features/events.php:3790
659
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
660
+ #: app/features/ix.php:3990 app/features/ix.php:4032
661
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
662
  #: app/features/popup/event.php:92
663
  msgid "End Date"
713
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
714
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
715
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
716
+ #: app/features/mec/booking.php:848 app/features/mec/booking.php:874
717
  #: app/features/mec/dashboard.php:71
718
  #: app/features/mec/meta_boxes/display_options.php:85
719
  #: app/features/mec/meta_boxes/display_options.php:98
995
  msgid "Show only one occurrence of this event"
996
  msgstr "Další výskyt dalších událostí"
997
 
998
+ #: app/features/events.php:1161 app/features/events.php:3790
999
+ #: app/features/fes/form.php:833 app/features/ix.php:3990
1000
+ #: app/features/ix.php:4032 app/features/mec/settings.php:763
1001
+ #: app/libraries/main.php:6377 app/libraries/main.php:6426
1002
  #: app/widgets/single.php:103
1003
  msgid "Event Cost"
1004
  msgstr "Cena události"
1033
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
1034
  "vícedenních výskytů."
1035
 
1036
+ #: app/features/events.php:1334 app/libraries/render.php:560
1037
  msgid "Day 1"
1038
  msgstr "Den 1"
1039
 
1057
  #: app/features/events.php:1376 app/features/events.php:1415
1058
  #: app/features/events.php:1450 app/features/events.php:1482
1059
  #: app/features/events.php:1511 app/features/events.php:2371
1060
+ #: app/features/events.php:2418 app/features/events.php:3598
1061
+ #: app/features/events.php:3790 app/features/fes/form.php:256
1062
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1063
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1064
  #: app/features/mec/styling.php:130
1065
  msgid "Title"
1100
 
1101
  #: app/features/events.php:1419 app/features/events.php:1453
1102
  #: app/features/events.php:1514 app/features/events.php:1892
1103
+ #: app/features/events.php:2074 app/features/events.php:3790
1104
  msgid "Description"
1105
  msgstr "Popis"
1106
 
1108
  #: app/features/events.php:1519 app/features/fes/form.php:959
1109
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1110
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1111
+ #: app/libraries/main.php:577 app/libraries/main.php:6348
1112
+ #: app/libraries/main.php:6402 app/modules/speakers/details.php:18
1113
  msgid "Speakers"
1114
  msgstr "Řečníci"
1115
 
1124
 
1125
  #: app/features/events.php:1553 app/features/events.php:1561
1126
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1127
+ #: app/libraries/main.php:6375 app/libraries/main.php:6424
1128
  msgid "Event Link"
1129
  msgstr "Odkaz na událost"
1130
 
1153
  msgstr "Zkracovač URL"
1154
 
1155
  #: app/features/events.php:1571 app/features/events.php:1584
1156
+ #: app/features/fes/form.php:817 app/libraries/main.php:6376
1157
+ #: app/libraries/main.php:6425 app/skins/single.php:1126
1158
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1159
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1160
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1194
  msgstr "Celkové limity rezervace uživatelů"
1195
 
1196
  #: app/features/events.php:1610 app/features/events.php:1835
1197
+ #: app/libraries/book.php:63 app/libraries/main.php:6380
1198
  #: app/modules/booking/steps/tickets.php:137
1199
  #: app/modules/booking/steps/tickets.php:143
1200
  msgid "Tickets"
1209
  msgid "Ticket Variations / Options"
1210
  msgstr "Varianty vstupenky / možnosti"
1211
 
1212
+ #: app/features/events.php:1619 app/features/mec/booking.php:903
1213
  #: app/features/mec/support-page.php:118
1214
  msgid "Organizer Payment"
1215
  msgstr "Platba organizátora"
1313
 
1314
  #: app/features/events.php:1763 app/features/events.php:1773
1315
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1316
+ #: app/features/mec/booking.php:253 app/features/mec/booking.php:842
1317
+ #: app/features/mec/booking.php:867
1318
  #: app/features/mec/meta_boxes/search_form.php:33
1319
  #: app/features/mec/meta_boxes/search_form.php:40
1320
  #: app/features/mec/meta_boxes/search_form.php:48
1420
 
1421
  #: app/features/events.php:1764 app/features/events.php:1774
1422
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1423
+ #: app/features/mec/booking.php:254 app/features/mec/booking.php:841
1424
+ #: app/features/mec/booking.php:868 app/features/mec/settings.php:106
1425
  msgid "Enabled"
1426
  msgstr "Povoleno"
1427
 
1474
  msgstr "Vstupenka"
1475
 
1476
  #: app/features/events.php:1855 app/features/events.php:2039
1477
+ #: app/features/events.php:3790 app/features/fes.php:243
1478
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1479
  #: app/features/labels.php:177 app/features/locations.php:262
1480
  #: app/features/organizers.php:203 app/features/speakers.php:282
1481
  msgid "ID"
1486
  msgstr "Název vstupenky"
1487
 
1488
  #: app/features/events.php:1863 app/features/events.php:2046
1489
+ #: app/features/events.php:3790 app/features/ix.php:3990
1490
+ #: app/features/ix.php:4032
1491
  msgid "Start Time"
1492
  msgstr "Začátek"
1493
 
1494
  #: app/features/events.php:1876 app/features/events.php:2059
1495
+ #: app/features/events.php:3790 app/features/ix.php:3990
1496
+ #: app/features/ix.php:4032
1497
  msgid "End Time"
1498
  msgstr "Konec"
1499
 
1813
  msgid "Fixed Fields"
1814
  msgstr "Požadovaná pole"
1815
 
1816
+ #: app/features/events.php:3500 app/features/events.php:3518
1817
+ #: app/features/events.php:3536 app/features/events.php:3554
1818
  #, php-format
1819
  msgid "Show all %s"
1820
  msgstr "Ukázat všechny %s"
1821
 
1822
+ #: app/features/events.php:3500
1823
  msgid "labels"
1824
  msgstr "štítky"
1825
 
1826
+ #: app/features/events.php:3518
1827
  msgid "locations"
1828
  msgstr "umístění"
1829
 
1830
+ #: app/features/events.php:3536
1831
  msgid "organizers"
1832
  msgstr "organizátoři"
1833
 
1834
+ #: app/features/events.php:3570
1835
  #, fuzzy
1836
  #| msgid "Attendees Limit"
1837
  msgid "Attendees List"
1838
  msgstr "Limit účastníků"
1839
 
1840
+ #: app/features/events.php:3600 app/features/events.php:3790
1841
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1842
  #: app/features/locations.php:58 app/features/locations.php:263
1843
  #: app/features/locations.php:324 app/features/locations.php:326
1844
  #: app/features/locations.php:335
1857
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1858
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1859
  #: app/features/popup/event.php:125 app/features/search.php:74
1860
+ #: app/libraries/main.php:2641 app/libraries/main.php:6345
1861
+ #: app/libraries/main.php:6399 app/libraries/skins.php:960
1862
  #: app/skins/single.php:943 app/skins/single.php:1386
1863
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1864
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
1866
  msgid "Location"
1867
  msgstr "Umístění"
1868
 
1869
+ #: app/features/events.php:3605
1870
  msgid "Repeat"
1871
  msgstr "Opakovat"
1872
 
1873
+ #: app/features/events.php:3606
1874
  msgid "Author"
1875
  msgstr "Autor"
1876
 
1877
+ #: app/features/events.php:3727 app/features/events.php:3728
1878
  #, fuzzy
1879
  #| msgid "iCal Export"
1880
  msgid "iCal / Outlook Export"
1881
  msgstr "iCal Export"
1882
 
1883
+ #: app/features/events.php:3730 app/features/events.php:3731
1884
  msgid "CSV Export"
1885
  msgstr "CSV Export"
1886
 
1887
+ #: app/features/events.php:3733 app/features/events.php:3734
1888
  msgid "MS Excel Export"
1889
  msgstr "MS Excel Export"
1890
 
1891
+ #: app/features/events.php:3736 app/features/events.php:3737
1892
  msgid "XML Export"
1893
  msgstr "XML Export"
1894
 
1895
+ #: app/features/events.php:3739 app/features/events.php:3740
1896
  msgid "JSON Export"
1897
  msgstr "JSON Export"
1898
 
1899
+ #: app/features/events.php:3742 app/features/events.php:3743
1900
+ #: app/features/events.php:3899
1901
  msgid "Duplicate"
1902
  msgstr "Duplikát"
1903
 
1904
+ #: app/features/events.php:3790 app/features/ix.php:3990
1905
+ #: app/features/ix.php:4032
1906
  msgid "Link"
1907
  msgstr "Odkaz"
1908
 
1909
+ #: app/features/events.php:3790 app/features/ix.php:3990
1910
+ #: app/features/ix.php:4032 app/features/locations.php:110
1911
  #: app/features/locations.php:180 app/features/locations.php:264
1912
  #: app/features/mec/meta_boxes/search_form.php:74
1913
  #: app/features/mec/meta_boxes/search_form.php:144
1923
  msgid "Address"
1924
  msgstr "Adresa"
1925
 
1926
+ #: app/features/events.php:3790
1927
  #, php-format
1928
  msgid "%s Tel"
1929
  msgstr "%s Tel"
1930
 
1931
+ #: app/features/events.php:3790
1932
  #, php-format
1933
  msgid "%s Email"
1934
  msgstr "%s Email"
1935
 
1936
  # v kontextu
1937
+ #: app/features/events.php:3790 app/features/fes/form.php:850
1938
  #: app/features/mec/settings.php:769
1939
  msgid "Featured Image"
1940
  msgstr "Hlavní obrázek"
1941
 
1942
+ #: app/features/events.php:4119 app/features/fes.php:243
1943
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1944
+ #: app/libraries/main.php:6379
1945
  msgid "Ticket"
1946
  msgstr "Vstupenka"
1947
 
1948
+ #: app/features/events.php:4122 app/features/profile/profile.php:186
1949
  msgid "Variations"
1950
  msgstr "Variace"
1951
 
1952
+ #: app/features/events.php:4137 app/features/fes.php:316
1953
  msgid "Unknown"
1954
  msgstr "Neznámý"
1955
 
1956
+ #: app/features/events.php:4163
1957
  msgid ""
1958
  "If you want to send an email, first select your attendees and then click in "
1959
  "the button below, please."
1960
  msgstr ""
1961
 
1962
+ #: app/features/events.php:4163 app/features/mec/report.php:58
1963
  #, fuzzy
1964
  #| msgid "Organizer Email"
1965
  msgid "Send Email"
1966
  msgstr "Organizátor Email"
1967
 
1968
+ #: app/features/events.php:4167
1969
  #, fuzzy
1970
  #| msgid "Attendees Form"
1971
  msgid "No Attendees Found!"
2201
  #: app/features/fes/form.php:891 app/features/labels.php:61
2202
  #: app/features/labels.php:221 app/features/mec.php:468
2203
  #: app/features/mec/meta_boxes/filter.php:72
2204
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6342
2205
+ #: app/libraries/main.php:6396 app/skins/single.php:1156
2206
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2207
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2208
  msgid "Labels"
2286
  msgid "An error occurred during the file upload! Please check permissions!"
2287
  msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
2288
 
2289
+ #: app/features/ix.php:265 app/libraries/main.php:6627
2290
+ #: app/libraries/main.php:6647
2291
  msgid "Confirmed"
2292
  msgstr "Potvrzeno"
2293
 
2294
+ #: app/features/ix.php:266 app/libraries/main.php:6628
2295
+ #: app/libraries/main.php:6655
2296
  msgid "Rejected"
2297
  msgstr "Odmítnuto"
2298
 
2299
+ #: app/features/ix.php:270 app/features/mec/booking.php:1010
2300
+ #: app/features/mec/booking.php:1032 app/features/mec/modules.php:431
2301
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2302
+ #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1295
2303
+ #: app/features/mec/settings.php:1317 app/features/mec/single.php:446
2304
+ #: app/features/mec/single.php:468 app/libraries/main.php:6675
2305
  msgid "Verified"
2306
  msgstr "Ověřeno"
2307
 
2308
  #: app/features/ix.php:271 app/features/labels.php:118
2309
+ #: app/features/labels.php:143 app/libraries/main.php:6676
2310
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2311
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2312
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
2342
  msgid "The events are imported successfully!"
2343
  msgstr "Události byly úspěšně importovány!"
2344
 
2345
+ #: app/features/ix.php:1176
2346
  msgid "Third Party plugin is not installed and activated!"
2347
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
2348
 
2349
+ #: app/features/ix.php:1200
2350
  msgid "Third Party plugin is invalid!"
2351
  msgstr "Plugin třetí strany je neplatný!"
2352
 
2353
+ #: app/features/ix.php:3175 app/features/ix.php:3233
2354
  #, fuzzy
2355
  #| msgid "Both of API key and Calendar ID are required!"
2356
  msgid "API key and Calendar ID are required!"
2357
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
2358
 
2359
+ #: app/features/ix.php:3228 app/features/ix.php:3673 app/features/ix.php:4408
2360
  #, fuzzy
2361
  #| msgid "Please select some events to import!"
2362
  msgid "Please select events to import!"
2363
  msgstr "Vyberte události, které chcete importovat!"
2364
 
2365
+ #: app/features/ix.php:3615 app/features/ix.php:3678
2366
  #, fuzzy
2367
  #| msgid "Both of API key and Group URL are required!"
2368
  msgid "API key and Group URL are required!"
2369
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
2370
 
2371
+ #: app/features/ix.php:3917
2372
  msgid "Check at Meetup"
2373
  msgstr "Ověřit Meetup"
2374
 
2375
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2376
  msgid "Organizer Tel"
2377
  msgstr "Organizátor Tel"
2378
 
2379
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2380
  msgid "Organizer Email"
2381
  msgstr "Organizátor Email"
2382
 
2383
  # Client Secret dle kontextu
2384
+ #: app/features/ix.php:4108
2385
  #, fuzzy
2386
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2387
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2388
  msgstr ""
2389
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
2390
 
2391
+ #: app/features/ix.php:4131
2392
  #, fuzzy, php-format
2393
  #| msgid "All seems good! Please click %s for authenticating your app."
2394
  msgid "All seems good! Please click %s to authenticate your app."
2395
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
2396
 
2397
+ #: app/features/ix.php:4131 app/features/mec/settings.php:1236
2398
  msgid "here"
2399
  msgstr ""
2400
 
2401
+ #: app/features/ix.php:4185
2402
  #, fuzzy
2403
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2404
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2406
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
2407
  "povinné!"
2408
 
2409
+ #: app/features/ix.php:4330
2410
  #, fuzzy, php-format
2411
  #| msgid "%s events added to Google Calendar successfully."
2412
  msgid "%s events added to Google Calendar with success."
2413
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
2414
 
2415
+ #: app/features/ix.php:4331
2416
  #, fuzzy, php-format
2417
  #| msgid "%s previously added events get updated."
2418
  msgid "%s Updated previously added events."
2419
  msgstr "% s dříve přidané události byly aktualizovány."
2420
 
2421
+ #: app/features/ix.php:4332
2422
  #, php-format
2423
  msgid "%s events failed to add for following reasons: %s"
2424
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
2425
 
2426
+ #: app/features/ix.php:4364
2427
  msgid "Please insert your Facebook page's link."
2428
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
2429
 
2430
+ #: app/features/ix.php:4375 app/features/ix.php:4417
2431
  #, fuzzy
2432
  #| msgid ""
2433
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2439
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
2440
  "poskytněte nám platný odkaz na stránku Facebooku."
2441
 
2442
+ #: app/features/ix.php:4412
2443
  msgid "Please insert your facebook page's link."
2444
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
2445
 
2611
  msgid "Add to Google Calendar"
2612
  msgstr "Přidat do Google kalendáře"
2613
 
2614
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1012
2615
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2616
+ #: app/features/mec/settings.php:1297 app/features/mec/single.php:448
2617
  msgid "Checking ..."
2618
  msgstr "Ověřování ..."
2619
 
3118
 
3119
  #: app/features/locations.php:59 app/features/mec.php:469
3120
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
3121
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6344
3122
+ #: app/libraries/main.php:6398
3123
  msgid "Locations"
3124
  msgstr "Umístění"
3125
 
3238
  msgid "Don't show map in single event page"
3239
  msgstr "Nezobrazovat mapu na jednostránkové události"
3240
 
3241
+ #: app/features/locations.php:398 app/libraries/main.php:6382
3242
+ #: app/libraries/main.php:6429
3243
  msgid "Other Locations"
3244
  msgstr "Další místa"
3245
 
3327
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3328
  #: app/features/mec/meta_boxes/filter.php:71
3329
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3330
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
3331
  msgid "Organizers"
3332
  msgstr "Organizátoři"
3333
 
3533
  msgstr "Vyhledávání ..."
3534
 
3535
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3536
+ #: app/features/mec/booking.php:928 app/features/mec/booking.php:937
3537
+ #: app/features/mec/booking.php:947 app/features/mec/booking.php:1029
3538
+ #: app/features/mec/booking.php:1043 app/features/mec/messages.php:15
3539
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3540
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3541
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
3545
  #: app/features/mec/notifications.php:1218
3546
  #: app/features/mec/notifications.php:1324
3547
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3548
+ #: app/features/mec/settings.php:1246 app/features/mec/settings.php:1256
3549
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1328
3550
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3551
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3552
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
3849
  msgid "Send confirmation email in auto confirmation mode"
3850
  msgstr ""
3851
 
3852
+ #: app/features/mec/booking.php:412 app/libraries/main.php:567
3853
  #, fuzzy
3854
  #| msgid "Booking Style"
3855
  msgid "Booking Shortcode"
3888
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
3889
  "novou nabídku na řídícím panelu > Rezervace"
3890
 
3891
+ #: app/features/mec/booking.php:446 app/features/mec/booking.php:834
3892
+ #: app/libraries/main.php:569
3893
  msgid "Taxes / Fees"
3894
  msgstr "Daně / poplatky"
3895
 
3901
  msgid "Add Fee"
3902
  msgstr "Přidat poplatek"
3903
 
3904
+ #: app/features/mec/booking.php:523 app/libraries/main.php:570
3905
  msgid "Ticket Variations & Options"
3906
  msgstr "Varianty a možnosti vstupenek"
3907
 
3913
  msgid "Add Variation / Option"
3914
  msgstr "Přidat varianty / možnosti"
3915
 
3916
+ #: app/features/mec/booking.php:798
3917
+ msgid "Upload Field Options"
3918
+ msgstr "Možnosti pole Nahrát"
3919
+
3920
+ #: app/features/mec/booking.php:800
3921
+ msgid "Mime types"
3922
+ msgstr "MIME typy"
3923
+
3924
+ #: app/features/mec/booking.php:804
3925
+ msgid "Split mime types with \",\"."
3926
+ msgstr "Rozdělte typy MIME pomocí “,“."
3927
+
3928
+ #: app/features/mec/booking.php:804
3929
+ msgid "Default: jpeg,jpg,png,pdf"
3930
+ msgstr "Výchozí: jpeg,jpg,png,pdf"
3931
+
3932
+ #: app/features/mec/booking.php:807
3933
+ msgid "Maximum file size"
3934
+ msgstr "Maximální velikost souboru"
3935
+
3936
+ #: app/features/mec/booking.php:811
3937
+ msgid "The unit is Megabyte \"MB\""
3938
+ msgstr "Jednotkou je Megabyte \"MB\""
3939
+
3940
+ #: app/features/mec/booking.php:824
3941
  msgid "Use WooCommerce as Payment System"
3942
  msgstr ""
3943
 
3944
+ #: app/features/mec/booking.php:826
3945
  msgid ""
3946
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3947
  "payment process would be done by WooCommerce so all of MEC payment related "
3949
  "fields etc, you need to configure WooCommerce on your website."
3950
  msgstr ""
3951
 
3952
+ #: app/features/mec/booking.php:828
3953
  msgid ""
3954
  "You cannot use following MEC features so you should use WooCommerc and its "
3955
  "addons if you need them."
3956
  msgstr ""
3957
 
3958
+ #: app/features/mec/booking.php:830
3959
  #, fuzzy
3960
  #| msgid "Payment Gateways"
3961
  msgid "Payment gateways"
3962
  msgstr "Platební brány"
3963
 
3964
+ #: app/features/mec/booking.php:831
3965
  #, fuzzy
3966
  #| msgid "Price per Date"
3967
  msgid "Price per dates of tickets"
3968
  msgstr "Cena za datum"
3969
 
3970
+ #: app/features/mec/booking.php:833
3971
  #, fuzzy
3972
  #| msgid "Ticket Variations / Options"
3973
  msgid "Ticket variations"
3974
  msgstr "Varianty vstupenky / možnosti"
3975
 
3976
+ #: app/features/mec/booking.php:838
3977
  msgid "Automatically complete WooCommerce orders"
3978
  msgstr ""
3979
 
3980
+ #: app/features/mec/booking.php:846
3981
  #, fuzzy
3982
  #| msgid "WooCommerce gateways"
3983
  msgid "Auto WooCommerce orders"
3984
  msgstr "Brána WooCommerce"
3985
 
3986
+ #: app/features/mec/booking.php:847
3987
  msgid "It applies only to the orders that are related to MEC."
3988
  msgstr ""
3989
 
3990
+ #: app/features/mec/booking.php:855
3991
  msgid "After Add to Cart"
3992
  msgstr ""
3993
 
3994
+ #: app/features/mec/booking.php:858
3995
  #, fuzzy
3996
  #| msgid "Get Directions"
3997
  msgid "Redirect to Cart"
3998
  msgstr "Získat směr"
3999
 
4000
+ #: app/features/mec/booking.php:859
4001
  #, fuzzy
4002
  #| msgid "Get Directions"
4003
  msgid "Redirect to Checkout"
4004
  msgstr "Získat směr"
4005
 
4006
+ #: app/features/mec/booking.php:864
4007
  #, fuzzy
4008
  #| msgid "Booking Form"
4009
  msgid "MEC Booking Form"
4010
  msgstr "Rezervační formulář"
4011
 
4012
+ #: app/features/mec/booking.php:873
4013
  msgid ""
4014
  "If enabled then users should fill the booking form in MEC and then they will "
4015
  "be redirected to checkout."
4016
  msgstr ""
4017
 
4018
+ #: app/features/mec/booking.php:899
4019
  msgid "Enable Organizer Payment Module"
4020
  msgstr "Povolit platební modul organizátora"
4021
 
4022
+ #: app/features/mec/booking.php:904
4023
  msgid ""
4024
  "By enabling this module, organizers are able to insert their own payment "
4025
  "credentials for enabled gateways per event and receive the payments directly!"
4027
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
4028
  "údaje pro povolené brány pro události a přijímat platby přímo!"
4029
 
4030
+ #: app/features/mec/booking.php:914
4031
  msgid "Disable / Enable payment gateways per event"
4032
  msgstr ""
4033
 
4034
+ #: app/features/mec/booking.php:918
4035
  #, fuzzy
4036
  #| msgid "Payment Gateways"
4037
  msgid "Payment Gateways Per Event"
4038
  msgstr "Platební brány"
4039
 
4040
+ #: app/features/mec/booking.php:919
4041
  #, fuzzy
4042
  #| msgid ""
4043
  #| "By enabling this module, organizers are able to insert their own payment "
4050
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
4051
  "údaje pro povolené brány pro události a přijímat platby přímo!"
4052
 
4053
+ #: app/features/mec/booking.php:1007 app/features/mec/messages.php:78
4054
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
4055
+ #: app/features/mec/settings.php:1292 app/features/mec/single.php:443
4056
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
4057
  msgid "Saved"
4058
  msgstr "Uloženo"
4059
 
4060
+ #: app/features/mec/booking.php:1008 app/features/mec/messages.php:79
4061
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
4062
+ #: app/features/mec/settings.php:1293 app/features/mec/single.php:444
4063
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
4064
  msgid "Settings Saved!"
4065
  msgstr "Nastavení uložena!"
4066
 
4067
+ #: app/features/mec/booking.php:1034 app/features/mec/modules.php:455
4068
+ #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1319
4069
  #: app/features/mec/single.php:470
4070
  msgid "Please Refresh Page"
4071
  msgstr "Prosím obnovte stránku"
5298
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5299
  #: app/features/mec/single.php:386 app/features/search.php:86
5300
  #: app/features/speakers.php:60 app/features/speakers.php:283
5301
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
5302
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5303
  msgid "Speaker"
5304
  msgstr "Řečník"
6501
  msgid "only once per hour"
6502
  msgstr "pouze jednou denně"
6503
 
6504
+ #: app/features/mec/notifications.php:950 app/libraries/main.php:7437
6505
+ #: app/libraries/main.php:7454
6506
  #, fuzzy
6507
  #| msgid "hours"
6508
  msgid "Hours"
6785
  msgstr "Můžete povolit nebo zakázat skripty schématu"
6786
 
6787
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6788
+ #: app/libraries/main.php:6353 app/libraries/main.php:6407
6789
  msgid "Weekdays"
6790
  msgstr "Pracovní dny"
6791
 
7131
  msgid "Let WordPress decide"
7132
  msgstr "WordPress"
7133
 
7134
+ #: app/features/mec/settings.php:660 app/libraries/main.php:6629
7135
+ #: app/libraries/main.php:6651
7136
  msgid "Pending"
7137
  msgstr "Nevyřízený"
7138
 
7290
  msgid "Event Description"
7291
  msgstr "Popis"
7292
 
7293
+ #: app/features/mec/settings.php:930 app/libraries/main.php:6376
7294
+ #: app/libraries/main.php:6425
7295
  msgid "More Info Link"
7296
  msgstr "Odkaz na více informací"
7297
 
7494
  msgid "More information about the list ID can be found %s."
7495
  msgstr ""
7496
 
7497
+ #: app/features/mec/single.php:38 app/libraries/main.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7498
  msgid "Single Event Page"
7499
  msgstr "Stránka jedné události"
7500
 
7618
  "the settings page.' tab"
7619
  msgstr ""
7620
 
7621
+ #: app/features/mec/single.php:162 app/libraries/main.php:556
7622
  #, fuzzy
7623
  #| msgid "Custom Styles"
7624
  msgid "Custom Fields"
7664
  msgstr ""
7665
  "Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
7666
 
7667
+ #: app/features/mec/single.php:286 app/libraries/main.php:559
7668
  msgid "Additional Organizers"
7669
  msgstr "Další organizátoři"
7670
 
7692
  "Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
7693
  "jediné události."
7694
 
7695
+ #: app/features/mec/single.php:318 app/libraries/main.php:561
7696
  #: app/skins/single.php:170 app/skins/single.php:435
7697
  msgid "Related Events"
7698
  msgstr "Související události"
7707
  msgid "Select Taxonomies:"
7708
  msgstr "Vyberte taxonomie:"
7709
 
7710
+ #: app/features/mec/single.php:360 app/libraries/main.php:562
7711
  #, fuzzy
7712
  #| msgid "Next/Previous Buttons"
7713
  msgid "Next / Previous Events"
8559
  msgid "eg. https://webnus.net"
8560
  msgstr "např. https://webnus.net"
8561
 
8562
+ #: app/features/organizers.php:312 app/libraries/main.php:6381
8563
+ #: app/libraries/main.php:6428 app/skins/single.php:1314
8564
  msgid "Other Organizers"
8565
  msgstr "Další organizátoři"
8566
 
8818
  msgid "No search result."
8819
  msgstr "Žádný výsledek vyhledávání."
8820
 
8821
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6383
8822
+ #: app/libraries/main.php:6430 app/libraries/notifications.php:1262
8823
+ #: app/libraries/render.php:532 app/libraries/render.php:854
8824
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8825
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8826
  #: app/modules/next-event/details.php:154
8919
  "Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
8920
  "hodinového plánu a v sekci widgetu řečníka!"
8921
 
8922
+ #: app/features/wc.php:103 app/libraries/notifications.php:1247
8923
+ #: app/libraries/notifications.php:1262 app/libraries/notifications.php:1273
8924
+ #: app/libraries/notifications.php:1542 app/libraries/notifications.php:1543
8925
  #, php-format
8926
  msgid "%s to %s"
8927
  msgstr ""
8941
  msgid "%s Price"
8942
  msgstr "%s Cena"
8943
 
8944
+ #: app/libraries/book.php:706 app/libraries/book.php:797
8945
  msgid "Discount"
8946
  msgstr "Sleva"
8947
 
8948
+ #: app/libraries/book.php:884 app/modules/booking/default.php:426
8949
  #: app/modules/booking/default.php:531
8950
  msgid "Download Invoice"
8951
  msgstr "Stáhnout fakturu"
9078
  msgid "Timeline View"
9079
  msgstr "Zobrazení rozvrhu"
9080
 
9081
+ #: app/libraries/main.php:391 app/libraries/main.php:6355
9082
+ #: app/libraries/main.php:6409
9083
  msgid "SU"
9084
  msgstr "NE"
9085
 
9086
+ #: app/libraries/main.php:392 app/libraries/main.php:6356
9087
+ #: app/libraries/main.php:6410
9088
  msgid "MO"
9089
  msgstr "PO"
9090
 
9091
+ #: app/libraries/main.php:393 app/libraries/main.php:6357
9092
+ #: app/libraries/main.php:6411
9093
  msgid "TU"
9094
  msgstr "ÚT"
9095
 
9096
+ #: app/libraries/main.php:394 app/libraries/main.php:6358
9097
+ #: app/libraries/main.php:6412
9098
  msgid "WE"
9099
  msgstr "ST"
9100
 
9101
+ #: app/libraries/main.php:395 app/libraries/main.php:6359
9102
+ #: app/libraries/main.php:6413
9103
  msgid "TH"
9104
  msgstr "ČT"
9105
 
9106
+ #: app/libraries/main.php:396 app/libraries/main.php:6360
9107
+ #: app/libraries/main.php:6414
9108
  msgid "FR"
9109
  msgstr "PÁ"
9110
 
9111
+ #: app/libraries/main.php:397 app/libraries/main.php:6361
9112
+ #: app/libraries/main.php:6415
9113
  msgid "SA"
9114
  msgstr "SO"
9115
 
9116
+ #: app/libraries/main.php:560
 
 
 
 
9117
  msgid "Additional Locations"
9118
  msgstr "Další umístění"
9119
 
9120
+ #: app/libraries/main.php:572
9121
+ msgid "Upload Field"
9122
+ msgstr "Nahrát pole"
9123
+
9124
  #: app/libraries/main.php:726
9125
  msgid "Modules"
9126
  msgstr "Moduly"
9470
  msgid "Free"
9471
  msgstr "Zdarma"
9472
 
9473
+ #: app/libraries/main.php:4445 app/libraries/main.php:6690
9474
  msgid "M.E. Calender"
9475
  msgstr "M.E. Kalendář"
9476
 
9477
+ #: app/libraries/main.php:4601
9478
  #, php-format
9479
  msgid "Copy of %s"
9480
  msgstr "Kopie %s"
9481
 
9482
+ #: app/libraries/main.php:5466
9483
  msgid "Booked an event."
9484
  msgstr "Událost byla rezervována."
9485
 
9486
+ #: app/libraries/main.php:5507
9487
  #, php-format
9488
  msgid "%s booked %s event."
9489
  msgstr "%s zarezervoval %s událost."
9490
 
9491
+ #: app/libraries/main.php:6338 app/libraries/main.php:6392
9492
  msgid "Taxonomies"
9493
  msgstr "Taxonomie"
9494
 
9495
  # Mrknout na kontext
9496
+ #: app/libraries/main.php:6340 app/libraries/main.php:6394
9497
  msgid "Category Plural Label"
9498
  msgstr "Štítek množné kategorie"
9499
 
9500
  # Mrknout na kontext
9501
+ #: app/libraries/main.php:6341 app/libraries/main.php:6395
9502
  msgid "Category Singular Label"
9503
  msgstr "Štítek jednotné kategorie"
9504
 
9505
+ #: app/libraries/main.php:6342 app/libraries/main.php:6396
9506
  msgid "Label Plural Label"
9507
  msgstr "Štítek množného štítku"
9508
 
9509
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9510
  msgid "Label Singular Label"
9511
  msgstr "Štítek jednotného štítku"
9512
 
9513
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9514
  msgid "label"
9515
  msgstr "štítek"
9516
 
9517
+ #: app/libraries/main.php:6344 app/libraries/main.php:6398
9518
  msgid "Location Plural Label"
9519
  msgstr "Štítek množného umístění"
9520
 
9521
+ #: app/libraries/main.php:6345 app/libraries/main.php:6399
9522
  msgid "Location Singular Label"
9523
  msgstr "Štítek jednotného umístění"
9524
 
9525
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
9526
  msgid "Organizer Plural Label"
9527
  msgstr "Štítek množného organizátora"
9528
 
9529
+ #: app/libraries/main.php:6347 app/libraries/main.php:6401
9530
  msgid "Organizer Singular Label"
9531
  msgstr "Štítek jednotného organizátora"
9532
 
9533
+ #: app/libraries/main.php:6348 app/libraries/main.php:6402
9534
  msgid "Speaker Plural Label"
9535
  msgstr "Štítek množného řečníka"
9536
 
9537
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
9538
  msgid "Speaker Singular Label"
9539
  msgstr "Štítek jednotného řečníka"
9540
 
9541
+ #: app/libraries/main.php:6355 app/libraries/main.php:6409
9542
  msgid "Sunday abbreviation"
9543
  msgstr "Neděle zkratka"
9544
 
9545
+ #: app/libraries/main.php:6356 app/libraries/main.php:6410
9546
  msgid "Monday abbreviation"
9547
  msgstr "Pondělí zkratka"
9548
 
9549
+ #: app/libraries/main.php:6357 app/libraries/main.php:6411
9550
  msgid "Tuesday abbreviation"
9551
  msgstr "Úterý zkratka"
9552
 
9553
+ #: app/libraries/main.php:6358 app/libraries/main.php:6412
9554
  msgid "Wednesday abbreviation"
9555
  msgstr "Středa zkratka"
9556
 
9557
+ #: app/libraries/main.php:6359 app/libraries/main.php:6413
9558
  msgid "Thursday abbreviation"
9559
  msgstr "Čtvrtek zkratka"
9560
 
9561
+ #: app/libraries/main.php:6360 app/libraries/main.php:6414
9562
  msgid "Friday abbreviation"
9563
  msgstr "Pátek zkratka"
9564
 
9565
+ #: app/libraries/main.php:6361 app/libraries/main.php:6415
9566
  msgid "Saturday abbreviation"
9567
  msgstr "Sobota zkratka"
9568
 
9569
+ #: app/libraries/main.php:6365 app/libraries/main.php:6419
9570
  msgid "Others"
9571
  msgstr "Další"
9572
 
9573
+ #: app/libraries/main.php:6367
9574
  msgid "Booking Success Message"
9575
  msgstr "Zpráva o úspěchu rezervace"
9576
 
9577
+ #: app/libraries/main.php:6367
9578
  #, fuzzy
9579
  #| msgid ""
9580
  #| "Thanks for your booking. Your tickets booked, booking verification might "
9586
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
9587
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
9588
 
9589
+ #: app/libraries/main.php:6368
9590
  #, fuzzy
9591
  #| msgid "Booking Success Message"
9592
  msgid "Booking Restriction Message 1"
9593
  msgstr "Zpráva o úspěchu rezervace"
9594
 
9595
+ #: app/libraries/main.php:6368
9596
  #, php-format
9597
  msgid ""
9598
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9599
  "tickets."
9600
  msgstr ""
9601
 
9602
+ #: app/libraries/main.php:6369
9603
  #, fuzzy
9604
  #| msgid "Booking Success Message"
9605
  msgid "Booking Restriction Message 2"
9606
  msgstr "Zpráva o úspěchu rezervace"
9607
 
9608
+ #: app/libraries/main.php:6369
9609
  #, php-format
9610
  msgid ""
9611
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9612
  "tickets."
9613
  msgstr ""
9614
 
9615
+ #: app/libraries/main.php:6370
9616
  #, fuzzy
9617
  #| msgid "Booking Success Message"
9618
  msgid "Booking IP Restriction Message"
9619
  msgstr "Zpráva o úspěchu rezervace"
9620
 
9621
+ #: app/libraries/main.php:6370
9622
  #, php-format
9623
  msgid "Maximum allowed number of tickets that you can book is %s."
9624
  msgstr ""
9625
 
9626
+ #: app/libraries/main.php:6371
9627
  #, fuzzy
9628
  #| msgid "Booking Options"
9629
  msgid "Booking Button"
9630
  msgstr "Možnosti rezervace"
9631
 
9632
+ #: app/libraries/main.php:6371 app/libraries/skins.php:1268
9633
  #: app/modules/booking/steps/tickets.php:102
9634
  msgid "Book Event"
9635
  msgstr "Rezervovat událost"
9636
 
9637
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9638
  #: app/widgets/single.php:131
9639
  msgid "Register Button"
9640
  msgstr "Registrační tlačítko"
9641
 
9642
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9643
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9644
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9645
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
9657
  msgid "REGISTER"
9658
  msgstr "REGISTROVAT"
9659
 
9660
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9661
  msgid "View Detail Button"
9662
  msgstr "Tlačítko Zobrazit detail"
9663
 
9664
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9665
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9666
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9667
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
9673
  msgid "View Detail"
9674
  msgstr "Zobrazit detail"
9675
 
9676
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9677
  msgid "Event Detail Button"
9678
  msgstr "Tlačítko Detail události"
9679
 
9680
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9681
  msgid "Event Detail"
9682
  msgstr "Zobrazit událost"
9683
 
9684
+ #: app/libraries/main.php:6379
9685
  msgid "Ticket (Singular)"
9686
  msgstr "Vstupenka (Jednotné)"
9687
 
9688
+ #: app/libraries/main.php:6380
9689
  msgid "Tickets (Plural)"
9690
  msgstr "Vstupenky (Množné)"
9691
 
9692
+ #: app/libraries/main.php:6538
9693
  msgid "EventON"
9694
  msgstr "EventON"
9695
 
9696
+ #: app/libraries/main.php:6539
9697
  msgid "The Events Calendar"
9698
  msgstr "The Events Calendar"
9699
 
9700
+ #: app/libraries/main.php:6540
9701
  msgid "Events Schedule WP Plugin"
9702
  msgstr "Events Schedule WP Plugin"
9703
 
9704
+ #: app/libraries/main.php:6541
9705
  msgid "Calendarize It"
9706
  msgstr "Calendarize It"
9707
 
9708
+ #: app/libraries/main.php:6542
9709
  #, fuzzy
9710
  #| msgid "Event Speakers"
9711
  msgid "Event Espresso"
9712
  msgstr "Řečník události"
9713
 
9714
+ #: app/libraries/main.php:6543
9715
  #, fuzzy
9716
  #| msgid "Event Repeating (Recurring events)"
9717
  msgid "Events Manager (Recurring)"
9718
  msgstr "Opakování události (opakující se události)"
9719
 
9720
+ #: app/libraries/main.php:6544
9721
  #, fuzzy
9722
  #| msgid "Modern Events Calendar (Lite)"
9723
  msgid "Events Manager (Single)"
9724
  msgstr "Modern Events Calendar (Lite)"
9725
 
9726
+ #: app/libraries/main.php:6545
9727
  #, fuzzy
9728
  #| msgid "Modern Events Calendar (Lite)"
9729
  msgid "WP Event Manager"
9730
  msgstr "Modern Events Calendar (Lite)"
9731
 
9732
+ #: app/libraries/main.php:6677
9733
  msgid "Waiting"
9734
  msgstr "Čekající"
9735
 
9736
+ #: app/libraries/main.php:6720
9737
  #, fuzzy
9738
  #| msgid "Sunday"
9739
  msgid "Sun"
9740
  msgstr "Neděle"
9741
 
9742
+ #: app/libraries/main.php:6720
9743
  #, fuzzy
9744
  #| msgid "Monday"
9745
  msgid "Mon"
9746
  msgstr "Pondělí"
9747
 
9748
+ #: app/libraries/main.php:6720
9749
  #, fuzzy
9750
  #| msgid "Tel"
9751
  msgid "Tue"
9752
  msgstr "Tel"
9753
 
9754
+ #: app/libraries/main.php:6720
9755
  msgid "Wed"
9756
  msgstr ""
9757
 
9758
+ #: app/libraries/main.php:6720
9759
  msgid "Thu"
9760
  msgstr ""
9761
 
9762
+ #: app/libraries/main.php:6720
9763
  #, fuzzy
9764
  #| msgid "Friday"
9765
  msgid "Fri"
9766
  msgstr "Pátek"
9767
 
9768
+ #: app/libraries/main.php:6720
9769
  #, fuzzy
9770
  #| msgid "Start"
9771
  msgid "Sat"
9772
  msgstr "Začátek"
9773
 
9774
+ #: app/libraries/main.php:6886 app/libraries/render.php:80
9775
  #: app/libraries/render.php:445
9776
  msgid "Skin controller does not exist."
9777
  msgstr "Ovladač vzhledu neexistuje."
9778
 
9779
+ #: app/libraries/main.php:7101
9780
  msgid "Sold Out"
9781
  msgstr "Vyprodáno"
9782
 
9783
+ #: app/libraries/main.php:7112
9784
  #, fuzzy
9785
  #| msgid "Ticket"
9786
  msgid "Last Few Tickets"
9787
  msgstr "Vstupenka"
9788
 
9789
+ #: app/libraries/main.php:7443 app/libraries/main.php:7460
9790
  #, fuzzy
9791
  #| msgid "minutes"
9792
  msgid "Minutes"
9793
  msgstr "minuty"
9794
 
9795
+ #: app/libraries/main.php:7465
9796
  msgid "AM / PM"
9797
  msgstr ""
9798
 
9799
+ #: app/libraries/main.php:7466
9800
  msgid "AM"
9801
  msgstr "dop."
9802
 
9803
+ #: app/libraries/main.php:7467
9804
  msgid "PM"
9805
  msgstr "odp."
9806
 
9807
+ #: app/libraries/main.php:7475
9808
  msgid "Ongoing..."
9809
  msgstr ""
9810
 
9811
+ #: app/libraries/main.php:7476
9812
  #, fuzzy
9813
  #| msgid "Expired Events"
9814
  msgid "Expired!"
9840
  msgid "A new booking is received."
9841
  msgstr "Je přijata nová rezervace."
9842
 
9843
+ #: app/libraries/notifications.php:858
9844
  msgid "A new event is added."
9845
  msgstr "Je přidána se nová událost."
9846
 
9847
+ #: app/libraries/notifications.php:974
9848
  msgid "Your event is published."
9849
  msgstr "Vaše událost je zveřejněna."
9850
 
9851
+ #: app/libraries/notifications.php:1124
9852
  #, fuzzy
9853
  #| msgid "Event Color"
9854
  msgid "Event is soldout!"
9855
  msgstr "Barva události"
9856
 
9857
+ #: app/libraries/notifications.php:1486
9858
  msgid "to"
9859
  msgstr "do"
9860
 
9861
+ #: app/libraries/notifications.php:1507 app/modules/export/details.php:63
9862
  msgid "+ Add to Google Calendar"
9863
  msgstr "+ Přidat do Google kalendáře"
9864
 
9865
+ #: app/libraries/notifications.php:1508 app/modules/export/details.php:64
9866
  #, fuzzy
9867
  #| msgid "+ iCal export"
9868
  msgid "+ iCal / Outlook export"
9869
  msgstr "+ iCal export"
9870
 
9871
+ #: app/libraries/notifications.php:1557
9872
  #, fuzzy, php-format
9873
  #| msgid "+ Add to Google Calendar"
9874
  msgid "+ %s to Google Calendar"
9875
  msgstr "+ Přidat do Google kalendáře"
9876
 
9877
+ #: app/libraries/notifications.php:1637
9878
  msgid "Yes"
9879
  msgstr "Ano"
9880
 
9881
+ #: app/libraries/notifications.php:1637
9882
  msgid "No"
9883
  msgstr "Ne"
9884
 
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: 2020-11-10 21:11+0330\n"
6
- "PO-Revision-Date: 2020-11-10 21:13+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -108,8 +108,8 @@ msgstr "Einstellungen"
108
 
109
  #: app/features/contextual.php:62 app/features/events.php:1617
110
  #: app/features/events.php:2513 app/features/mec/booking.php:606
111
- #: app/features/mec/booking.php:854 app/features/mec/support.php:29
112
- #: app/libraries/main.php:572
113
  msgid "Booking Form"
114
  msgstr "Buchungsformular"
115
 
@@ -136,7 +136,7 @@ msgstr ""
136
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
137
 
138
  #: app/features/contextual.php:70 app/features/events.php:1625
139
- #: app/features/mec/booking.php:798 app/features/mec/support-page.php:115
140
  #: app/features/mec/support.php:36 app/libraries/main.php:573
141
  msgid "Payment Gateways"
142
  msgstr "Zahlungs-Gateways"
@@ -267,7 +267,7 @@ msgid "Google Recaptcha Options"
267
  msgstr "Google Recaptcha Einstellungen"
268
 
269
  #: app/features/contextual.php:258 app/features/mec/single.php:248
270
- #: app/libraries/main.php:558
271
  msgid "Countdown Options"
272
  msgstr "Countdown Einstellungsoptionen"
273
 
@@ -286,20 +286,20 @@ msgid "Frontend Event Submission"
286
  msgstr "Erstellung von Veranstaltungen im Frontend"
287
 
288
  #: app/features/contextual.php:298 app/features/events.php:345
289
- #: app/libraries/main.php:559
290
  msgid "Exceptional Days"
291
  msgstr "Herausgenommene Tage "
292
 
293
  #: app/features/contextual.php:308 app/features/events.php:315
294
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
295
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
296
- #: app/libraries/main.php:567 app/libraries/main.php:597
297
  #: app/libraries/main.php:684
298
  msgid "Booking"
299
  msgstr "Buchung / Reservierung"
300
 
301
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
302
- #: app/features/mec/booking.php:814 app/libraries/main.php:569
303
  msgid "Coupons"
304
  msgstr "Gutscheine"
305
 
@@ -355,8 +355,8 @@ msgid "File uploaded!"
355
  msgstr "Das Bild ist hochgeladen"
356
 
357
  #: app/features/events.php:167 app/features/ix/export.php:34
358
- #: app/features/mec/dashboard.php:265 app/libraries/main.php:5551
359
- #: app/libraries/main.php:5571 app/skins/daily_view/tpl.php:82
360
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
361
  #: app/skins/yearly_view/tpl.php:71
362
  msgid "Events"
@@ -380,7 +380,7 @@ msgstr "Veranstaltung hinzufügen"
380
  msgid "Add New Event"
381
  msgstr "Neue Veranstaltung hinzufügen"
382
 
383
- #: app/features/events.php:171 app/features/ix.php:4391
384
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
385
  #: app/skins/map/tpl.php:88
386
  msgid "No events found!"
@@ -403,7 +403,7 @@ msgstr "Veranstaltung ansehen"
403
  msgid "No events found in Trash!"
404
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
405
 
406
- #: app/features/events.php:192 app/features/events.php:3597
407
  #: app/features/mec/meta_boxes/display_options.php:1463
408
  #: app/features/mec/meta_boxes/search_form.php:31
409
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -418,19 +418,19 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
418
  #: app/features/mec/meta_boxes/search_form.php:760
419
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
420
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
421
- #: app/features/search.php:68 app/libraries/main.php:6350
422
- #: app/libraries/main.php:6404 app/libraries/skins.php:934
423
  #: app/skins/single.php:1016 app/skins/single/default.php:219
424
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
425
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
426
  msgid "Category"
427
  msgstr "Kategorie"
428
 
429
- #: app/features/events.php:193 app/features/events.php:3552
430
  #: app/features/fes/form.php:865 app/features/mec.php:467
431
  #: app/features/mec/meta_boxes/filter.php:69
432
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6349
433
- #: app/libraries/main.php:6403
434
  msgid "Categories"
435
  msgstr "Kategorien"
436
 
@@ -535,9 +535,9 @@ msgstr "Ort"
535
  msgid "Links"
536
  msgstr "Links"
537
 
538
- #: app/features/events.php:349 app/features/events.php:3599
539
- #: app/features/events.php:3788 app/features/ix.php:3980
540
- #: app/features/ix.php:4022
541
  #: app/features/mec/meta_boxes/display_options.php:1466
542
  #: app/features/mec/meta_boxes/search_form.php:46
543
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -555,8 +555,8 @@ msgstr "Links"
555
  #: app/features/organizers.php:204 app/features/organizers.php:260
556
  #: app/features/organizers.php:262 app/features/organizers.php:271
557
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
558
- #: app/features/search.php:80 app/libraries/main.php:6356
559
- #: app/libraries/main.php:6410 app/libraries/skins.php:986
560
  #: app/skins/single.php:1264 app/skins/single/default.php:244
561
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
562
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
@@ -565,7 +565,7 @@ msgstr "Veranstalter"
565
 
566
  #: app/features/events.php:350 app/features/events.php:1165
567
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
568
- #: app/libraries/main.php:6387 app/libraries/main.php:6436
569
  #: app/skins/single.php:1042 app/skins/single/default.php:142
570
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
571
  #: app/skins/single/modern.php:237
@@ -587,17 +587,17 @@ msgid "Guest Data"
587
  msgstr "Gäste Daten"
588
 
589
  #: app/features/events.php:511 app/features/events.php:2499
590
- #: app/features/events.php:4111 app/features/fes.php:243
591
  #: app/features/fes/form.php:795 app/features/labels.php:178
592
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
593
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
594
- #: app/libraries/notifications.php:1611 app/modules/booking/steps/form.php:63
595
  msgid "Name"
596
  msgstr "Name"
597
 
598
  #: app/features/events.php:512 app/features/events.php:2508
599
  #: app/features/events.php:2575 app/features/events.php:2664
600
- #: app/features/events.php:4114 app/features/fes.php:243
601
  #: app/features/fes/form.php:791 app/features/login/login.php:5
602
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
603
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
@@ -605,7 +605,7 @@ msgstr "Name"
605
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
606
  #: app/features/speakers.php:204 app/libraries/main.php:1872
607
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
608
- #: app/libraries/notifications.php:1612 app/modules/booking/steps/form.php:72
609
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
610
  #: app/skins/single.php:1340 app/skins/single/default.php:261
611
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
@@ -624,9 +624,9 @@ msgid "Date and Time"
624
  msgstr "Datum und Uhrzeit"
625
 
626
  #: app/features/events.php:528 app/features/events.php:532
627
- #: app/features/events.php:3600 app/features/events.php:3788
628
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
629
- #: app/features/ix.php:3980 app/features/ix.php:4022
630
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
631
  #: app/features/mec/meta_boxes/display_options.php:52
632
  #: app/features/mec/meta_boxes/display_options.php:295
@@ -648,9 +648,9 @@ msgid "Start Date"
648
  msgstr "Start Datum"
649
 
650
  #: app/features/events.php:547 app/features/events.php:551
651
- #: app/features/events.php:3601 app/features/events.php:3788
652
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
653
- #: app/features/ix.php:3980 app/features/ix.php:4022
654
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
655
  #: app/features/popup/event.php:92
656
  msgid "End Date"
@@ -706,7 +706,7 @@ msgstr ""
706
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
707
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
708
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
709
- #: app/features/mec/booking.php:830 app/features/mec/booking.php:856
710
  #: app/features/mec/dashboard.php:71
711
  #: app/features/mec/meta_boxes/display_options.php:85
712
  #: app/features/mec/meta_boxes/display_options.php:98
@@ -979,10 +979,10 @@ msgstr ""
979
  msgid "Show only one occurrence of this event"
980
  msgstr "Nächstes Auftreten von anderen Events."
981
 
982
- #: app/features/events.php:1161 app/features/events.php:3788
983
- #: app/features/fes/form.php:833 app/features/ix.php:3980
984
- #: app/features/ix.php:4022 app/features/mec/settings.php:763
985
- #: app/libraries/main.php:6386 app/libraries/main.php:6435
986
  #: app/widgets/single.php:103
987
  msgid "Event Cost"
988
  msgstr ""
@@ -1017,7 +1017,7 @@ msgid ""
1017
  "multiple day occurrences."
1018
  msgstr ""
1019
 
1020
- #: app/features/events.php:1334 app/libraries/render.php:559
1021
  msgid "Day 1"
1022
  msgstr "Tag 1"
1023
 
@@ -1039,9 +1039,9 @@ msgstr ""
1039
  #: app/features/events.php:1376 app/features/events.php:1415
1040
  #: app/features/events.php:1450 app/features/events.php:1482
1041
  #: app/features/events.php:1511 app/features/events.php:2371
1042
- #: app/features/events.php:2418 app/features/events.php:3596
1043
- #: app/features/events.php:3788 app/features/fes/form.php:256
1044
- #: app/features/ix.php:3980 app/features/ix.php:4022
1045
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1046
  #: app/features/mec/styling.php:130
1047
  msgid "Title"
@@ -1082,7 +1082,7 @@ msgstr "bis zum Beispiel 08:45 Uhr"
1082
 
1083
  #: app/features/events.php:1419 app/features/events.php:1453
1084
  #: app/features/events.php:1514 app/features/events.php:1892
1085
- #: app/features/events.php:2074 app/features/events.php:3788
1086
  msgid "Description"
1087
  msgstr "Beschreibung"
1088
 
@@ -1090,8 +1090,8 @@ msgstr "Beschreibung"
1090
  #: app/features/events.php:1519 app/features/fes/form.php:959
1091
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1092
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1093
- #: app/libraries/main.php:577 app/libraries/main.php:6357
1094
- #: app/libraries/main.php:6411 app/modules/speakers/details.php:18
1095
  msgid "Speakers"
1096
  msgstr "Sprecher"
1097
 
@@ -1106,7 +1106,7 @@ msgstr "Veranstaltungslinks"
1106
 
1107
  #: app/features/events.php:1553 app/features/events.php:1561
1108
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1109
- #: app/libraries/main.php:6384 app/libraries/main.php:6433
1110
  msgid "Event Link"
1111
  msgstr "Veranstaltungslink"
1112
 
@@ -1134,8 +1134,8 @@ msgid "URL Shortener"
1134
  msgstr ""
1135
 
1136
  #: app/features/events.php:1571 app/features/events.php:1584
1137
- #: app/features/fes/form.php:817 app/libraries/main.php:6385
1138
- #: app/libraries/main.php:6434 app/skins/single.php:1126
1139
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1140
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1141
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
@@ -1178,7 +1178,7 @@ msgid "Total User Booking Limits"
1178
  msgstr "Gesamt Verfügbare Plätze"
1179
 
1180
  #: app/features/events.php:1610 app/features/events.php:1835
1181
- #: app/libraries/book.php:63 app/libraries/main.php:6389
1182
  #: app/modules/booking/steps/tickets.php:137
1183
  #: app/modules/booking/steps/tickets.php:143
1184
  msgid "Tickets"
@@ -1193,7 +1193,7 @@ msgstr "Gebühren"
1193
  msgid "Ticket Variations / Options"
1194
  msgstr ""
1195
 
1196
- #: app/features/events.php:1619 app/features/mec/booking.php:885
1197
  #: app/features/mec/support-page.php:118
1198
  #, fuzzy
1199
  #| msgid "Organizer Tel"
@@ -1293,8 +1293,8 @@ msgstr "Email-Verifizierung"
1293
 
1294
  #: app/features/events.php:1763 app/features/events.php:1773
1295
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1296
- #: app/features/mec/booking.php:253 app/features/mec/booking.php:824
1297
- #: app/features/mec/booking.php:849
1298
  #: app/features/mec/meta_boxes/search_form.php:33
1299
  #: app/features/mec/meta_boxes/search_form.php:40
1300
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1400,8 +1400,8 @@ msgstr "Deaktiviert"
1400
 
1401
  #: app/features/events.php:1764 app/features/events.php:1774
1402
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1403
- #: app/features/mec/booking.php:254 app/features/mec/booking.php:823
1404
- #: app/features/mec/booking.php:850 app/features/mec/settings.php:106
1405
  msgid "Enabled"
1406
  msgstr "Aktiviert"
1407
 
@@ -1451,8 +1451,8 @@ msgid "Ticket ID"
1451
  msgstr "Ticket"
1452
 
1453
  #: app/features/events.php:1855 app/features/events.php:2039
1454
- #: app/features/events.php:3788 app/features/fes.php:243
1455
- #: app/features/ix.php:3980 app/features/ix.php:4022
1456
  #: app/features/labels.php:177 app/features/locations.php:262
1457
  #: app/features/organizers.php:203 app/features/speakers.php:282
1458
  msgid "ID"
@@ -1463,14 +1463,14 @@ msgid "Ticket Name"
1463
  msgstr "Ticket Name"
1464
 
1465
  #: app/features/events.php:1863 app/features/events.php:2046
1466
- #: app/features/events.php:3788 app/features/ix.php:3980
1467
- #: app/features/ix.php:4022
1468
  msgid "Start Time"
1469
  msgstr "Uhrzeit des Beginns"
1470
 
1471
  #: app/features/events.php:1876 app/features/events.php:2059
1472
- #: app/features/events.php:3788 app/features/ix.php:3980
1473
- #: app/features/ix.php:4022
1474
  msgid "End Time"
1475
  msgstr "Uhrzeit Ende"
1476
 
@@ -1775,30 +1775,30 @@ msgstr "Absatz"
1775
  msgid "Fixed Fields"
1776
  msgstr "Pflichtfeld"
1777
 
1778
- #: app/features/events.php:3498 app/features/events.php:3516
1779
- #: app/features/events.php:3534 app/features/events.php:3552
1780
  #, php-format
1781
  msgid "Show all %s"
1782
  msgstr "Zeige alle %s"
1783
 
1784
- #: app/features/events.php:3498
1785
  msgid "labels"
1786
  msgstr "Labels + Eventstatus"
1787
 
1788
- #: app/features/events.php:3516
1789
  msgid "locations"
1790
  msgstr "Orte"
1791
 
1792
- #: app/features/events.php:3534
1793
  msgid "organizers"
1794
  msgstr "Veranstalter"
1795
 
1796
- #: app/features/events.php:3568
1797
  msgid "Attendees List"
1798
  msgstr "Teilnehmer Liste"
1799
 
1800
- #: app/features/events.php:3598 app/features/events.php:3788
1801
- #: app/features/ix.php:3980 app/features/ix.php:4022
1802
  #: app/features/locations.php:58 app/features/locations.php:263
1803
  #: app/features/locations.php:324 app/features/locations.php:326
1804
  #: app/features/locations.php:335
@@ -1817,8 +1817,8 @@ msgstr "Teilnehmer Liste"
1817
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1818
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1819
  #: app/features/popup/event.php:125 app/features/search.php:74
1820
- #: app/libraries/main.php:2641 app/libraries/main.php:6354
1821
- #: app/libraries/main.php:6408 app/libraries/skins.php:960
1822
  #: app/skins/single.php:943 app/skins/single.php:1386
1823
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1824
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
@@ -1826,48 +1826,48 @@ msgstr "Teilnehmer Liste"
1826
  msgid "Location"
1827
  msgstr "Ort"
1828
 
1829
- #: app/features/events.php:3603
1830
  msgid "Repeat"
1831
  msgstr "Wiederholen"
1832
 
1833
- #: app/features/events.php:3604
1834
  msgid "Author"
1835
  msgstr "Autor"
1836
 
1837
- #: app/features/events.php:3725 app/features/events.php:3726
1838
  #, fuzzy
1839
  #| msgid "iCal Export"
1840
  msgid "iCal / Outlook Export"
1841
  msgstr "ical Export"
1842
 
1843
- #: app/features/events.php:3728 app/features/events.php:3729
1844
  msgid "CSV Export"
1845
  msgstr "CSV Export"
1846
 
1847
- #: app/features/events.php:3731 app/features/events.php:3732
1848
  msgid "MS Excel Export"
1849
  msgstr "MS Excel Export"
1850
 
1851
- #: app/features/events.php:3734 app/features/events.php:3735
1852
  msgid "XML Export"
1853
  msgstr "XML Export"
1854
 
1855
- #: app/features/events.php:3737 app/features/events.php:3738
1856
  msgid "JSON Export"
1857
  msgstr "JSON Export"
1858
 
1859
- #: app/features/events.php:3740 app/features/events.php:3741
1860
- #: app/features/events.php:3897
1861
  msgid "Duplicate"
1862
  msgstr "Kopie"
1863
 
1864
- #: app/features/events.php:3788 app/features/ix.php:3980
1865
- #: app/features/ix.php:4022
1866
  msgid "Link"
1867
  msgstr "Link"
1868
 
1869
- #: app/features/events.php:3788 app/features/ix.php:3980
1870
- #: app/features/ix.php:4022 app/features/locations.php:110
1871
  #: app/features/locations.php:180 app/features/locations.php:264
1872
  #: app/features/mec/meta_boxes/search_form.php:74
1873
  #: app/features/mec/meta_boxes/search_form.php:144
@@ -1883,46 +1883,46 @@ msgstr "Link"
1883
  msgid "Address"
1884
  msgstr "Adresse"
1885
 
1886
- #: app/features/events.php:3788
1887
  #, php-format
1888
  msgid "%s Tel"
1889
  msgstr "%s Tel"
1890
 
1891
- #: app/features/events.php:3788
1892
  #, php-format
1893
  msgid "%s Email"
1894
  msgstr "%s Email"
1895
 
1896
- #: app/features/events.php:3788 app/features/fes/form.php:850
1897
  #: app/features/mec/settings.php:769
1898
  msgid "Featured Image"
1899
  msgstr "Ausgewähltes Bild"
1900
 
1901
- #: app/features/events.php:4117 app/features/fes.php:243
1902
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1903
- #: app/libraries/main.php:6388
1904
  msgid "Ticket"
1905
  msgstr "Ticket"
1906
 
1907
- #: app/features/events.php:4120 app/features/profile/profile.php:186
1908
  msgid "Variations"
1909
  msgstr "Variationen"
1910
 
1911
- #: app/features/events.php:4135 app/features/fes.php:316
1912
  msgid "Unknown"
1913
  msgstr "Unbekannt"
1914
 
1915
- #: app/features/events.php:4161
1916
  msgid ""
1917
  "If you want to send an email, first select your attendees and then click in "
1918
  "the button below, please."
1919
  msgstr ""
1920
 
1921
- #: app/features/events.php:4161 app/features/mec/report.php:58
1922
  msgid "Send Email"
1923
  msgstr "E-Mail senden"
1924
 
1925
- #: app/features/events.php:4165
1926
  msgid "No Attendees Found!"
1927
  msgstr "Keine Teilnehmer gefunden!"
1928
 
@@ -2155,8 +2155,8 @@ msgstr "Bild entfernen"
2155
  #: app/features/fes/form.php:891 app/features/labels.php:61
2156
  #: app/features/labels.php:221 app/features/mec.php:468
2157
  #: app/features/mec/meta_boxes/filter.php:72
2158
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6351
2159
- #: app/libraries/main.php:6405 app/skins/single.php:1156
2160
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2161
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2162
  msgid "Labels"
@@ -2239,27 +2239,27 @@ msgstr "Der Datei Typ muss XML oder ICS sein."
2239
  msgid "An error occurred during the file upload! Please check permissions!"
2240
  msgstr ""
2241
 
2242
- #: app/features/ix.php:265 app/libraries/main.php:6636
2243
- #: app/libraries/main.php:6656
2244
  msgid "Confirmed"
2245
  msgstr "Bestätigt"
2246
 
2247
- #: app/features/ix.php:266 app/libraries/main.php:6637
2248
- #: app/libraries/main.php:6664
2249
  msgid "Rejected"
2250
  msgstr "Abgelehnt"
2251
 
2252
- #: app/features/ix.php:270 app/features/mec/booking.php:992
2253
- #: app/features/mec/booking.php:1014 app/features/mec/modules.php:431
2254
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2255
- #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1313
2256
- #: app/features/mec/settings.php:1335 app/features/mec/single.php:446
2257
- #: app/features/mec/single.php:468 app/libraries/main.php:6684
2258
  msgid "Verified"
2259
  msgstr "Verifiziert"
2260
 
2261
  #: app/features/ix.php:271 app/features/labels.php:118
2262
- #: app/features/labels.php:143 app/libraries/main.php:6685
2263
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2264
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2265
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
@@ -2295,91 +2295,91 @@ msgstr "Der Datei Typ muss XML oder ICS sein."
2295
  msgid "The events are imported successfully!"
2296
  msgstr "Die Events wurden erfolgreich importiert!"
2297
 
2298
- #: app/features/ix.php:1166
2299
  msgid "Third Party plugin is not installed and activated!"
2300
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
2301
 
2302
- #: app/features/ix.php:1190
2303
  msgid "Third Party plugin is invalid!"
2304
  msgstr "Drittanbieter-Plugin ist ungültig!"
2305
 
2306
- #: app/features/ix.php:3165 app/features/ix.php:3223
2307
  #, fuzzy
2308
  #| msgid "Both of API key and Calendar ID are required!"
2309
  msgid "API key and Calendar ID are required!"
2310
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2311
 
2312
- #: app/features/ix.php:3218 app/features/ix.php:3663 app/features/ix.php:4398
2313
  #, fuzzy
2314
  #| msgid "Please select some events to import!"
2315
  msgid "Please select events to import!"
2316
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
2317
 
2318
- #: app/features/ix.php:3605 app/features/ix.php:3668
2319
  #, fuzzy
2320
  #| msgid "Both of API key and Calendar ID are required!"
2321
  msgid "API key and Group URL are required!"
2322
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2323
 
2324
- #: app/features/ix.php:3907
2325
  msgid "Check at Meetup"
2326
  msgstr ""
2327
 
2328
- #: app/features/ix.php:3980 app/features/ix.php:4022
2329
  msgid "Organizer Tel"
2330
  msgstr "Organisator Telefon"
2331
 
2332
- #: app/features/ix.php:3980 app/features/ix.php:4022
2333
  msgid "Organizer Email"
2334
  msgstr "Organisator Email"
2335
 
2336
- #: app/features/ix.php:4098
2337
  #, fuzzy
2338
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2339
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2340
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2341
 
2342
- #: app/features/ix.php:4121
2343
  #, fuzzy, php-format
2344
  #| msgid "All seems good! Please click %s for authenticating your app."
2345
  msgid "All seems good! Please click %s to authenticate your app."
2346
  msgstr ""
2347
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
2348
 
2349
- #: app/features/ix.php:4121 app/features/mec/settings.php:1236
2350
  msgid "here"
2351
  msgstr ""
2352
 
2353
- #: app/features/ix.php:4175
2354
  #, fuzzy
2355
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2356
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2357
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2358
 
2359
- #: app/features/ix.php:4320
2360
  #, fuzzy, php-format
2361
  #| msgid "%s events added to Google Calendar successfully."
2362
  msgid "%s events added to Google Calendar with success."
2363
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
2364
 
2365
- #: app/features/ix.php:4321
2366
  #, fuzzy, php-format
2367
  #| msgid "%s previously added events get updated."
2368
  msgid "%s Updated previously added events."
2369
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
2370
 
2371
- #: app/features/ix.php:4322
2372
  #, php-format
2373
  msgid "%s events failed to add for following reasons: %s"
2374
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
2375
 
2376
- #: app/features/ix.php:4354
2377
  #, fuzzy
2378
  #| msgid "Please insert your facebook page's link."
2379
  msgid "Please insert your Facebook page's link."
2380
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2381
 
2382
- #: app/features/ix.php:4365 app/features/ix.php:4407
2383
  #, fuzzy
2384
  #| msgid ""
2385
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2391,7 +2391,7 @@ msgstr ""
2391
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
2392
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
2393
 
2394
- #: app/features/ix.php:4402
2395
  msgid "Please insert your facebook page's link."
2396
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2397
 
@@ -2566,9 +2566,9 @@ msgstr "Umschalten"
2566
  msgid "Add to Google Calendar"
2567
  msgstr "Zum Google Kalender hinzufügen"
2568
 
2569
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:994
2570
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2571
- #: app/features/mec/settings.php:1315 app/features/mec/single.php:448
2572
  msgid "Checking ..."
2573
  msgstr "Überprüfung"
2574
 
@@ -3093,8 +3093,8 @@ msgstr "Event %s"
3093
 
3094
  #: app/features/locations.php:59 app/features/mec.php:469
3095
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
3096
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6353
3097
- #: app/libraries/main.php:6407
3098
  msgid "Locations"
3099
  msgstr "Orte"
3100
 
@@ -3215,8 +3215,8 @@ msgstr "Bild wählen"
3215
  msgid "Don't show map in single event page"
3216
  msgstr "Karte in Einzelansicht nicht anzeigen"
3217
 
3218
- #: app/features/locations.php:398 app/libraries/main.php:6391
3219
- #: app/libraries/main.php:6438
3220
  msgid "Other Locations"
3221
  msgstr "Andere Orte"
3222
 
@@ -3300,7 +3300,7 @@ msgstr "Support"
3300
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3301
  #: app/features/mec/meta_boxes/filter.php:71
3302
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3303
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
3304
  msgid "Organizers"
3305
  msgstr "Veranstalter"
3306
 
@@ -3503,9 +3503,9 @@ msgid "Search..."
3503
  msgstr "Suche…"
3504
 
3505
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3506
- #: app/features/mec/booking.php:910 app/features/mec/booking.php:919
3507
- #: app/features/mec/booking.php:929 app/features/mec/booking.php:1011
3508
- #: app/features/mec/booking.php:1025 app/features/mec/messages.php:15
3509
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3510
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3511
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
@@ -3515,8 +3515,8 @@ msgstr "Suche…"
3515
  #: app/features/mec/notifications.php:1218
3516
  #: app/features/mec/notifications.php:1324
3517
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3518
- #: app/features/mec/settings.php:1264 app/features/mec/settings.php:1274
3519
- #: app/features/mec/settings.php:1332 app/features/mec/settings.php:1346
3520
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3521
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3522
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
@@ -3812,7 +3812,7 @@ msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3812
  msgid "Send confirmation email in auto confirmation mode"
3813
  msgstr ""
3814
 
3815
- #: app/features/mec/booking.php:412 app/libraries/main.php:568
3816
  #, fuzzy
3817
  #| msgid "Booking"
3818
  msgid "Booking Shortcode"
@@ -3845,8 +3845,8 @@ msgid ""
3845
  "new menu on the Dashboard > Booking"
3846
  msgstr ""
3847
 
3848
- #: app/features/mec/booking.php:446 app/features/mec/booking.php:816
3849
- #: app/libraries/main.php:570
3850
  msgid "Taxes / Fees"
3851
  msgstr "Steuern/Gebühren"
3852
 
@@ -3858,7 +3858,7 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
3858
  msgid "Add Fee"
3859
  msgstr "Gebühr hinzufügen"
3860
 
3861
- #: app/features/mec/booking.php:523 app/libraries/main.php:571
3862
  msgid "Ticket Variations & Options"
3863
  msgstr ""
3864
 
@@ -3870,11 +3870,39 @@ msgstr "Ticket Optionen aktivieren"
3870
  msgid "Add Variation / Option"
3871
  msgstr ""
3872
 
3873
- #: app/features/mec/booking.php:806
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3874
  msgid "Use WooCommerce as Payment System"
3875
  msgstr ""
3876
 
3877
- #: app/features/mec/booking.php:808
3878
  msgid ""
3879
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3880
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -3882,118 +3910,118 @@ msgid ""
3882
  "fields etc, you need to configure WooCommerce on your website."
3883
  msgstr ""
3884
 
3885
- #: app/features/mec/booking.php:810
3886
  msgid ""
3887
  "You cannot use following MEC features so you should use WooCommerc and its "
3888
  "addons if you need them."
3889
  msgstr ""
3890
 
3891
- #: app/features/mec/booking.php:812
3892
  #, fuzzy
3893
  #| msgid "Payment Gateways"
3894
  msgid "Payment gateways"
3895
  msgstr "Zahlungs-Gateways"
3896
 
3897
- #: app/features/mec/booking.php:813
3898
  #, fuzzy
3899
  #| msgid "Price per Date"
3900
  msgid "Price per dates of tickets"
3901
  msgstr "Preis pro Datum"
3902
 
3903
- #: app/features/mec/booking.php:815
3904
  #, fuzzy
3905
  #| msgid "Ticket Variation"
3906
  msgid "Ticket variations"
3907
  msgstr "Ticket Variationen"
3908
 
3909
- #: app/features/mec/booking.php:820
3910
  #, fuzzy
3911
  #| msgid "Automatically complete WC orders"
3912
  msgid "Automatically complete WooCommerce orders"
3913
  msgstr "WC-Aufträge automatisch abschließen"
3914
 
3915
- #: app/features/mec/booking.php:828
3916
  #, fuzzy
3917
  #| msgid "Automatically complete WC orders"
3918
  msgid "Auto WooCommerce orders"
3919
  msgstr "WC-Aufträge automatisch abschließen"
3920
 
3921
- #: app/features/mec/booking.php:829
3922
  msgid "It applies only to the orders that are related to MEC."
3923
  msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
3924
 
3925
- #: app/features/mec/booking.php:837
3926
  #, fuzzy
3927
  #| msgid "Add to Cart"
3928
  msgid "After Add to Cart"
3929
  msgstr "in den Warenkorb legen"
3930
 
3931
- #: app/features/mec/booking.php:840
3932
  #, fuzzy
3933
  #| msgid "Redirection Page"
3934
  msgid "Redirect to Cart"
3935
  msgstr "Weiterleitungs Seite "
3936
 
3937
- #: app/features/mec/booking.php:841
3938
  #, fuzzy
3939
  #| msgid "Redirection Page"
3940
  msgid "Redirect to Checkout"
3941
  msgstr "Weiterleitungs Seite "
3942
 
3943
- #: app/features/mec/booking.php:846
3944
  #, fuzzy
3945
  #| msgid "Booking Form"
3946
  msgid "MEC Booking Form"
3947
  msgstr "Buchungsformular"
3948
 
3949
- #: app/features/mec/booking.php:855
3950
  msgid ""
3951
  "If enabled then users should fill the booking form in MEC and then they will "
3952
  "be redirected to checkout."
3953
  msgstr ""
3954
 
3955
- #: app/features/mec/booking.php:881
3956
  msgid "Enable Organizer Payment Module"
3957
  msgstr ""
3958
 
3959
- #: app/features/mec/booking.php:886
3960
  msgid ""
3961
  "By enabling this module, organizers are able to insert their own payment "
3962
  "credentials for enabled gateways per event and receive the payments directly!"
3963
  msgstr ""
3964
 
3965
- #: app/features/mec/booking.php:896
3966
  msgid "Disable / Enable payment gateways per event"
3967
  msgstr ""
3968
 
3969
- #: app/features/mec/booking.php:900
3970
  #, fuzzy
3971
  #| msgid "Payment Gateways"
3972
  msgid "Payment Gateways Per Event"
3973
  msgstr "Zahlungs-Gateways"
3974
 
3975
- #: app/features/mec/booking.php:901
3976
  msgid ""
3977
  "By enabling this module, users are able to disable / enable payment gateways "
3978
  "per event"
3979
  msgstr ""
3980
 
3981
- #: app/features/mec/booking.php:989 app/features/mec/messages.php:78
3982
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3983
- #: app/features/mec/settings.php:1310 app/features/mec/single.php:443
3984
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3985
  msgid "Saved"
3986
  msgstr "Gesichert"
3987
 
3988
- #: app/features/mec/booking.php:990 app/features/mec/messages.php:79
3989
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3990
- #: app/features/mec/settings.php:1311 app/features/mec/single.php:444
3991
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3992
  msgid "Settings Saved!"
3993
  msgstr "Einstellungen gespeichert!"
3994
 
3995
- #: app/features/mec/booking.php:1016 app/features/mec/modules.php:455
3996
- #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1337
3997
  #: app/features/mec/single.php:470
3998
  msgid "Please Refresh Page"
3999
  msgstr "Bitte Seiten Refresh vornehmen"
@@ -5221,7 +5249,7 @@ msgstr "Such Formular anzeigen"
5221
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5222
  #: app/features/mec/single.php:386 app/features/search.php:86
5223
  #: app/features/speakers.php:60 app/features/speakers.php:283
5224
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
5225
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5226
  msgid "Speaker"
5227
  msgstr "Sprecher"
@@ -6434,8 +6462,8 @@ msgstr ""
6434
  msgid "only once per hour"
6435
  msgstr "nur einmal pro Tag"
6436
 
6437
- #: app/features/mec/notifications.php:950 app/libraries/main.php:7446
6438
- #: app/libraries/main.php:7463
6439
  #, fuzzy
6440
  #| msgid "Hour"
6441
  msgid "Hours"
@@ -6708,7 +6736,7 @@ msgid "You can enable/disable Schema scripts"
6708
  msgstr ""
6709
 
6710
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6711
- #: app/libraries/main.php:6362 app/libraries/main.php:6416
6712
  msgid "Weekdays"
6713
  msgstr "Wochentage"
6714
 
@@ -7068,8 +7096,8 @@ msgstr "Am Event Start"
7068
  msgid "Let WordPress decide"
7069
  msgstr "WordPress"
7070
 
7071
- #: app/features/mec/settings.php:660 app/libraries/main.php:6638
7072
- #: app/libraries/main.php:6660
7073
  msgid "Pending"
7074
  msgstr "Ausstehend"
7075
 
@@ -7233,8 +7261,8 @@ msgstr "Pflichtfeld"
7233
  msgid "Event Description"
7234
  msgstr "Beschreibung"
7235
 
7236
- #: app/features/mec/settings.php:930 app/libraries/main.php:6385
7237
- #: app/libraries/main.php:6434
7238
  msgid "More Info Link"
7239
  msgstr "Link Mehr Informationen"
7240
 
@@ -7428,35 +7456,7 @@ msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
7428
  msgid "More information about the list ID can be found %s."
7429
  msgstr ""
7430
 
7431
- #: app/features/mec/settings.php:1241
7432
- #, fuzzy
7433
- #| msgid "Filter Options"
7434
- msgid "Upload Field Options"
7435
- msgstr "Filteroptionen"
7436
-
7437
- #: app/features/mec/settings.php:1243
7438
- msgid "Mime types"
7439
- msgstr ""
7440
-
7441
- #: app/features/mec/settings.php:1247
7442
- msgid "Split mime types with \",\"."
7443
- msgstr ""
7444
-
7445
- #: app/features/mec/settings.php:1247
7446
- msgid "Default: jpeg,jpg,png,pdf"
7447
- msgstr ""
7448
-
7449
- #: app/features/mec/settings.php:1250
7450
- #, fuzzy
7451
- #| msgid "Amount (Per Ticket)"
7452
- msgid "Maximum file size"
7453
- msgstr "Betrag (pro Ticket)"
7454
-
7455
- #: app/features/mec/settings.php:1254
7456
- msgid "The unit is Megabyte \"MB\""
7457
- msgstr ""
7458
-
7459
- #: app/features/mec/single.php:38 app/libraries/main.php:556
7460
  #, fuzzy
7461
  #| msgid "Single Event Style"
7462
  msgid "Single Event Page"
@@ -7578,7 +7578,7 @@ msgid ""
7578
  "the settings page.' tab"
7579
  msgstr ""
7580
 
7581
- #: app/features/mec/single.php:162 app/libraries/main.php:557
7582
  #, fuzzy
7583
  #| msgid "Custom Styles"
7584
  msgid "Custom Fields"
@@ -7633,7 +7633,7 @@ msgstr ""
7633
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
7634
  "ausschließen."
7635
 
7636
- #: app/features/mec/single.php:286 app/libraries/main.php:560
7637
  msgid "Additional Organizers"
7638
  msgstr "Zusätzliche Organisatoren"
7639
 
@@ -7665,7 +7665,7 @@ msgstr ""
7665
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
7666
  "bearbeiten und auf der Seite für einzelne Events an."
7667
 
7668
- #: app/features/mec/single.php:318 app/libraries/main.php:562
7669
  #: app/skins/single.php:170 app/skins/single.php:435
7670
  msgid "Related Events"
7671
  msgstr "Vorgeschlagene Veranstaltungen"
@@ -7680,7 +7680,7 @@ msgstr ""
7680
  msgid "Select Taxonomies:"
7681
  msgstr "Klassifizierung "
7682
 
7683
- #: app/features/mec/single.php:360 app/libraries/main.php:563
7684
  #, fuzzy
7685
  #| msgid "Next/Previous Buttons"
7686
  msgid "Next / Previous Events"
@@ -8526,8 +8526,8 @@ msgstr "z.B.. max@mustermann.com"
8526
  msgid "eg. https://webnus.net"
8527
  msgstr "http://webnus.net"
8528
 
8529
- #: app/features/organizers.php:312 app/libraries/main.php:6390
8530
- #: app/libraries/main.php:6437 app/skins/single.php:1314
8531
  msgid "Other Organizers"
8532
  msgstr "Andere Veranstalter"
8533
 
@@ -8789,9 +8789,9 @@ msgstr "Suche %s"
8789
  msgid "No search result."
8790
  msgstr "Kein Suchergebnis"
8791
 
8792
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6392
8793
- #: app/libraries/main.php:6439 app/libraries/notifications.php:1256
8794
- #: app/libraries/render.php:531 app/libraries/render.php:853
8795
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8796
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8797
  #: app/modules/next-event/details.php:154
@@ -8898,9 +8898,9 @@ msgid ""
8898
  "section and speaker widget section!"
8899
  msgstr ""
8900
 
8901
- #: app/features/wc.php:103 app/libraries/notifications.php:1241
8902
- #: app/libraries/notifications.php:1256 app/libraries/notifications.php:1267
8903
- #: app/libraries/notifications.php:1536 app/libraries/notifications.php:1537
8904
  #, php-format
8905
  msgid "%s to %s"
8906
  msgstr "%s zu %s"
@@ -8920,11 +8920,11 @@ msgstr ""
8920
  msgid "%s Price"
8921
  msgstr "%s Preis"
8922
 
8923
- #: app/libraries/book.php:703 app/libraries/book.php:794
8924
  msgid "Discount"
8925
  msgstr "Rabatt"
8926
 
8927
- #: app/libraries/book.php:881 app/modules/booking/default.php:426
8928
  #: app/modules/booking/default.php:531
8929
  msgid "Download Invoice"
8930
  msgstr "Download Rechnung"
@@ -9060,51 +9060,51 @@ msgstr "Slideransicht"
9060
  msgid "Timeline View"
9061
  msgstr "Stundenplan"
9062
 
9063
- #: app/libraries/main.php:391 app/libraries/main.php:6364
9064
- #: app/libraries/main.php:6418
9065
  msgid "SU"
9066
  msgstr "SO"
9067
 
9068
- #: app/libraries/main.php:392 app/libraries/main.php:6365
9069
- #: app/libraries/main.php:6419
9070
  msgid "MO"
9071
  msgstr "MO"
9072
 
9073
- #: app/libraries/main.php:393 app/libraries/main.php:6366
9074
- #: app/libraries/main.php:6420
9075
  msgid "TU"
9076
  msgstr "DI"
9077
 
9078
- #: app/libraries/main.php:394 app/libraries/main.php:6367
9079
- #: app/libraries/main.php:6421
9080
  msgid "WE"
9081
  msgstr "MI"
9082
 
9083
- #: app/libraries/main.php:395 app/libraries/main.php:6368
9084
- #: app/libraries/main.php:6422
9085
  msgid "TH"
9086
  msgstr "DO"
9087
 
9088
- #: app/libraries/main.php:396 app/libraries/main.php:6369
9089
- #: app/libraries/main.php:6423
9090
  msgid "FR"
9091
  msgstr "FR"
9092
 
9093
- #: app/libraries/main.php:397 app/libraries/main.php:6370
9094
- #: app/libraries/main.php:6424
9095
  msgid "SA"
9096
  msgstr "SA"
9097
 
9098
- #: app/libraries/main.php:552
 
 
 
 
9099
  #, fuzzy
9100
  #| msgid "Upload/Add image"
9101
  msgid "Upload Field"
9102
  msgstr "Bild hochladen/hinzufügen"
9103
 
9104
- #: app/libraries/main.php:561
9105
- msgid "Additional Locations"
9106
- msgstr "Zusätzliche Locations"
9107
-
9108
  #: app/libraries/main.php:726
9109
  #, fuzzy
9110
  #| msgid "Social Module : "
@@ -9439,113 +9439,113 @@ msgstr "Ein neues Label für diese Option einfügen"
9439
  msgid "Free"
9440
  msgstr "kostenfrei"
9441
 
9442
- #: app/libraries/main.php:4447 app/libraries/main.php:6699
9443
  msgid "M.E. Calender"
9444
  msgstr "M.E. Calender"
9445
 
9446
- #: app/libraries/main.php:4603
9447
  #, php-format
9448
  msgid "Copy of %s"
9449
  msgstr "Kopie von %s"
9450
 
9451
- #: app/libraries/main.php:5475
9452
  msgid "Booked an event."
9453
  msgstr "Eine Veranstaltung wurde gebucht."
9454
 
9455
- #: app/libraries/main.php:5516
9456
  #, php-format
9457
  msgid "%s booked %s event."
9458
  msgstr "%s gebuchtes %s Event"
9459
 
9460
- #: app/libraries/main.php:6347 app/libraries/main.php:6401
9461
  msgid "Taxonomies"
9462
  msgstr "Klassifizierung "
9463
 
9464
- #: app/libraries/main.php:6349 app/libraries/main.php:6403
9465
  msgid "Category Plural Label"
9466
  msgstr "Kategorien"
9467
 
9468
- #: app/libraries/main.php:6350 app/libraries/main.php:6404
9469
  msgid "Category Singular Label"
9470
  msgstr "Kategorie"
9471
 
9472
- #: app/libraries/main.php:6351 app/libraries/main.php:6405
9473
  msgid "Label Plural Label"
9474
  msgstr "Labels"
9475
 
9476
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9477
  msgid "Label Singular Label"
9478
  msgstr "Label"
9479
 
9480
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9481
  msgid "label"
9482
  msgstr "label"
9483
 
9484
- #: app/libraries/main.php:6353 app/libraries/main.php:6407
9485
  msgid "Location Plural Label"
9486
  msgstr "Veranstaltungsorte"
9487
 
9488
- #: app/libraries/main.php:6354 app/libraries/main.php:6408
9489
  msgid "Location Singular Label"
9490
  msgstr "Veranstaltungsort"
9491
 
9492
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
9493
  msgid "Organizer Plural Label"
9494
  msgstr "Veranstalter"
9495
 
9496
- #: app/libraries/main.php:6356 app/libraries/main.php:6410
9497
  msgid "Organizer Singular Label"
9498
  msgstr "Veranstalter"
9499
 
9500
- #: app/libraries/main.php:6357 app/libraries/main.php:6411
9501
  #, fuzzy
9502
  #| msgid "Label Plural Label"
9503
  msgid "Speaker Plural Label"
9504
  msgstr "Labels"
9505
 
9506
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
9507
  #, fuzzy
9508
  #| msgid "Label Singular Label"
9509
  msgid "Speaker Singular Label"
9510
  msgstr "Label"
9511
 
9512
- #: app/libraries/main.php:6364 app/libraries/main.php:6418
9513
  msgid "Sunday abbreviation"
9514
  msgstr "Sonntag Abkürzung"
9515
 
9516
- #: app/libraries/main.php:6365 app/libraries/main.php:6419
9517
  msgid "Monday abbreviation"
9518
  msgstr "Montag Abkürzung"
9519
 
9520
- #: app/libraries/main.php:6366 app/libraries/main.php:6420
9521
  msgid "Tuesday abbreviation"
9522
  msgstr "Dienstag Abkürzung"
9523
 
9524
- #: app/libraries/main.php:6367 app/libraries/main.php:6421
9525
  msgid "Wednesday abbreviation"
9526
  msgstr "Mittwoch Abkürzung"
9527
 
9528
- #: app/libraries/main.php:6368 app/libraries/main.php:6422
9529
  msgid "Thursday abbreviation"
9530
  msgstr "Donnerstag Abkürzung"
9531
 
9532
- #: app/libraries/main.php:6369 app/libraries/main.php:6423
9533
  msgid "Friday abbreviation"
9534
  msgstr "Freitag Abkürzung"
9535
 
9536
- #: app/libraries/main.php:6370 app/libraries/main.php:6424
9537
  msgid "Saturday abbreviation"
9538
  msgstr "Samstag Abkürzung "
9539
 
9540
- #: app/libraries/main.php:6374 app/libraries/main.php:6428
9541
  msgid "Others"
9542
  msgstr "Andere"
9543
 
9544
- #: app/libraries/main.php:6376
9545
  msgid "Booking Success Message"
9546
  msgstr "Buchung erfolgreich Mitteilung"
9547
 
9548
- #: app/libraries/main.php:6376
9549
  #, fuzzy
9550
  #| msgid ""
9551
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -9557,60 +9557,60 @@ msgstr ""
9557
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
9558
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
9559
 
9560
- #: app/libraries/main.php:6377
9561
  #, fuzzy
9562
  #| msgid "Booking Success Message"
9563
  msgid "Booking Restriction Message 1"
9564
  msgstr "Buchung erfolgreich Mitteilung"
9565
 
9566
- #: app/libraries/main.php:6377
9567
  #, php-format
9568
  msgid ""
9569
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9570
  "tickets."
9571
  msgstr ""
9572
 
9573
- #: app/libraries/main.php:6378
9574
  #, fuzzy
9575
  #| msgid "Booking Success Message"
9576
  msgid "Booking Restriction Message 2"
9577
  msgstr "Buchung erfolgreich Mitteilung"
9578
 
9579
- #: app/libraries/main.php:6378
9580
  #, php-format
9581
  msgid ""
9582
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9583
  "tickets."
9584
  msgstr ""
9585
 
9586
- #: app/libraries/main.php:6379
9587
  #, fuzzy
9588
  #| msgid "Booking Success Message"
9589
  msgid "Booking IP Restriction Message"
9590
  msgstr "Buchung erfolgreich Mitteilung"
9591
 
9592
- #: app/libraries/main.php:6379
9593
  #, php-format
9594
  msgid "Maximum allowed number of tickets that you can book is %s."
9595
  msgstr ""
9596
 
9597
- #: app/libraries/main.php:6380
9598
  #, fuzzy
9599
  #| msgid "Booking Options"
9600
  msgid "Booking Button"
9601
  msgstr "Buchungsoptionen"
9602
 
9603
- #: app/libraries/main.php:6380 app/libraries/skins.php:1259
9604
  #: app/modules/booking/steps/tickets.php:102
9605
  msgid "Book Event"
9606
  msgstr "Veranstaltung buchen"
9607
 
9608
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9609
  #: app/widgets/single.php:131
9610
  msgid "Register Button"
9611
  msgstr "Register Button"
9612
 
9613
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9614
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9615
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9616
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
@@ -9628,11 +9628,11 @@ msgstr "Register Button"
9628
  msgid "REGISTER"
9629
  msgstr "ANMELDEN"
9630
 
9631
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9632
  msgid "View Detail Button"
9633
  msgstr "Ansicht Detail Button"
9634
 
9635
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9636
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9637
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9638
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
@@ -9644,138 +9644,138 @@ msgstr "Ansicht Detail Button"
9644
  msgid "View Detail"
9645
  msgstr "Details "
9646
 
9647
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9648
  msgid "Event Detail Button"
9649
  msgstr "Event Detail Button"
9650
 
9651
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9652
  msgid "Event Detail"
9653
  msgstr "Veranstaltungsdetails"
9654
 
9655
- #: app/libraries/main.php:6388
9656
  msgid "Ticket (Singular)"
9657
  msgstr "Ticket"
9658
 
9659
- #: app/libraries/main.php:6389
9660
  msgid "Tickets (Plural)"
9661
  msgstr "Tickets"
9662
 
9663
- #: app/libraries/main.php:6547
9664
  msgid "EventON"
9665
  msgstr "EventON"
9666
 
9667
- #: app/libraries/main.php:6548
9668
  msgid "The Events Calendar"
9669
  msgstr "The Events Calendar"
9670
 
9671
- #: app/libraries/main.php:6549
9672
  msgid "Events Schedule WP Plugin"
9673
  msgstr "Event Zeitplan WP-Plugin"
9674
 
9675
- #: app/libraries/main.php:6550
9676
  msgid "Calendarize It"
9677
  msgstr ""
9678
 
9679
- #: app/libraries/main.php:6551
9680
  #, fuzzy
9681
  #| msgid "No Search Options"
9682
  msgid "Event Espresso"
9683
  msgstr "Keine Suchoptionen"
9684
 
9685
- #: app/libraries/main.php:6552
9686
  msgid "Events Manager (Recurring)"
9687
  msgstr "Wiederholende Veranstaltung"
9688
 
9689
- #: app/libraries/main.php:6553
9690
  msgid "Events Manager (Single)"
9691
  msgstr "Moderner Event Kalender"
9692
 
9693
- #: app/libraries/main.php:6554
9694
  #, fuzzy
9695
  #| msgid "Events Manager (Single)"
9696
  msgid "WP Event Manager"
9697
  msgstr "Moderner Event Kalender"
9698
 
9699
- #: app/libraries/main.php:6686
9700
  msgid "Waiting"
9701
  msgstr "in Bearbeitung"
9702
 
9703
- #: app/libraries/main.php:6729
9704
  #, fuzzy
9705
  #| msgid "Sunday"
9706
  msgid "Sun"
9707
  msgstr "Sonntag"
9708
 
9709
- #: app/libraries/main.php:6729
9710
  #, fuzzy
9711
  #| msgid "Month"
9712
  msgid "Mon"
9713
  msgstr "Monat "
9714
 
9715
- #: app/libraries/main.php:6729
9716
  #, fuzzy
9717
  #| msgid "Tel"
9718
  msgid "Tue"
9719
  msgstr "Tel"
9720
 
9721
- #: app/libraries/main.php:6729
9722
  msgid "Wed"
9723
  msgstr ""
9724
 
9725
- #: app/libraries/main.php:6729
9726
  msgid "Thu"
9727
  msgstr ""
9728
 
9729
- #: app/libraries/main.php:6729
9730
  #, fuzzy
9731
  #| msgid "Friday"
9732
  msgid "Fri"
9733
  msgstr "Freitag"
9734
 
9735
- #: app/libraries/main.php:6729
9736
  #, fuzzy
9737
  #| msgid "Start"
9738
  msgid "Sat"
9739
  msgstr "Start"
9740
 
9741
- #: app/libraries/main.php:6895 app/libraries/render.php:80
9742
  #: app/libraries/render.php:445
9743
  msgid "Skin controller does not exist."
9744
  msgstr "Skin contoller existiert nicht."
9745
 
9746
- #: app/libraries/main.php:7110
9747
  msgid "Sold Out"
9748
  msgstr "Ausgebucht"
9749
 
9750
- #: app/libraries/main.php:7121
9751
  msgid "Last Few Tickets"
9752
  msgstr "Nur noch wenige Tickets verfügbar."
9753
 
9754
- #: app/libraries/main.php:7452 app/libraries/main.php:7469
9755
  #, fuzzy
9756
  #| msgid "minutes"
9757
  msgid "Minutes"
9758
  msgstr "Minuten"
9759
 
9760
- #: app/libraries/main.php:7474
9761
  msgid "AM / PM"
9762
  msgstr ""
9763
 
9764
- #: app/libraries/main.php:7475
9765
  msgid "AM"
9766
  msgstr "AM"
9767
 
9768
- #: app/libraries/main.php:7476
9769
  msgid "PM"
9770
  msgstr "PM"
9771
 
9772
- #: app/libraries/main.php:7484
9773
  #, fuzzy
9774
  #| msgid "Loading..."
9775
  msgid "Ongoing..."
9776
  msgstr "Laden…"
9777
 
9778
- #: app/libraries/main.php:7485
9779
  #, fuzzy
9780
  #| msgid "Expired Events"
9781
  msgid "Expired!"
@@ -9807,45 +9807,45 @@ msgstr "Ihre Buchung wurde storniert"
9807
  msgid "A new booking is received."
9808
  msgstr "Eine neue Buchung ist eingegangen."
9809
 
9810
- #: app/libraries/notifications.php:852
9811
  msgid "A new event is added."
9812
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
9813
 
9814
- #: app/libraries/notifications.php:968
9815
  msgid "Your event is published."
9816
  msgstr "Die Veranstaltung wurde veröffentlicht."
9817
 
9818
- #: app/libraries/notifications.php:1118
9819
  #, fuzzy
9820
  #| msgid "Event Color"
9821
  msgid "Event is soldout!"
9822
  msgstr "Farbe der Veranstaltung"
9823
 
9824
- #: app/libraries/notifications.php:1480
9825
  msgid "to"
9826
  msgstr ""
9827
 
9828
- #: app/libraries/notifications.php:1501 app/modules/export/details.php:48
9829
  msgid "+ Add to Google Calendar"
9830
  msgstr "+ zum Google Calendar hinzufügen"
9831
 
9832
- #: app/libraries/notifications.php:1502 app/modules/export/details.php:49
9833
  #, fuzzy
9834
  #| msgid "+ iCal export"
9835
  msgid "+ iCal / Outlook export"
9836
  msgstr "+ zu iCal exportieren"
9837
 
9838
- #: app/libraries/notifications.php:1551
9839
  #, fuzzy, php-format
9840
  #| msgid "+ Add to Google Calendar"
9841
  msgid "+ %s to Google Calendar"
9842
  msgstr "+ zum Google Calendar hinzufügen"
9843
 
9844
- #: app/libraries/notifications.php:1631
9845
  msgid "Yes"
9846
  msgstr "Ja"
9847
 
9848
- #: app/libraries/notifications.php:1631
9849
  msgid "No"
9850
  msgstr "Nein"
9851
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-11-18 11:01+0330\n"
6
+ "PO-Revision-Date: 2020-11-18 11:02+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
108
 
109
  #: app/features/contextual.php:62 app/features/events.php:1617
110
  #: app/features/events.php:2513 app/features/mec/booking.php:606
111
+ #: app/features/mec/booking.php:872 app/features/mec/support.php:29
112
+ #: app/libraries/main.php:571
113
  msgid "Booking Form"
114
  msgstr "Buchungsformular"
115
 
136
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
137
 
138
  #: app/features/contextual.php:70 app/features/events.php:1625
139
+ #: app/features/mec/booking.php:816 app/features/mec/support-page.php:115
140
  #: app/features/mec/support.php:36 app/libraries/main.php:573
141
  msgid "Payment Gateways"
142
  msgstr "Zahlungs-Gateways"
267
  msgstr "Google Recaptcha Einstellungen"
268
 
269
  #: app/features/contextual.php:258 app/features/mec/single.php:248
270
+ #: app/libraries/main.php:557
271
  msgid "Countdown Options"
272
  msgstr "Countdown Einstellungsoptionen"
273
 
286
  msgstr "Erstellung von Veranstaltungen im Frontend"
287
 
288
  #: app/features/contextual.php:298 app/features/events.php:345
289
+ #: app/libraries/main.php:558
290
  msgid "Exceptional Days"
291
  msgstr "Herausgenommene Tage "
292
 
293
  #: app/features/contextual.php:308 app/features/events.php:315
294
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
295
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
296
+ #: app/libraries/main.php:566 app/libraries/main.php:597
297
  #: app/libraries/main.php:684
298
  msgid "Booking"
299
  msgstr "Buchung / Reservierung"
300
 
301
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
302
+ #: app/features/mec/booking.php:832 app/libraries/main.php:568
303
  msgid "Coupons"
304
  msgstr "Gutscheine"
305
 
355
  msgstr "Das Bild ist hochgeladen"
356
 
357
  #: app/features/events.php:167 app/features/ix/export.php:34
358
+ #: app/features/mec/dashboard.php:265 app/libraries/main.php:5542
359
+ #: app/libraries/main.php:5562 app/skins/daily_view/tpl.php:82
360
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
361
  #: app/skins/yearly_view/tpl.php:71
362
  msgid "Events"
380
  msgid "Add New Event"
381
  msgstr "Neue Veranstaltung hinzufügen"
382
 
383
+ #: app/features/events.php:171 app/features/ix.php:4401
384
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
385
  #: app/skins/map/tpl.php:88
386
  msgid "No events found!"
403
  msgid "No events found in Trash!"
404
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
405
 
406
+ #: app/features/events.php:192 app/features/events.php:3599
407
  #: app/features/mec/meta_boxes/display_options.php:1463
408
  #: app/features/mec/meta_boxes/search_form.php:31
409
  #: app/features/mec/meta_boxes/search_form.php:101
418
  #: app/features/mec/meta_boxes/search_form.php:760
419
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
420
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
421
+ #: app/features/search.php:68 app/libraries/main.php:6341
422
+ #: app/libraries/main.php:6395 app/libraries/skins.php:934
423
  #: app/skins/single.php:1016 app/skins/single/default.php:219
424
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
425
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
426
  msgid "Category"
427
  msgstr "Kategorie"
428
 
429
+ #: app/features/events.php:193 app/features/events.php:3554
430
  #: app/features/fes/form.php:865 app/features/mec.php:467
431
  #: app/features/mec/meta_boxes/filter.php:69
432
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6340
433
+ #: app/libraries/main.php:6394
434
  msgid "Categories"
435
  msgstr "Kategorien"
436
 
535
  msgid "Links"
536
  msgstr "Links"
537
 
538
+ #: app/features/events.php:349 app/features/events.php:3601
539
+ #: app/features/events.php:3790 app/features/ix.php:3990
540
+ #: app/features/ix.php:4032
541
  #: app/features/mec/meta_boxes/display_options.php:1466
542
  #: app/features/mec/meta_boxes/search_form.php:46
543
  #: app/features/mec/meta_boxes/search_form.php:116
555
  #: app/features/organizers.php:204 app/features/organizers.php:260
556
  #: app/features/organizers.php:262 app/features/organizers.php:271
557
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
558
+ #: app/features/search.php:80 app/libraries/main.php:6347
559
+ #: app/libraries/main.php:6401 app/libraries/skins.php:986
560
  #: app/skins/single.php:1264 app/skins/single/default.php:244
561
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
562
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
565
 
566
  #: app/features/events.php:350 app/features/events.php:1165
567
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
568
+ #: app/libraries/main.php:6378 app/libraries/main.php:6427
569
  #: app/skins/single.php:1042 app/skins/single/default.php:142
570
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
571
  #: app/skins/single/modern.php:237
587
  msgstr "Gäste Daten"
588
 
589
  #: app/features/events.php:511 app/features/events.php:2499
590
+ #: app/features/events.php:4113 app/features/fes.php:243
591
  #: app/features/fes/form.php:795 app/features/labels.php:178
592
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
593
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
594
+ #: app/libraries/notifications.php:1617 app/modules/booking/steps/form.php:63
595
  msgid "Name"
596
  msgstr "Name"
597
 
598
  #: app/features/events.php:512 app/features/events.php:2508
599
  #: app/features/events.php:2575 app/features/events.php:2664
600
+ #: app/features/events.php:4116 app/features/fes.php:243
601
  #: app/features/fes/form.php:791 app/features/login/login.php:5
602
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
603
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
605
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
606
  #: app/features/speakers.php:204 app/libraries/main.php:1872
607
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
608
+ #: app/libraries/notifications.php:1618 app/modules/booking/steps/form.php:72
609
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
610
  #: app/skins/single.php:1340 app/skins/single/default.php:261
611
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
624
  msgstr "Datum und Uhrzeit"
625
 
626
  #: app/features/events.php:528 app/features/events.php:532
627
+ #: app/features/events.php:3602 app/features/events.php:3790
628
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
629
+ #: app/features/ix.php:3990 app/features/ix.php:4032
630
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
631
  #: app/features/mec/meta_boxes/display_options.php:52
632
  #: app/features/mec/meta_boxes/display_options.php:295
648
  msgstr "Start Datum"
649
 
650
  #: app/features/events.php:547 app/features/events.php:551
651
+ #: app/features/events.php:3603 app/features/events.php:3790
652
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
653
+ #: app/features/ix.php:3990 app/features/ix.php:4032
654
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
655
  #: app/features/popup/event.php:92
656
  msgid "End Date"
706
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
707
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
708
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
709
+ #: app/features/mec/booking.php:848 app/features/mec/booking.php:874
710
  #: app/features/mec/dashboard.php:71
711
  #: app/features/mec/meta_boxes/display_options.php:85
712
  #: app/features/mec/meta_boxes/display_options.php:98
979
  msgid "Show only one occurrence of this event"
980
  msgstr "Nächstes Auftreten von anderen Events."
981
 
982
+ #: app/features/events.php:1161 app/features/events.php:3790
983
+ #: app/features/fes/form.php:833 app/features/ix.php:3990
984
+ #: app/features/ix.php:4032 app/features/mec/settings.php:763
985
+ #: app/libraries/main.php:6377 app/libraries/main.php:6426
986
  #: app/widgets/single.php:103
987
  msgid "Event Cost"
988
  msgstr ""
1017
  "multiple day occurrences."
1018
  msgstr ""
1019
 
1020
+ #: app/features/events.php:1334 app/libraries/render.php:560
1021
  msgid "Day 1"
1022
  msgstr "Tag 1"
1023
 
1039
  #: app/features/events.php:1376 app/features/events.php:1415
1040
  #: app/features/events.php:1450 app/features/events.php:1482
1041
  #: app/features/events.php:1511 app/features/events.php:2371
1042
+ #: app/features/events.php:2418 app/features/events.php:3598
1043
+ #: app/features/events.php:3790 app/features/fes/form.php:256
1044
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1045
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1046
  #: app/features/mec/styling.php:130
1047
  msgid "Title"
1082
 
1083
  #: app/features/events.php:1419 app/features/events.php:1453
1084
  #: app/features/events.php:1514 app/features/events.php:1892
1085
+ #: app/features/events.php:2074 app/features/events.php:3790
1086
  msgid "Description"
1087
  msgstr "Beschreibung"
1088
 
1090
  #: app/features/events.php:1519 app/features/fes/form.php:959
1091
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1092
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1093
+ #: app/libraries/main.php:577 app/libraries/main.php:6348
1094
+ #: app/libraries/main.php:6402 app/modules/speakers/details.php:18
1095
  msgid "Speakers"
1096
  msgstr "Sprecher"
1097
 
1106
 
1107
  #: app/features/events.php:1553 app/features/events.php:1561
1108
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1109
+ #: app/libraries/main.php:6375 app/libraries/main.php:6424
1110
  msgid "Event Link"
1111
  msgstr "Veranstaltungslink"
1112
 
1134
  msgstr ""
1135
 
1136
  #: app/features/events.php:1571 app/features/events.php:1584
1137
+ #: app/features/fes/form.php:817 app/libraries/main.php:6376
1138
+ #: app/libraries/main.php:6425 app/skins/single.php:1126
1139
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1140
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1141
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1178
  msgstr "Gesamt Verfügbare Plätze"
1179
 
1180
  #: app/features/events.php:1610 app/features/events.php:1835
1181
+ #: app/libraries/book.php:63 app/libraries/main.php:6380
1182
  #: app/modules/booking/steps/tickets.php:137
1183
  #: app/modules/booking/steps/tickets.php:143
1184
  msgid "Tickets"
1193
  msgid "Ticket Variations / Options"
1194
  msgstr ""
1195
 
1196
+ #: app/features/events.php:1619 app/features/mec/booking.php:903
1197
  #: app/features/mec/support-page.php:118
1198
  #, fuzzy
1199
  #| msgid "Organizer Tel"
1293
 
1294
  #: app/features/events.php:1763 app/features/events.php:1773
1295
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1296
+ #: app/features/mec/booking.php:253 app/features/mec/booking.php:842
1297
+ #: app/features/mec/booking.php:867
1298
  #: app/features/mec/meta_boxes/search_form.php:33
1299
  #: app/features/mec/meta_boxes/search_form.php:40
1300
  #: app/features/mec/meta_boxes/search_form.php:48
1400
 
1401
  #: app/features/events.php:1764 app/features/events.php:1774
1402
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1403
+ #: app/features/mec/booking.php:254 app/features/mec/booking.php:841
1404
+ #: app/features/mec/booking.php:868 app/features/mec/settings.php:106
1405
  msgid "Enabled"
1406
  msgstr "Aktiviert"
1407
 
1451
  msgstr "Ticket"
1452
 
1453
  #: app/features/events.php:1855 app/features/events.php:2039
1454
+ #: app/features/events.php:3790 app/features/fes.php:243
1455
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1456
  #: app/features/labels.php:177 app/features/locations.php:262
1457
  #: app/features/organizers.php:203 app/features/speakers.php:282
1458
  msgid "ID"
1463
  msgstr "Ticket Name"
1464
 
1465
  #: app/features/events.php:1863 app/features/events.php:2046
1466
+ #: app/features/events.php:3790 app/features/ix.php:3990
1467
+ #: app/features/ix.php:4032
1468
  msgid "Start Time"
1469
  msgstr "Uhrzeit des Beginns"
1470
 
1471
  #: app/features/events.php:1876 app/features/events.php:2059
1472
+ #: app/features/events.php:3790 app/features/ix.php:3990
1473
+ #: app/features/ix.php:4032
1474
  msgid "End Time"
1475
  msgstr "Uhrzeit Ende"
1476
 
1775
  msgid "Fixed Fields"
1776
  msgstr "Pflichtfeld"
1777
 
1778
+ #: app/features/events.php:3500 app/features/events.php:3518
1779
+ #: app/features/events.php:3536 app/features/events.php:3554
1780
  #, php-format
1781
  msgid "Show all %s"
1782
  msgstr "Zeige alle %s"
1783
 
1784
+ #: app/features/events.php:3500
1785
  msgid "labels"
1786
  msgstr "Labels + Eventstatus"
1787
 
1788
+ #: app/features/events.php:3518
1789
  msgid "locations"
1790
  msgstr "Orte"
1791
 
1792
+ #: app/features/events.php:3536
1793
  msgid "organizers"
1794
  msgstr "Veranstalter"
1795
 
1796
+ #: app/features/events.php:3570
1797
  msgid "Attendees List"
1798
  msgstr "Teilnehmer Liste"
1799
 
1800
+ #: app/features/events.php:3600 app/features/events.php:3790
1801
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1802
  #: app/features/locations.php:58 app/features/locations.php:263
1803
  #: app/features/locations.php:324 app/features/locations.php:326
1804
  #: app/features/locations.php:335
1817
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1818
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1819
  #: app/features/popup/event.php:125 app/features/search.php:74
1820
+ #: app/libraries/main.php:2641 app/libraries/main.php:6345
1821
+ #: app/libraries/main.php:6399 app/libraries/skins.php:960
1822
  #: app/skins/single.php:943 app/skins/single.php:1386
1823
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1824
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
1826
  msgid "Location"
1827
  msgstr "Ort"
1828
 
1829
+ #: app/features/events.php:3605
1830
  msgid "Repeat"
1831
  msgstr "Wiederholen"
1832
 
1833
+ #: app/features/events.php:3606
1834
  msgid "Author"
1835
  msgstr "Autor"
1836
 
1837
+ #: app/features/events.php:3727 app/features/events.php:3728
1838
  #, fuzzy
1839
  #| msgid "iCal Export"
1840
  msgid "iCal / Outlook Export"
1841
  msgstr "ical Export"
1842
 
1843
+ #: app/features/events.php:3730 app/features/events.php:3731
1844
  msgid "CSV Export"
1845
  msgstr "CSV Export"
1846
 
1847
+ #: app/features/events.php:3733 app/features/events.php:3734
1848
  msgid "MS Excel Export"
1849
  msgstr "MS Excel Export"
1850
 
1851
+ #: app/features/events.php:3736 app/features/events.php:3737
1852
  msgid "XML Export"
1853
  msgstr "XML Export"
1854
 
1855
+ #: app/features/events.php:3739 app/features/events.php:3740
1856
  msgid "JSON Export"
1857
  msgstr "JSON Export"
1858
 
1859
+ #: app/features/events.php:3742 app/features/events.php:3743
1860
+ #: app/features/events.php:3899
1861
  msgid "Duplicate"
1862
  msgstr "Kopie"
1863
 
1864
+ #: app/features/events.php:3790 app/features/ix.php:3990
1865
+ #: app/features/ix.php:4032
1866
  msgid "Link"
1867
  msgstr "Link"
1868
 
1869
+ #: app/features/events.php:3790 app/features/ix.php:3990
1870
+ #: app/features/ix.php:4032 app/features/locations.php:110
1871
  #: app/features/locations.php:180 app/features/locations.php:264
1872
  #: app/features/mec/meta_boxes/search_form.php:74
1873
  #: app/features/mec/meta_boxes/search_form.php:144
1883
  msgid "Address"
1884
  msgstr "Adresse"
1885
 
1886
+ #: app/features/events.php:3790
1887
  #, php-format
1888
  msgid "%s Tel"
1889
  msgstr "%s Tel"
1890
 
1891
+ #: app/features/events.php:3790
1892
  #, php-format
1893
  msgid "%s Email"
1894
  msgstr "%s Email"
1895
 
1896
+ #: app/features/events.php:3790 app/features/fes/form.php:850
1897
  #: app/features/mec/settings.php:769
1898
  msgid "Featured Image"
1899
  msgstr "Ausgewähltes Bild"
1900
 
1901
+ #: app/features/events.php:4119 app/features/fes.php:243
1902
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1903
+ #: app/libraries/main.php:6379
1904
  msgid "Ticket"
1905
  msgstr "Ticket"
1906
 
1907
+ #: app/features/events.php:4122 app/features/profile/profile.php:186
1908
  msgid "Variations"
1909
  msgstr "Variationen"
1910
 
1911
+ #: app/features/events.php:4137 app/features/fes.php:316
1912
  msgid "Unknown"
1913
  msgstr "Unbekannt"
1914
 
1915
+ #: app/features/events.php:4163
1916
  msgid ""
1917
  "If you want to send an email, first select your attendees and then click in "
1918
  "the button below, please."
1919
  msgstr ""
1920
 
1921
+ #: app/features/events.php:4163 app/features/mec/report.php:58
1922
  msgid "Send Email"
1923
  msgstr "E-Mail senden"
1924
 
1925
+ #: app/features/events.php:4167
1926
  msgid "No Attendees Found!"
1927
  msgstr "Keine Teilnehmer gefunden!"
1928
 
2155
  #: app/features/fes/form.php:891 app/features/labels.php:61
2156
  #: app/features/labels.php:221 app/features/mec.php:468
2157
  #: app/features/mec/meta_boxes/filter.php:72
2158
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6342
2159
+ #: app/libraries/main.php:6396 app/skins/single.php:1156
2160
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2161
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2162
  msgid "Labels"
2239
  msgid "An error occurred during the file upload! Please check permissions!"
2240
  msgstr ""
2241
 
2242
+ #: app/features/ix.php:265 app/libraries/main.php:6627
2243
+ #: app/libraries/main.php:6647
2244
  msgid "Confirmed"
2245
  msgstr "Bestätigt"
2246
 
2247
+ #: app/features/ix.php:266 app/libraries/main.php:6628
2248
+ #: app/libraries/main.php:6655
2249
  msgid "Rejected"
2250
  msgstr "Abgelehnt"
2251
 
2252
+ #: app/features/ix.php:270 app/features/mec/booking.php:1010
2253
+ #: app/features/mec/booking.php:1032 app/features/mec/modules.php:431
2254
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2255
+ #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1295
2256
+ #: app/features/mec/settings.php:1317 app/features/mec/single.php:446
2257
+ #: app/features/mec/single.php:468 app/libraries/main.php:6675
2258
  msgid "Verified"
2259
  msgstr "Verifiziert"
2260
 
2261
  #: app/features/ix.php:271 app/features/labels.php:118
2262
+ #: app/features/labels.php:143 app/libraries/main.php:6676
2263
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2264
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2265
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
2295
  msgid "The events are imported successfully!"
2296
  msgstr "Die Events wurden erfolgreich importiert!"
2297
 
2298
+ #: app/features/ix.php:1176
2299
  msgid "Third Party plugin is not installed and activated!"
2300
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
2301
 
2302
+ #: app/features/ix.php:1200
2303
  msgid "Third Party plugin is invalid!"
2304
  msgstr "Drittanbieter-Plugin ist ungültig!"
2305
 
2306
+ #: app/features/ix.php:3175 app/features/ix.php:3233
2307
  #, fuzzy
2308
  #| msgid "Both of API key and Calendar ID are required!"
2309
  msgid "API key and Calendar ID are required!"
2310
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2311
 
2312
+ #: app/features/ix.php:3228 app/features/ix.php:3673 app/features/ix.php:4408
2313
  #, fuzzy
2314
  #| msgid "Please select some events to import!"
2315
  msgid "Please select events to import!"
2316
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
2317
 
2318
+ #: app/features/ix.php:3615 app/features/ix.php:3678
2319
  #, fuzzy
2320
  #| msgid "Both of API key and Calendar ID are required!"
2321
  msgid "API key and Group URL are required!"
2322
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2323
 
2324
+ #: app/features/ix.php:3917
2325
  msgid "Check at Meetup"
2326
  msgstr ""
2327
 
2328
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2329
  msgid "Organizer Tel"
2330
  msgstr "Organisator Telefon"
2331
 
2332
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2333
  msgid "Organizer Email"
2334
  msgstr "Organisator Email"
2335
 
2336
+ #: app/features/ix.php:4108
2337
  #, fuzzy
2338
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2339
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2340
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2341
 
2342
+ #: app/features/ix.php:4131
2343
  #, fuzzy, php-format
2344
  #| msgid "All seems good! Please click %s for authenticating your app."
2345
  msgid "All seems good! Please click %s to authenticate your app."
2346
  msgstr ""
2347
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
2348
 
2349
+ #: app/features/ix.php:4131 app/features/mec/settings.php:1236
2350
  msgid "here"
2351
  msgstr ""
2352
 
2353
+ #: app/features/ix.php:4185
2354
  #, fuzzy
2355
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2356
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2357
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2358
 
2359
+ #: app/features/ix.php:4330
2360
  #, fuzzy, php-format
2361
  #| msgid "%s events added to Google Calendar successfully."
2362
  msgid "%s events added to Google Calendar with success."
2363
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
2364
 
2365
+ #: app/features/ix.php:4331
2366
  #, fuzzy, php-format
2367
  #| msgid "%s previously added events get updated."
2368
  msgid "%s Updated previously added events."
2369
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
2370
 
2371
+ #: app/features/ix.php:4332
2372
  #, php-format
2373
  msgid "%s events failed to add for following reasons: %s"
2374
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
2375
 
2376
+ #: app/features/ix.php:4364
2377
  #, fuzzy
2378
  #| msgid "Please insert your facebook page's link."
2379
  msgid "Please insert your Facebook page's link."
2380
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2381
 
2382
+ #: app/features/ix.php:4375 app/features/ix.php:4417
2383
  #, fuzzy
2384
  #| msgid ""
2385
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2391
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
2392
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
2393
 
2394
+ #: app/features/ix.php:4412
2395
  msgid "Please insert your facebook page's link."
2396
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2397
 
2566
  msgid "Add to Google Calendar"
2567
  msgstr "Zum Google Kalender hinzufügen"
2568
 
2569
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1012
2570
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2571
+ #: app/features/mec/settings.php:1297 app/features/mec/single.php:448
2572
  msgid "Checking ..."
2573
  msgstr "Überprüfung"
2574
 
3093
 
3094
  #: app/features/locations.php:59 app/features/mec.php:469
3095
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
3096
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6344
3097
+ #: app/libraries/main.php:6398
3098
  msgid "Locations"
3099
  msgstr "Orte"
3100
 
3215
  msgid "Don't show map in single event page"
3216
  msgstr "Karte in Einzelansicht nicht anzeigen"
3217
 
3218
+ #: app/features/locations.php:398 app/libraries/main.php:6382
3219
+ #: app/libraries/main.php:6429
3220
  msgid "Other Locations"
3221
  msgstr "Andere Orte"
3222
 
3300
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3301
  #: app/features/mec/meta_boxes/filter.php:71
3302
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3303
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
3304
  msgid "Organizers"
3305
  msgstr "Veranstalter"
3306
 
3503
  msgstr "Suche…"
3504
 
3505
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3506
+ #: app/features/mec/booking.php:928 app/features/mec/booking.php:937
3507
+ #: app/features/mec/booking.php:947 app/features/mec/booking.php:1029
3508
+ #: app/features/mec/booking.php:1043 app/features/mec/messages.php:15
3509
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3510
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3511
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
3515
  #: app/features/mec/notifications.php:1218
3516
  #: app/features/mec/notifications.php:1324
3517
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3518
+ #: app/features/mec/settings.php:1246 app/features/mec/settings.php:1256
3519
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1328
3520
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3521
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3522
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
3812
  msgid "Send confirmation email in auto confirmation mode"
3813
  msgstr ""
3814
 
3815
+ #: app/features/mec/booking.php:412 app/libraries/main.php:567
3816
  #, fuzzy
3817
  #| msgid "Booking"
3818
  msgid "Booking Shortcode"
3845
  "new menu on the Dashboard > Booking"
3846
  msgstr ""
3847
 
3848
+ #: app/features/mec/booking.php:446 app/features/mec/booking.php:834
3849
+ #: app/libraries/main.php:569
3850
  msgid "Taxes / Fees"
3851
  msgstr "Steuern/Gebühren"
3852
 
3858
  msgid "Add Fee"
3859
  msgstr "Gebühr hinzufügen"
3860
 
3861
+ #: app/features/mec/booking.php:523 app/libraries/main.php:570
3862
  msgid "Ticket Variations & Options"
3863
  msgstr ""
3864
 
3870
  msgid "Add Variation / Option"
3871
  msgstr ""
3872
 
3873
+ #: app/features/mec/booking.php:798
3874
+ #, fuzzy
3875
+ #| msgid "Filter Options"
3876
+ msgid "Upload Field Options"
3877
+ msgstr "Filteroptionen"
3878
+
3879
+ #: app/features/mec/booking.php:800
3880
+ msgid "Mime types"
3881
+ msgstr ""
3882
+
3883
+ #: app/features/mec/booking.php:804
3884
+ msgid "Split mime types with \",\"."
3885
+ msgstr ""
3886
+
3887
+ #: app/features/mec/booking.php:804
3888
+ msgid "Default: jpeg,jpg,png,pdf"
3889
+ msgstr ""
3890
+
3891
+ #: app/features/mec/booking.php:807
3892
+ #, fuzzy
3893
+ #| msgid "Amount (Per Ticket)"
3894
+ msgid "Maximum file size"
3895
+ msgstr "Betrag (pro Ticket)"
3896
+
3897
+ #: app/features/mec/booking.php:811
3898
+ msgid "The unit is Megabyte \"MB\""
3899
+ msgstr ""
3900
+
3901
+ #: app/features/mec/booking.php:824
3902
  msgid "Use WooCommerce as Payment System"
3903
  msgstr ""
3904
 
3905
+ #: app/features/mec/booking.php:826
3906
  msgid ""
3907
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3908
  "payment process would be done by WooCommerce so all of MEC payment related "
3910
  "fields etc, you need to configure WooCommerce on your website."
3911
  msgstr ""
3912
 
3913
+ #: app/features/mec/booking.php:828
3914
  msgid ""
3915
  "You cannot use following MEC features so you should use WooCommerc and its "
3916
  "addons if you need them."
3917
  msgstr ""
3918
 
3919
+ #: app/features/mec/booking.php:830
3920
  #, fuzzy
3921
  #| msgid "Payment Gateways"
3922
  msgid "Payment gateways"
3923
  msgstr "Zahlungs-Gateways"
3924
 
3925
+ #: app/features/mec/booking.php:831
3926
  #, fuzzy
3927
  #| msgid "Price per Date"
3928
  msgid "Price per dates of tickets"
3929
  msgstr "Preis pro Datum"
3930
 
3931
+ #: app/features/mec/booking.php:833
3932
  #, fuzzy
3933
  #| msgid "Ticket Variation"
3934
  msgid "Ticket variations"
3935
  msgstr "Ticket Variationen"
3936
 
3937
+ #: app/features/mec/booking.php:838
3938
  #, fuzzy
3939
  #| msgid "Automatically complete WC orders"
3940
  msgid "Automatically complete WooCommerce orders"
3941
  msgstr "WC-Aufträge automatisch abschließen"
3942
 
3943
+ #: app/features/mec/booking.php:846
3944
  #, fuzzy
3945
  #| msgid "Automatically complete WC orders"
3946
  msgid "Auto WooCommerce orders"
3947
  msgstr "WC-Aufträge automatisch abschließen"
3948
 
3949
+ #: app/features/mec/booking.php:847
3950
  msgid "It applies only to the orders that are related to MEC."
3951
  msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
3952
 
3953
+ #: app/features/mec/booking.php:855
3954
  #, fuzzy
3955
  #| msgid "Add to Cart"
3956
  msgid "After Add to Cart"
3957
  msgstr "in den Warenkorb legen"
3958
 
3959
+ #: app/features/mec/booking.php:858
3960
  #, fuzzy
3961
  #| msgid "Redirection Page"
3962
  msgid "Redirect to Cart"
3963
  msgstr "Weiterleitungs Seite "
3964
 
3965
+ #: app/features/mec/booking.php:859
3966
  #, fuzzy
3967
  #| msgid "Redirection Page"
3968
  msgid "Redirect to Checkout"
3969
  msgstr "Weiterleitungs Seite "
3970
 
3971
+ #: app/features/mec/booking.php:864
3972
  #, fuzzy
3973
  #| msgid "Booking Form"
3974
  msgid "MEC Booking Form"
3975
  msgstr "Buchungsformular"
3976
 
3977
+ #: app/features/mec/booking.php:873
3978
  msgid ""
3979
  "If enabled then users should fill the booking form in MEC and then they will "
3980
  "be redirected to checkout."
3981
  msgstr ""
3982
 
3983
+ #: app/features/mec/booking.php:899
3984
  msgid "Enable Organizer Payment Module"
3985
  msgstr ""
3986
 
3987
+ #: app/features/mec/booking.php:904
3988
  msgid ""
3989
  "By enabling this module, organizers are able to insert their own payment "
3990
  "credentials for enabled gateways per event and receive the payments directly!"
3991
  msgstr ""
3992
 
3993
+ #: app/features/mec/booking.php:914
3994
  msgid "Disable / Enable payment gateways per event"
3995
  msgstr ""
3996
 
3997
+ #: app/features/mec/booking.php:918
3998
  #, fuzzy
3999
  #| msgid "Payment Gateways"
4000
  msgid "Payment Gateways Per Event"
4001
  msgstr "Zahlungs-Gateways"
4002
 
4003
+ #: app/features/mec/booking.php:919
4004
  msgid ""
4005
  "By enabling this module, users are able to disable / enable payment gateways "
4006
  "per event"
4007
  msgstr ""
4008
 
4009
+ #: app/features/mec/booking.php:1007 app/features/mec/messages.php:78
4010
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
4011
+ #: app/features/mec/settings.php:1292 app/features/mec/single.php:443
4012
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
4013
  msgid "Saved"
4014
  msgstr "Gesichert"
4015
 
4016
+ #: app/features/mec/booking.php:1008 app/features/mec/messages.php:79
4017
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
4018
+ #: app/features/mec/settings.php:1293 app/features/mec/single.php:444
4019
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
4020
  msgid "Settings Saved!"
4021
  msgstr "Einstellungen gespeichert!"
4022
 
4023
+ #: app/features/mec/booking.php:1034 app/features/mec/modules.php:455
4024
+ #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1319
4025
  #: app/features/mec/single.php:470
4026
  msgid "Please Refresh Page"
4027
  msgstr "Bitte Seiten Refresh vornehmen"
5249
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5250
  #: app/features/mec/single.php:386 app/features/search.php:86
5251
  #: app/features/speakers.php:60 app/features/speakers.php:283
5252
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
5253
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5254
  msgid "Speaker"
5255
  msgstr "Sprecher"
6462
  msgid "only once per hour"
6463
  msgstr "nur einmal pro Tag"
6464
 
6465
+ #: app/features/mec/notifications.php:950 app/libraries/main.php:7437
6466
+ #: app/libraries/main.php:7454
6467
  #, fuzzy
6468
  #| msgid "Hour"
6469
  msgid "Hours"
6736
  msgstr ""
6737
 
6738
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6739
+ #: app/libraries/main.php:6353 app/libraries/main.php:6407
6740
  msgid "Weekdays"
6741
  msgstr "Wochentage"
6742
 
7096
  msgid "Let WordPress decide"
7097
  msgstr "WordPress"
7098
 
7099
+ #: app/features/mec/settings.php:660 app/libraries/main.php:6629
7100
+ #: app/libraries/main.php:6651
7101
  msgid "Pending"
7102
  msgstr "Ausstehend"
7103
 
7261
  msgid "Event Description"
7262
  msgstr "Beschreibung"
7263
 
7264
+ #: app/features/mec/settings.php:930 app/libraries/main.php:6376
7265
+ #: app/libraries/main.php:6425
7266
  msgid "More Info Link"
7267
  msgstr "Link Mehr Informationen"
7268
 
7456
  msgid "More information about the list ID can be found %s."
7457
  msgstr ""
7458
 
7459
+ #: app/features/mec/single.php:38 app/libraries/main.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7460
  #, fuzzy
7461
  #| msgid "Single Event Style"
7462
  msgid "Single Event Page"
7578
  "the settings page.' tab"
7579
  msgstr ""
7580
 
7581
+ #: app/features/mec/single.php:162 app/libraries/main.php:556
7582
  #, fuzzy
7583
  #| msgid "Custom Styles"
7584
  msgid "Custom Fields"
7633
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
7634
  "ausschließen."
7635
 
7636
+ #: app/features/mec/single.php:286 app/libraries/main.php:559
7637
  msgid "Additional Organizers"
7638
  msgstr "Zusätzliche Organisatoren"
7639
 
7665
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
7666
  "bearbeiten und auf der Seite für einzelne Events an."
7667
 
7668
+ #: app/features/mec/single.php:318 app/libraries/main.php:561
7669
  #: app/skins/single.php:170 app/skins/single.php:435
7670
  msgid "Related Events"
7671
  msgstr "Vorgeschlagene Veranstaltungen"
7680
  msgid "Select Taxonomies:"
7681
  msgstr "Klassifizierung "
7682
 
7683
+ #: app/features/mec/single.php:360 app/libraries/main.php:562
7684
  #, fuzzy
7685
  #| msgid "Next/Previous Buttons"
7686
  msgid "Next / Previous Events"
8526
  msgid "eg. https://webnus.net"
8527
  msgstr "http://webnus.net"
8528
 
8529
+ #: app/features/organizers.php:312 app/libraries/main.php:6381
8530
+ #: app/libraries/main.php:6428 app/skins/single.php:1314
8531
  msgid "Other Organizers"
8532
  msgstr "Andere Veranstalter"
8533
 
8789
  msgid "No search result."
8790
  msgstr "Kein Suchergebnis"
8791
 
8792
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6383
8793
+ #: app/libraries/main.php:6430 app/libraries/notifications.php:1262
8794
+ #: app/libraries/render.php:532 app/libraries/render.php:854
8795
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8796
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8797
  #: app/modules/next-event/details.php:154
8898
  "section and speaker widget section!"
8899
  msgstr ""
8900
 
8901
+ #: app/features/wc.php:103 app/libraries/notifications.php:1247
8902
+ #: app/libraries/notifications.php:1262 app/libraries/notifications.php:1273
8903
+ #: app/libraries/notifications.php:1542 app/libraries/notifications.php:1543
8904
  #, php-format
8905
  msgid "%s to %s"
8906
  msgstr "%s zu %s"
8920
  msgid "%s Price"
8921
  msgstr "%s Preis"
8922
 
8923
+ #: app/libraries/book.php:706 app/libraries/book.php:797
8924
  msgid "Discount"
8925
  msgstr "Rabatt"
8926
 
8927
+ #: app/libraries/book.php:884 app/modules/booking/default.php:426
8928
  #: app/modules/booking/default.php:531
8929
  msgid "Download Invoice"
8930
  msgstr "Download Rechnung"
9060
  msgid "Timeline View"
9061
  msgstr "Stundenplan"
9062
 
9063
+ #: app/libraries/main.php:391 app/libraries/main.php:6355
9064
+ #: app/libraries/main.php:6409
9065
  msgid "SU"
9066
  msgstr "SO"
9067
 
9068
+ #: app/libraries/main.php:392 app/libraries/main.php:6356
9069
+ #: app/libraries/main.php:6410
9070
  msgid "MO"
9071
  msgstr "MO"
9072
 
9073
+ #: app/libraries/main.php:393 app/libraries/main.php:6357
9074
+ #: app/libraries/main.php:6411
9075
  msgid "TU"
9076
  msgstr "DI"
9077
 
9078
+ #: app/libraries/main.php:394 app/libraries/main.php:6358
9079
+ #: app/libraries/main.php:6412
9080
  msgid "WE"
9081
  msgstr "MI"
9082
 
9083
+ #: app/libraries/main.php:395 app/libraries/main.php:6359
9084
+ #: app/libraries/main.php:6413
9085
  msgid "TH"
9086
  msgstr "DO"
9087
 
9088
+ #: app/libraries/main.php:396 app/libraries/main.php:6360
9089
+ #: app/libraries/main.php:6414
9090
  msgid "FR"
9091
  msgstr "FR"
9092
 
9093
+ #: app/libraries/main.php:397 app/libraries/main.php:6361
9094
+ #: app/libraries/main.php:6415
9095
  msgid "SA"
9096
  msgstr "SA"
9097
 
9098
+ #: app/libraries/main.php:560
9099
+ msgid "Additional Locations"
9100
+ msgstr "Zusätzliche Locations"
9101
+
9102
+ #: app/libraries/main.php:572
9103
  #, fuzzy
9104
  #| msgid "Upload/Add image"
9105
  msgid "Upload Field"
9106
  msgstr "Bild hochladen/hinzufügen"
9107
 
 
 
 
 
9108
  #: app/libraries/main.php:726
9109
  #, fuzzy
9110
  #| msgid "Social Module : "
9439
  msgid "Free"
9440
  msgstr "kostenfrei"
9441
 
9442
+ #: app/libraries/main.php:4445 app/libraries/main.php:6690
9443
  msgid "M.E. Calender"
9444
  msgstr "M.E. Calender"
9445
 
9446
+ #: app/libraries/main.php:4601
9447
  #, php-format
9448
  msgid "Copy of %s"
9449
  msgstr "Kopie von %s"
9450
 
9451
+ #: app/libraries/main.php:5466
9452
  msgid "Booked an event."
9453
  msgstr "Eine Veranstaltung wurde gebucht."
9454
 
9455
+ #: app/libraries/main.php:5507
9456
  #, php-format
9457
  msgid "%s booked %s event."
9458
  msgstr "%s gebuchtes %s Event"
9459
 
9460
+ #: app/libraries/main.php:6338 app/libraries/main.php:6392
9461
  msgid "Taxonomies"
9462
  msgstr "Klassifizierung "
9463
 
9464
+ #: app/libraries/main.php:6340 app/libraries/main.php:6394
9465
  msgid "Category Plural Label"
9466
  msgstr "Kategorien"
9467
 
9468
+ #: app/libraries/main.php:6341 app/libraries/main.php:6395
9469
  msgid "Category Singular Label"
9470
  msgstr "Kategorie"
9471
 
9472
+ #: app/libraries/main.php:6342 app/libraries/main.php:6396
9473
  msgid "Label Plural Label"
9474
  msgstr "Labels"
9475
 
9476
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9477
  msgid "Label Singular Label"
9478
  msgstr "Label"
9479
 
9480
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9481
  msgid "label"
9482
  msgstr "label"
9483
 
9484
+ #: app/libraries/main.php:6344 app/libraries/main.php:6398
9485
  msgid "Location Plural Label"
9486
  msgstr "Veranstaltungsorte"
9487
 
9488
+ #: app/libraries/main.php:6345 app/libraries/main.php:6399
9489
  msgid "Location Singular Label"
9490
  msgstr "Veranstaltungsort"
9491
 
9492
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
9493
  msgid "Organizer Plural Label"
9494
  msgstr "Veranstalter"
9495
 
9496
+ #: app/libraries/main.php:6347 app/libraries/main.php:6401
9497
  msgid "Organizer Singular Label"
9498
  msgstr "Veranstalter"
9499
 
9500
+ #: app/libraries/main.php:6348 app/libraries/main.php:6402
9501
  #, fuzzy
9502
  #| msgid "Label Plural Label"
9503
  msgid "Speaker Plural Label"
9504
  msgstr "Labels"
9505
 
9506
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
9507
  #, fuzzy
9508
  #| msgid "Label Singular Label"
9509
  msgid "Speaker Singular Label"
9510
  msgstr "Label"
9511
 
9512
+ #: app/libraries/main.php:6355 app/libraries/main.php:6409
9513
  msgid "Sunday abbreviation"
9514
  msgstr "Sonntag Abkürzung"
9515
 
9516
+ #: app/libraries/main.php:6356 app/libraries/main.php:6410
9517
  msgid "Monday abbreviation"
9518
  msgstr "Montag Abkürzung"
9519
 
9520
+ #: app/libraries/main.php:6357 app/libraries/main.php:6411
9521
  msgid "Tuesday abbreviation"
9522
  msgstr "Dienstag Abkürzung"
9523
 
9524
+ #: app/libraries/main.php:6358 app/libraries/main.php:6412
9525
  msgid "Wednesday abbreviation"
9526
  msgstr "Mittwoch Abkürzung"
9527
 
9528
+ #: app/libraries/main.php:6359 app/libraries/main.php:6413
9529
  msgid "Thursday abbreviation"
9530
  msgstr "Donnerstag Abkürzung"
9531
 
9532
+ #: app/libraries/main.php:6360 app/libraries/main.php:6414
9533
  msgid "Friday abbreviation"
9534
  msgstr "Freitag Abkürzung"
9535
 
9536
+ #: app/libraries/main.php:6361 app/libraries/main.php:6415
9537
  msgid "Saturday abbreviation"
9538
  msgstr "Samstag Abkürzung "
9539
 
9540
+ #: app/libraries/main.php:6365 app/libraries/main.php:6419
9541
  msgid "Others"
9542
  msgstr "Andere"
9543
 
9544
+ #: app/libraries/main.php:6367
9545
  msgid "Booking Success Message"
9546
  msgstr "Buchung erfolgreich Mitteilung"
9547
 
9548
+ #: app/libraries/main.php:6367
9549
  #, fuzzy
9550
  #| msgid ""
9551
  #| "Thanks for your booking. Your tickets booked, booking verification might "
9557
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
9558
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
9559
 
9560
+ #: app/libraries/main.php:6368
9561
  #, fuzzy
9562
  #| msgid "Booking Success Message"
9563
  msgid "Booking Restriction Message 1"
9564
  msgstr "Buchung erfolgreich Mitteilung"
9565
 
9566
+ #: app/libraries/main.php:6368
9567
  #, php-format
9568
  msgid ""
9569
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9570
  "tickets."
9571
  msgstr ""
9572
 
9573
+ #: app/libraries/main.php:6369
9574
  #, fuzzy
9575
  #| msgid "Booking Success Message"
9576
  msgid "Booking Restriction Message 2"
9577
  msgstr "Buchung erfolgreich Mitteilung"
9578
 
9579
+ #: app/libraries/main.php:6369
9580
  #, php-format
9581
  msgid ""
9582
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9583
  "tickets."
9584
  msgstr ""
9585
 
9586
+ #: app/libraries/main.php:6370
9587
  #, fuzzy
9588
  #| msgid "Booking Success Message"
9589
  msgid "Booking IP Restriction Message"
9590
  msgstr "Buchung erfolgreich Mitteilung"
9591
 
9592
+ #: app/libraries/main.php:6370
9593
  #, php-format
9594
  msgid "Maximum allowed number of tickets that you can book is %s."
9595
  msgstr ""
9596
 
9597
+ #: app/libraries/main.php:6371
9598
  #, fuzzy
9599
  #| msgid "Booking Options"
9600
  msgid "Booking Button"
9601
  msgstr "Buchungsoptionen"
9602
 
9603
+ #: app/libraries/main.php:6371 app/libraries/skins.php:1268
9604
  #: app/modules/booking/steps/tickets.php:102
9605
  msgid "Book Event"
9606
  msgstr "Veranstaltung buchen"
9607
 
9608
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9609
  #: app/widgets/single.php:131
9610
  msgid "Register Button"
9611
  msgstr "Register Button"
9612
 
9613
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9614
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9615
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9616
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
9628
  msgid "REGISTER"
9629
  msgstr "ANMELDEN"
9630
 
9631
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9632
  msgid "View Detail Button"
9633
  msgstr "Ansicht Detail Button"
9634
 
9635
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9636
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9637
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9638
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
9644
  msgid "View Detail"
9645
  msgstr "Details "
9646
 
9647
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9648
  msgid "Event Detail Button"
9649
  msgstr "Event Detail Button"
9650
 
9651
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9652
  msgid "Event Detail"
9653
  msgstr "Veranstaltungsdetails"
9654
 
9655
+ #: app/libraries/main.php:6379
9656
  msgid "Ticket (Singular)"
9657
  msgstr "Ticket"
9658
 
9659
+ #: app/libraries/main.php:6380
9660
  msgid "Tickets (Plural)"
9661
  msgstr "Tickets"
9662
 
9663
+ #: app/libraries/main.php:6538
9664
  msgid "EventON"
9665
  msgstr "EventON"
9666
 
9667
+ #: app/libraries/main.php:6539
9668
  msgid "The Events Calendar"
9669
  msgstr "The Events Calendar"
9670
 
9671
+ #: app/libraries/main.php:6540
9672
  msgid "Events Schedule WP Plugin"
9673
  msgstr "Event Zeitplan WP-Plugin"
9674
 
9675
+ #: app/libraries/main.php:6541
9676
  msgid "Calendarize It"
9677
  msgstr ""
9678
 
9679
+ #: app/libraries/main.php:6542
9680
  #, fuzzy
9681
  #| msgid "No Search Options"
9682
  msgid "Event Espresso"
9683
  msgstr "Keine Suchoptionen"
9684
 
9685
+ #: app/libraries/main.php:6543
9686
  msgid "Events Manager (Recurring)"
9687
  msgstr "Wiederholende Veranstaltung"
9688
 
9689
+ #: app/libraries/main.php:6544
9690
  msgid "Events Manager (Single)"
9691
  msgstr "Moderner Event Kalender"
9692
 
9693
+ #: app/libraries/main.php:6545
9694
  #, fuzzy
9695
  #| msgid "Events Manager (Single)"
9696
  msgid "WP Event Manager"
9697
  msgstr "Moderner Event Kalender"
9698
 
9699
+ #: app/libraries/main.php:6677
9700
  msgid "Waiting"
9701
  msgstr "in Bearbeitung"
9702
 
9703
+ #: app/libraries/main.php:6720
9704
  #, fuzzy
9705
  #| msgid "Sunday"
9706
  msgid "Sun"
9707
  msgstr "Sonntag"
9708
 
9709
+ #: app/libraries/main.php:6720
9710
  #, fuzzy
9711
  #| msgid "Month"
9712
  msgid "Mon"
9713
  msgstr "Monat "
9714
 
9715
+ #: app/libraries/main.php:6720
9716
  #, fuzzy
9717
  #| msgid "Tel"
9718
  msgid "Tue"
9719
  msgstr "Tel"
9720
 
9721
+ #: app/libraries/main.php:6720
9722
  msgid "Wed"
9723
  msgstr ""
9724
 
9725
+ #: app/libraries/main.php:6720
9726
  msgid "Thu"
9727
  msgstr ""
9728
 
9729
+ #: app/libraries/main.php:6720
9730
  #, fuzzy
9731
  #| msgid "Friday"
9732
  msgid "Fri"
9733
  msgstr "Freitag"
9734
 
9735
+ #: app/libraries/main.php:6720
9736
  #, fuzzy
9737
  #| msgid "Start"
9738
  msgid "Sat"
9739
  msgstr "Start"
9740
 
9741
+ #: app/libraries/main.php:6886 app/libraries/render.php:80
9742
  #: app/libraries/render.php:445
9743
  msgid "Skin controller does not exist."
9744
  msgstr "Skin contoller existiert nicht."
9745
 
9746
+ #: app/libraries/main.php:7101
9747
  msgid "Sold Out"
9748
  msgstr "Ausgebucht"
9749
 
9750
+ #: app/libraries/main.php:7112
9751
  msgid "Last Few Tickets"
9752
  msgstr "Nur noch wenige Tickets verfügbar."
9753
 
9754
+ #: app/libraries/main.php:7443 app/libraries/main.php:7460
9755
  #, fuzzy
9756
  #| msgid "minutes"
9757
  msgid "Minutes"
9758
  msgstr "Minuten"
9759
 
9760
+ #: app/libraries/main.php:7465
9761
  msgid "AM / PM"
9762
  msgstr ""
9763
 
9764
+ #: app/libraries/main.php:7466
9765
  msgid "AM"
9766
  msgstr "AM"
9767
 
9768
+ #: app/libraries/main.php:7467
9769
  msgid "PM"
9770
  msgstr "PM"
9771
 
9772
+ #: app/libraries/main.php:7475
9773
  #, fuzzy
9774
  #| msgid "Loading..."
9775
  msgid "Ongoing..."
9776
  msgstr "Laden…"
9777
 
9778
+ #: app/libraries/main.php:7476
9779
  #, fuzzy
9780
  #| msgid "Expired Events"
9781
  msgid "Expired!"
9807
  msgid "A new booking is received."
9808
  msgstr "Eine neue Buchung ist eingegangen."
9809
 
9810
+ #: app/libraries/notifications.php:858
9811
  msgid "A new event is added."
9812
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
9813
 
9814
+ #: app/libraries/notifications.php:974
9815
  msgid "Your event is published."
9816
  msgstr "Die Veranstaltung wurde veröffentlicht."
9817
 
9818
+ #: app/libraries/notifications.php:1124
9819
  #, fuzzy
9820
  #| msgid "Event Color"
9821
  msgid "Event is soldout!"
9822
  msgstr "Farbe der Veranstaltung"
9823
 
9824
+ #: app/libraries/notifications.php:1486
9825
  msgid "to"
9826
  msgstr ""
9827
 
9828
+ #: app/libraries/notifications.php:1507 app/modules/export/details.php:63
9829
  msgid "+ Add to Google Calendar"
9830
  msgstr "+ zum Google Calendar hinzufügen"
9831
 
9832
+ #: app/libraries/notifications.php:1508 app/modules/export/details.php:64
9833
  #, fuzzy
9834
  #| msgid "+ iCal export"
9835
  msgid "+ iCal / Outlook export"
9836
  msgstr "+ zu iCal exportieren"
9837
 
9838
+ #: app/libraries/notifications.php:1557
9839
  #, fuzzy, php-format
9840
  #| msgid "+ Add to Google Calendar"
9841
  msgid "+ %s to Google Calendar"
9842
  msgstr "+ zum Google Calendar hinzufügen"
9843
 
9844
+ #: app/libraries/notifications.php:1637
9845
  msgid "Yes"
9846
  msgstr "Ja"
9847
 
9848
+ #: app/libraries/notifications.php:1637
9849
  msgid "No"
9850
  msgstr "Nein"
9851
 
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: 2020-11-10 21:11+0330\n"
5
- "PO-Revision-Date: 2020-11-10 21:12+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -93,8 +93,8 @@ msgstr ""
93
 
94
  #: app/features/contextual.php:62 app/features/events.php:1617
95
  #: app/features/events.php:2513 app/features/mec/booking.php:606
96
- #: app/features/mec/booking.php:854 app/features/mec/support.php:29
97
- #: app/libraries/main.php:572
98
  msgid "Booking Form"
99
  msgstr ""
100
 
@@ -108,7 +108,7 @@ msgid ""
108
  msgstr ""
109
 
110
  #: app/features/contextual.php:70 app/features/events.php:1625
111
- #: app/features/mec/booking.php:798 app/features/mec/support-page.php:115
112
  #: app/features/mec/support.php:36 app/libraries/main.php:573
113
  msgid "Payment Gateways"
114
  msgstr ""
@@ -214,7 +214,7 @@ msgid "Google Recaptcha Options"
214
  msgstr ""
215
 
216
  #: app/features/contextual.php:258 app/features/mec/single.php:248
217
- #: app/libraries/main.php:558
218
  msgid "Countdown Options"
219
  msgstr ""
220
 
@@ -233,20 +233,20 @@ msgid "Frontend Event Submission"
233
  msgstr ""
234
 
235
  #: app/features/contextual.php:298 app/features/events.php:345
236
- #: app/libraries/main.php:559
237
  msgid "Exceptional Days"
238
  msgstr ""
239
 
240
  #: app/features/contextual.php:308 app/features/events.php:315
241
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
242
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
243
- #: app/libraries/main.php:567 app/libraries/main.php:597
244
  #: app/libraries/main.php:684
245
  msgid "Booking"
246
  msgstr ""
247
 
248
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
249
- #: app/features/mec/booking.php:814 app/libraries/main.php:569
250
  msgid "Coupons"
251
  msgstr ""
252
 
@@ -296,8 +296,8 @@ msgid "File uploaded!"
296
  msgstr ""
297
 
298
  #: app/features/events.php:167 app/features/ix/export.php:34
299
- #: app/features/mec/dashboard.php:265 app/libraries/main.php:5551
300
- #: app/libraries/main.php:5571 app/skins/daily_view/tpl.php:82
301
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
302
  #: app/skins/yearly_view/tpl.php:71
303
  msgid "Events"
@@ -321,7 +321,7 @@ msgstr ""
321
  msgid "Add New Event"
322
  msgstr ""
323
 
324
- #: app/features/events.php:171 app/features/ix.php:4391
325
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
326
  #: app/skins/map/tpl.php:88
327
  msgid "No events found!"
@@ -344,7 +344,7 @@ msgstr ""
344
  msgid "No events found in Trash!"
345
  msgstr ""
346
 
347
- #: app/features/events.php:192 app/features/events.php:3597
348
  #: app/features/mec/meta_boxes/display_options.php:1463
349
  #: app/features/mec/meta_boxes/search_form.php:31
350
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -359,19 +359,19 @@ msgstr ""
359
  #: app/features/mec/meta_boxes/search_form.php:760
360
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
361
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
362
- #: app/features/search.php:68 app/libraries/main.php:6350
363
- #: app/libraries/main.php:6404 app/libraries/skins.php:934
364
  #: app/skins/single.php:1016 app/skins/single/default.php:219
365
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
366
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
367
  msgid "Category"
368
  msgstr ""
369
 
370
- #: app/features/events.php:193 app/features/events.php:3552
371
  #: app/features/fes/form.php:865 app/features/mec.php:467
372
  #: app/features/mec/meta_boxes/filter.php:69
373
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6349
374
- #: app/libraries/main.php:6403
375
  msgid "Categories"
376
  msgstr ""
377
 
@@ -472,9 +472,9 @@ msgstr ""
472
  msgid "Links"
473
  msgstr ""
474
 
475
- #: app/features/events.php:349 app/features/events.php:3599
476
- #: app/features/events.php:3788 app/features/ix.php:3980
477
- #: app/features/ix.php:4022
478
  #: app/features/mec/meta_boxes/display_options.php:1466
479
  #: app/features/mec/meta_boxes/search_form.php:46
480
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -492,8 +492,8 @@ msgstr ""
492
  #: app/features/organizers.php:204 app/features/organizers.php:260
493
  #: app/features/organizers.php:262 app/features/organizers.php:271
494
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
495
- #: app/features/search.php:80 app/libraries/main.php:6356
496
- #: app/libraries/main.php:6410 app/libraries/skins.php:986
497
  #: app/skins/single.php:1264 app/skins/single/default.php:244
498
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
499
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
@@ -502,7 +502,7 @@ msgstr ""
502
 
503
  #: app/features/events.php:350 app/features/events.php:1165
504
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
505
- #: app/libraries/main.php:6387 app/libraries/main.php:6436
506
  #: app/skins/single.php:1042 app/skins/single/default.php:142
507
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
508
  #: app/skins/single/modern.php:237
@@ -522,17 +522,17 @@ msgid "Guest Data"
522
  msgstr ""
523
 
524
  #: app/features/events.php:511 app/features/events.php:2499
525
- #: app/features/events.php:4111 app/features/fes.php:243
526
  #: app/features/fes/form.php:795 app/features/labels.php:178
527
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
528
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
529
- #: app/libraries/notifications.php:1611 app/modules/booking/steps/form.php:63
530
  msgid "Name"
531
  msgstr ""
532
 
533
  #: app/features/events.php:512 app/features/events.php:2508
534
  #: app/features/events.php:2575 app/features/events.php:2664
535
- #: app/features/events.php:4114 app/features/fes.php:243
536
  #: app/features/fes/form.php:791 app/features/login/login.php:5
537
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
538
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
@@ -540,7 +540,7 @@ msgstr ""
540
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
541
  #: app/features/speakers.php:204 app/libraries/main.php:1872
542
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
543
- #: app/libraries/notifications.php:1612 app/modules/booking/steps/form.php:72
544
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
545
  #: app/skins/single.php:1340 app/skins/single/default.php:261
546
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
@@ -559,9 +559,9 @@ msgid "Date and Time"
559
  msgstr ""
560
 
561
  #: app/features/events.php:528 app/features/events.php:532
562
- #: app/features/events.php:3600 app/features/events.php:3788
563
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
564
- #: app/features/ix.php:3980 app/features/ix.php:4022
565
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
566
  #: app/features/mec/meta_boxes/display_options.php:52
567
  #: app/features/mec/meta_boxes/display_options.php:295
@@ -583,9 +583,9 @@ msgid "Start Date"
583
  msgstr ""
584
 
585
  #: app/features/events.php:547 app/features/events.php:551
586
- #: app/features/events.php:3601 app/features/events.php:3788
587
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
588
- #: app/features/ix.php:3980 app/features/ix.php:4022
589
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
590
  #: app/features/popup/event.php:92
591
  msgid "End Date"
@@ -631,7 +631,7 @@ msgstr ""
631
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
632
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
633
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
634
- #: app/features/mec/booking.php:830 app/features/mec/booking.php:856
635
  #: app/features/mec/dashboard.php:71
636
  #: app/features/mec/meta_boxes/display_options.php:85
637
  #: app/features/mec/meta_boxes/display_options.php:98
@@ -886,10 +886,10 @@ msgstr ""
886
  msgid "Show only one occurrence of this event"
887
  msgstr ""
888
 
889
- #: app/features/events.php:1161 app/features/events.php:3788
890
- #: app/features/fes/form.php:833 app/features/ix.php:3980
891
- #: app/features/ix.php:4022 app/features/mec/settings.php:763
892
- #: app/libraries/main.php:6386 app/libraries/main.php:6435
893
  #: app/widgets/single.php:103
894
  msgid "Event Cost"
895
  msgstr ""
@@ -921,7 +921,7 @@ msgid ""
921
  "multiple day occurrences."
922
  msgstr ""
923
 
924
- #: app/features/events.php:1334 app/libraries/render.php:559
925
  msgid "Day 1"
926
  msgstr ""
927
 
@@ -943,9 +943,9 @@ msgstr ""
943
  #: app/features/events.php:1376 app/features/events.php:1415
944
  #: app/features/events.php:1450 app/features/events.php:1482
945
  #: app/features/events.php:1511 app/features/events.php:2371
946
- #: app/features/events.php:2418 app/features/events.php:3596
947
- #: app/features/events.php:3788 app/features/fes/form.php:256
948
- #: app/features/ix.php:3980 app/features/ix.php:4022
949
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
950
  #: app/features/mec/styling.php:130
951
  msgid "Title"
@@ -986,7 +986,7 @@ msgstr ""
986
 
987
  #: app/features/events.php:1419 app/features/events.php:1453
988
  #: app/features/events.php:1514 app/features/events.php:1892
989
- #: app/features/events.php:2074 app/features/events.php:3788
990
  msgid "Description"
991
  msgstr ""
992
 
@@ -994,8 +994,8 @@ msgstr ""
994
  #: app/features/events.php:1519 app/features/fes/form.php:959
995
  #: app/features/mec.php:475 app/features/mec/modules.php:51
996
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
997
- #: app/libraries/main.php:577 app/libraries/main.php:6357
998
- #: app/libraries/main.php:6411 app/modules/speakers/details.php:18
999
  msgid "Speakers"
1000
  msgstr ""
1001
 
@@ -1010,7 +1010,7 @@ msgstr ""
1010
 
1011
  #: app/features/events.php:1553 app/features/events.php:1561
1012
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1013
- #: app/libraries/main.php:6384 app/libraries/main.php:6433
1014
  msgid "Event Link"
1015
  msgstr ""
1016
 
@@ -1031,8 +1031,8 @@ msgid "URL Shortener"
1031
  msgstr ""
1032
 
1033
  #: app/features/events.php:1571 app/features/events.php:1584
1034
- #: app/features/fes/form.php:817 app/libraries/main.php:6385
1035
- #: app/libraries/main.php:6434 app/skins/single.php:1126
1036
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1037
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1038
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
@@ -1068,7 +1068,7 @@ msgid "Total User Booking Limits"
1068
  msgstr ""
1069
 
1070
  #: app/features/events.php:1610 app/features/events.php:1835
1071
- #: app/libraries/book.php:63 app/libraries/main.php:6389
1072
  #: app/modules/booking/steps/tickets.php:137
1073
  #: app/modules/booking/steps/tickets.php:143
1074
  msgid "Tickets"
@@ -1083,7 +1083,7 @@ msgstr ""
1083
  msgid "Ticket Variations / Options"
1084
  msgstr ""
1085
 
1086
- #: app/features/events.php:1619 app/features/mec/booking.php:885
1087
  #: app/features/mec/support-page.php:118
1088
  msgid "Organizer Payment"
1089
  msgstr ""
@@ -1167,8 +1167,8 @@ msgstr ""
1167
 
1168
  #: app/features/events.php:1763 app/features/events.php:1773
1169
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1170
- #: app/features/mec/booking.php:253 app/features/mec/booking.php:824
1171
- #: app/features/mec/booking.php:849
1172
  #: app/features/mec/meta_boxes/search_form.php:33
1173
  #: app/features/mec/meta_boxes/search_form.php:40
1174
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1274,8 +1274,8 @@ msgstr ""
1274
 
1275
  #: app/features/events.php:1764 app/features/events.php:1774
1276
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1277
- #: app/features/mec/booking.php:254 app/features/mec/booking.php:823
1278
- #: app/features/mec/booking.php:850 app/features/mec/settings.php:106
1279
  msgid "Enabled"
1280
  msgstr ""
1281
 
@@ -1319,8 +1319,8 @@ msgid "Ticket ID"
1319
  msgstr ""
1320
 
1321
  #: app/features/events.php:1855 app/features/events.php:2039
1322
- #: app/features/events.php:3788 app/features/fes.php:243
1323
- #: app/features/ix.php:3980 app/features/ix.php:4022
1324
  #: app/features/labels.php:177 app/features/locations.php:262
1325
  #: app/features/organizers.php:203 app/features/speakers.php:282
1326
  msgid "ID"
@@ -1331,14 +1331,14 @@ msgid "Ticket Name"
1331
  msgstr ""
1332
 
1333
  #: app/features/events.php:1863 app/features/events.php:2046
1334
- #: app/features/events.php:3788 app/features/ix.php:3980
1335
- #: app/features/ix.php:4022
1336
  msgid "Start Time"
1337
  msgstr ""
1338
 
1339
  #: app/features/events.php:1876 app/features/events.php:2059
1340
- #: app/features/events.php:3788 app/features/ix.php:3980
1341
- #: app/features/ix.php:4022
1342
  msgid "End Time"
1343
  msgstr ""
1344
 
@@ -1633,30 +1633,30 @@ msgstr ""
1633
  msgid "Fixed Fields"
1634
  msgstr ""
1635
 
1636
- #: app/features/events.php:3498 app/features/events.php:3516
1637
- #: app/features/events.php:3534 app/features/events.php:3552
1638
  #, php-format
1639
  msgid "Show all %s"
1640
  msgstr ""
1641
 
1642
- #: app/features/events.php:3498
1643
  msgid "labels"
1644
  msgstr ""
1645
 
1646
- #: app/features/events.php:3516
1647
  msgid "locations"
1648
  msgstr ""
1649
 
1650
- #: app/features/events.php:3534
1651
  msgid "organizers"
1652
  msgstr ""
1653
 
1654
- #: app/features/events.php:3568
1655
  msgid "Attendees List"
1656
  msgstr ""
1657
 
1658
- #: app/features/events.php:3598 app/features/events.php:3788
1659
- #: app/features/ix.php:3980 app/features/ix.php:4022
1660
  #: app/features/locations.php:58 app/features/locations.php:263
1661
  #: app/features/locations.php:324 app/features/locations.php:326
1662
  #: app/features/locations.php:335
@@ -1675,8 +1675,8 @@ msgstr ""
1675
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1676
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1677
  #: app/features/popup/event.php:125 app/features/search.php:74
1678
- #: app/libraries/main.php:2641 app/libraries/main.php:6354
1679
- #: app/libraries/main.php:6408 app/libraries/skins.php:960
1680
  #: app/skins/single.php:943 app/skins/single.php:1386
1681
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1682
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
@@ -1684,46 +1684,46 @@ msgstr ""
1684
  msgid "Location"
1685
  msgstr ""
1686
 
1687
- #: app/features/events.php:3603
1688
  msgid "Repeat"
1689
  msgstr ""
1690
 
1691
- #: app/features/events.php:3604
1692
  msgid "Author"
1693
  msgstr ""
1694
 
1695
- #: app/features/events.php:3725 app/features/events.php:3726
1696
  msgid "iCal / Outlook Export"
1697
  msgstr ""
1698
 
1699
- #: app/features/events.php:3728 app/features/events.php:3729
1700
  msgid "CSV Export"
1701
  msgstr ""
1702
 
1703
- #: app/features/events.php:3731 app/features/events.php:3732
1704
  msgid "MS Excel Export"
1705
  msgstr ""
1706
 
1707
- #: app/features/events.php:3734 app/features/events.php:3735
1708
  msgid "XML Export"
1709
  msgstr ""
1710
 
1711
- #: app/features/events.php:3737 app/features/events.php:3738
1712
  msgid "JSON Export"
1713
  msgstr ""
1714
 
1715
- #: app/features/events.php:3740 app/features/events.php:3741
1716
- #: app/features/events.php:3897
1717
  msgid "Duplicate"
1718
  msgstr ""
1719
 
1720
- #: app/features/events.php:3788 app/features/ix.php:3980
1721
- #: app/features/ix.php:4022
1722
  msgid "Link"
1723
  msgstr ""
1724
 
1725
- #: app/features/events.php:3788 app/features/ix.php:3980
1726
- #: app/features/ix.php:4022 app/features/locations.php:110
1727
  #: app/features/locations.php:180 app/features/locations.php:264
1728
  #: app/features/mec/meta_boxes/search_form.php:74
1729
  #: app/features/mec/meta_boxes/search_form.php:144
@@ -1739,46 +1739,46 @@ msgstr ""
1739
  msgid "Address"
1740
  msgstr ""
1741
 
1742
- #: app/features/events.php:3788
1743
  #, php-format
1744
  msgid "%s Tel"
1745
  msgstr ""
1746
 
1747
- #: app/features/events.php:3788
1748
  #, php-format
1749
  msgid "%s Email"
1750
  msgstr ""
1751
 
1752
- #: app/features/events.php:3788 app/features/fes/form.php:850
1753
  #: app/features/mec/settings.php:769
1754
  msgid "Featured Image"
1755
  msgstr ""
1756
 
1757
- #: app/features/events.php:4117 app/features/fes.php:243
1758
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1759
- #: app/libraries/main.php:6388
1760
  msgid "Ticket"
1761
  msgstr ""
1762
 
1763
- #: app/features/events.php:4120 app/features/profile/profile.php:186
1764
  msgid "Variations"
1765
  msgstr ""
1766
 
1767
- #: app/features/events.php:4135 app/features/fes.php:316
1768
  msgid "Unknown"
1769
  msgstr ""
1770
 
1771
- #: app/features/events.php:4161
1772
  msgid ""
1773
  "If you want to send an email, first select your attendees and then click in "
1774
  "the button below, please."
1775
  msgstr ""
1776
 
1777
- #: app/features/events.php:4161 app/features/mec/report.php:58
1778
  msgid "Send Email"
1779
  msgstr ""
1780
 
1781
- #: app/features/events.php:4165
1782
  msgid "No Attendees Found!"
1783
  msgstr ""
1784
 
@@ -1981,8 +1981,8 @@ msgstr ""
1981
  #: app/features/fes/form.php:891 app/features/labels.php:61
1982
  #: app/features/labels.php:221 app/features/mec.php:468
1983
  #: app/features/mec/meta_boxes/filter.php:72
1984
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6351
1985
- #: app/libraries/main.php:6405 app/skins/single.php:1156
1986
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
1987
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
1988
  msgid "Labels"
@@ -2060,27 +2060,27 @@ msgstr ""
2060
  msgid "An error occurred during the file upload! Please check permissions!"
2061
  msgstr ""
2062
 
2063
- #: app/features/ix.php:265 app/libraries/main.php:6636
2064
- #: app/libraries/main.php:6656
2065
  msgid "Confirmed"
2066
  msgstr ""
2067
 
2068
- #: app/features/ix.php:266 app/libraries/main.php:6637
2069
- #: app/libraries/main.php:6664
2070
  msgid "Rejected"
2071
  msgstr ""
2072
 
2073
- #: app/features/ix.php:270 app/features/mec/booking.php:992
2074
- #: app/features/mec/booking.php:1014 app/features/mec/modules.php:431
2075
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2076
- #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1313
2077
- #: app/features/mec/settings.php:1335 app/features/mec/single.php:446
2078
- #: app/features/mec/single.php:468 app/libraries/main.php:6684
2079
  msgid "Verified"
2080
  msgstr ""
2081
 
2082
  #: app/features/ix.php:271 app/features/labels.php:118
2083
- #: app/features/labels.php:143 app/libraries/main.php:6685
2084
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2085
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2086
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
@@ -2114,81 +2114,81 @@ msgstr ""
2114
  msgid "The events are imported successfully!"
2115
  msgstr ""
2116
 
2117
- #: app/features/ix.php:1166
2118
  msgid "Third Party plugin is not installed and activated!"
2119
  msgstr ""
2120
 
2121
- #: app/features/ix.php:1190
2122
  msgid "Third Party plugin is invalid!"
2123
  msgstr ""
2124
 
2125
- #: app/features/ix.php:3165 app/features/ix.php:3223
2126
  msgid "API key and Calendar ID are required!"
2127
  msgstr ""
2128
 
2129
- #: app/features/ix.php:3218 app/features/ix.php:3663 app/features/ix.php:4398
2130
  msgid "Please select events to import!"
2131
  msgstr ""
2132
 
2133
- #: app/features/ix.php:3605 app/features/ix.php:3668
2134
  msgid "API key and Group URL are required!"
2135
  msgstr ""
2136
 
2137
- #: app/features/ix.php:3907
2138
  msgid "Check at Meetup"
2139
  msgstr ""
2140
 
2141
- #: app/features/ix.php:3980 app/features/ix.php:4022
2142
  msgid "Organizer Tel"
2143
  msgstr ""
2144
 
2145
- #: app/features/ix.php:3980 app/features/ix.php:4022
2146
  msgid "Organizer Email"
2147
  msgstr ""
2148
 
2149
- #: app/features/ix.php:4098
2150
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2151
  msgstr ""
2152
 
2153
- #: app/features/ix.php:4121
2154
  #, php-format
2155
  msgid "All seems good! Please click %s to authenticate your app."
2156
  msgstr ""
2157
 
2158
- #: app/features/ix.php:4121 app/features/mec/settings.php:1236
2159
  msgid "here"
2160
  msgstr ""
2161
 
2162
- #: app/features/ix.php:4175
2163
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2164
  msgstr ""
2165
 
2166
- #: app/features/ix.php:4320
2167
  #, php-format
2168
  msgid "%s events added to Google Calendar with success."
2169
  msgstr ""
2170
 
2171
- #: app/features/ix.php:4321
2172
  #, php-format
2173
  msgid "%s Updated previously added events."
2174
  msgstr ""
2175
 
2176
- #: app/features/ix.php:4322
2177
  #, php-format
2178
  msgid "%s events failed to add for following reasons: %s"
2179
  msgstr ""
2180
 
2181
- #: app/features/ix.php:4354
2182
  msgid "Please insert your Facebook page's link."
2183
  msgstr ""
2184
 
2185
- #: app/features/ix.php:4365 app/features/ix.php:4407
2186
  msgid ""
2187
  "We were not able to recognize your Facebook page. Please check again and "
2188
  "provide a valid link."
2189
  msgstr ""
2190
 
2191
- #: app/features/ix.php:4402
2192
  msgid "Please insert your facebook page's link."
2193
  msgstr ""
2194
 
@@ -2353,9 +2353,9 @@ msgstr ""
2353
  msgid "Add to Google Calendar"
2354
  msgstr ""
2355
 
2356
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:994
2357
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2358
- #: app/features/mec/settings.php:1315 app/features/mec/single.php:448
2359
  msgid "Checking ..."
2360
  msgstr ""
2361
 
@@ -2811,8 +2811,8 @@ msgstr ""
2811
 
2812
  #: app/features/locations.php:59 app/features/mec.php:469
2813
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
2814
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6353
2815
- #: app/libraries/main.php:6407
2816
  msgid "Locations"
2817
  msgstr ""
2818
 
@@ -2922,8 +2922,8 @@ msgstr ""
2922
  msgid "Don't show map in single event page"
2923
  msgstr ""
2924
 
2925
- #: app/features/locations.php:398 app/libraries/main.php:6391
2926
- #: app/libraries/main.php:6438
2927
  msgid "Other Locations"
2928
  msgstr ""
2929
 
@@ -2996,7 +2996,7 @@ msgstr ""
2996
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
2997
  #: app/features/mec/meta_boxes/filter.php:71
2998
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2999
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
3000
  msgid "Organizers"
3001
  msgstr ""
3002
 
@@ -3181,9 +3181,9 @@ msgid "Search..."
3181
  msgstr ""
3182
 
3183
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3184
- #: app/features/mec/booking.php:910 app/features/mec/booking.php:919
3185
- #: app/features/mec/booking.php:929 app/features/mec/booking.php:1011
3186
- #: app/features/mec/booking.php:1025 app/features/mec/messages.php:15
3187
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3188
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3189
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
@@ -3193,8 +3193,8 @@ msgstr ""
3193
  #: app/features/mec/notifications.php:1218
3194
  #: app/features/mec/notifications.php:1324
3195
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3196
- #: app/features/mec/settings.php:1264 app/features/mec/settings.php:1274
3197
- #: app/features/mec/settings.php:1332 app/features/mec/settings.php:1346
3198
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3199
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3200
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
@@ -3464,7 +3464,7 @@ msgstr ""
3464
  msgid "Send confirmation email in auto confirmation mode"
3465
  msgstr ""
3466
 
3467
- #: app/features/mec/booking.php:412 app/libraries/main.php:568
3468
  msgid "Booking Shortcode"
3469
  msgstr ""
3470
 
@@ -3495,8 +3495,8 @@ msgid ""
3495
  "new menu on the Dashboard > Booking"
3496
  msgstr ""
3497
 
3498
- #: app/features/mec/booking.php:446 app/features/mec/booking.php:816
3499
- #: app/libraries/main.php:570
3500
  msgid "Taxes / Fees"
3501
  msgstr ""
3502
 
@@ -3508,7 +3508,7 @@ msgstr ""
3508
  msgid "Add Fee"
3509
  msgstr ""
3510
 
3511
- #: app/features/mec/booking.php:523 app/libraries/main.php:571
3512
  msgid "Ticket Variations & Options"
3513
  msgstr ""
3514
 
@@ -3520,11 +3520,35 @@ msgstr ""
3520
  msgid "Add Variation / Option"
3521
  msgstr ""
3522
 
3523
- #: app/features/mec/booking.php:806
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3524
  msgid "Use WooCommerce as Payment System"
3525
  msgstr ""
3526
 
3527
- #: app/features/mec/booking.php:808
3528
  msgid ""
3529
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3530
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -3532,98 +3556,98 @@ msgid ""
3532
  "fields etc, you need to configure WooCommerce on your website."
3533
  msgstr ""
3534
 
3535
- #: app/features/mec/booking.php:810
3536
  msgid ""
3537
  "You cannot use following MEC features so you should use WooCommerc and its "
3538
  "addons if you need them."
3539
  msgstr ""
3540
 
3541
- #: app/features/mec/booking.php:812
3542
  msgid "Payment gateways"
3543
  msgstr ""
3544
 
3545
- #: app/features/mec/booking.php:813
3546
  msgid "Price per dates of tickets"
3547
  msgstr ""
3548
 
3549
- #: app/features/mec/booking.php:815
3550
  msgid "Ticket variations"
3551
  msgstr ""
3552
 
3553
- #: app/features/mec/booking.php:820
3554
  msgid "Automatically complete WooCommerce orders"
3555
  msgstr ""
3556
 
3557
- #: app/features/mec/booking.php:828
3558
  msgid "Auto WooCommerce orders"
3559
  msgstr ""
3560
 
3561
- #: app/features/mec/booking.php:829
3562
  msgid "It applies only to the orders that are related to MEC."
3563
  msgstr ""
3564
 
3565
- #: app/features/mec/booking.php:837
3566
  msgid "After Add to Cart"
3567
  msgstr ""
3568
 
3569
- #: app/features/mec/booking.php:840
3570
  msgid "Redirect to Cart"
3571
  msgstr ""
3572
 
3573
- #: app/features/mec/booking.php:841
3574
  msgid "Redirect to Checkout"
3575
  msgstr ""
3576
 
3577
- #: app/features/mec/booking.php:846
3578
  msgid "MEC Booking Form"
3579
  msgstr ""
3580
 
3581
- #: app/features/mec/booking.php:855
3582
  msgid ""
3583
  "If enabled then users should fill the booking form in MEC and then they will "
3584
  "be redirected to checkout."
3585
  msgstr ""
3586
 
3587
- #: app/features/mec/booking.php:881
3588
  msgid "Enable Organizer Payment Module"
3589
  msgstr ""
3590
 
3591
- #: app/features/mec/booking.php:886
3592
  msgid ""
3593
  "By enabling this module, organizers are able to insert their own payment "
3594
  "credentials for enabled gateways per event and receive the payments directly!"
3595
  msgstr ""
3596
 
3597
- #: app/features/mec/booking.php:896
3598
  msgid "Disable / Enable payment gateways per event"
3599
  msgstr ""
3600
 
3601
- #: app/features/mec/booking.php:900
3602
  msgid "Payment Gateways Per Event"
3603
  msgstr ""
3604
 
3605
- #: app/features/mec/booking.php:901
3606
  msgid ""
3607
  "By enabling this module, users are able to disable / enable payment gateways "
3608
  "per event"
3609
  msgstr ""
3610
 
3611
- #: app/features/mec/booking.php:989 app/features/mec/messages.php:78
3612
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3613
- #: app/features/mec/settings.php:1310 app/features/mec/single.php:443
3614
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3615
  msgid "Saved"
3616
  msgstr ""
3617
 
3618
- #: app/features/mec/booking.php:990 app/features/mec/messages.php:79
3619
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3620
- #: app/features/mec/settings.php:1311 app/features/mec/single.php:444
3621
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3622
  msgid "Settings Saved!"
3623
  msgstr ""
3624
 
3625
- #: app/features/mec/booking.php:1016 app/features/mec/modules.php:455
3626
- #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1337
3627
  #: app/features/mec/single.php:470
3628
  msgid "Please Refresh Page"
3629
  msgstr ""
@@ -4782,7 +4806,7 @@ msgstr ""
4782
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
4783
  #: app/features/mec/single.php:386 app/features/search.php:86
4784
  #: app/features/speakers.php:60 app/features/speakers.php:283
4785
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
4786
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
4787
  msgid "Speaker"
4788
  msgstr ""
@@ -5857,8 +5881,8 @@ msgstr ""
5857
  msgid "only once per hour"
5858
  msgstr ""
5859
 
5860
- #: app/features/mec/notifications.php:950 app/libraries/main.php:7446
5861
- #: app/libraries/main.php:7463
5862
  msgid "Hours"
5863
  msgstr ""
5864
 
@@ -6095,7 +6119,7 @@ msgid "You can enable/disable Schema scripts"
6095
  msgstr ""
6096
 
6097
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6098
- #: app/libraries/main.php:6362 app/libraries/main.php:6416
6099
  msgid "Weekdays"
6100
  msgstr ""
6101
 
@@ -6396,8 +6420,8 @@ msgstr ""
6396
  msgid "Let WordPress decide"
6397
  msgstr ""
6398
 
6399
- #: app/features/mec/settings.php:660 app/libraries/main.php:6638
6400
- #: app/libraries/main.php:6660
6401
  msgid "Pending"
6402
  msgstr ""
6403
 
@@ -6522,8 +6546,8 @@ msgstr ""
6522
  msgid "Event Description"
6523
  msgstr ""
6524
 
6525
- #: app/features/mec/settings.php:930 app/libraries/main.php:6385
6526
- #: app/libraries/main.php:6434
6527
  msgid "More Info Link"
6528
  msgstr ""
6529
 
@@ -6680,31 +6704,7 @@ msgstr ""
6680
  msgid "More information about the list ID can be found %s."
6681
  msgstr ""
6682
 
6683
- #: app/features/mec/settings.php:1241
6684
- msgid "Upload Field Options"
6685
- msgstr ""
6686
-
6687
- #: app/features/mec/settings.php:1243
6688
- msgid "Mime types"
6689
- msgstr ""
6690
-
6691
- #: app/features/mec/settings.php:1247
6692
- msgid "Split mime types with \",\"."
6693
- msgstr ""
6694
-
6695
- #: app/features/mec/settings.php:1247
6696
- msgid "Default: jpeg,jpg,png,pdf"
6697
- msgstr ""
6698
-
6699
- #: app/features/mec/settings.php:1250
6700
- msgid "Maximum file size"
6701
- msgstr ""
6702
-
6703
- #: app/features/mec/settings.php:1254
6704
- msgid "The unit is Megabyte \"MB\""
6705
- msgstr ""
6706
-
6707
- #: app/features/mec/single.php:38 app/libraries/main.php:556
6708
  msgid "Single Event Page"
6709
  msgstr ""
6710
 
@@ -6808,7 +6808,7 @@ msgid ""
6808
  "the settings page.' tab"
6809
  msgstr ""
6810
 
6811
- #: app/features/mec/single.php:162 app/libraries/main.php:557
6812
  msgid "Custom Fields"
6813
  msgstr ""
6814
 
@@ -6849,7 +6849,7 @@ msgid ""
6849
  "Using this option you can exclude certain days from event occurrence dates."
6850
  msgstr ""
6851
 
6852
- #: app/features/mec/single.php:286 app/libraries/main.php:560
6853
  msgid "Additional Organizers"
6854
  msgstr ""
6855
 
@@ -6873,7 +6873,7 @@ msgid ""
6873
  "page."
6874
  msgstr ""
6875
 
6876
- #: app/features/mec/single.php:318 app/libraries/main.php:562
6877
  #: app/skins/single.php:170 app/skins/single.php:435
6878
  msgid "Related Events"
6879
  msgstr ""
@@ -6886,7 +6886,7 @@ msgstr ""
6886
  msgid "Select Taxonomies:"
6887
  msgstr ""
6888
 
6889
- #: app/features/mec/single.php:360 app/libraries/main.php:563
6890
  msgid "Next / Previous Events"
6891
  msgstr ""
6892
 
@@ -7586,8 +7586,8 @@ msgstr ""
7586
  msgid "eg. https://webnus.net"
7587
  msgstr ""
7588
 
7589
- #: app/features/organizers.php:312 app/libraries/main.php:6390
7590
- #: app/libraries/main.php:6437 app/skins/single.php:1314
7591
  msgid "Other Organizers"
7592
  msgstr ""
7593
 
@@ -7801,9 +7801,9 @@ msgstr ""
7801
  msgid "No search result."
7802
  msgstr ""
7803
 
7804
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6392
7805
- #: app/libraries/main.php:6439 app/libraries/notifications.php:1256
7806
- #: app/libraries/render.php:531 app/libraries/render.php:853
7807
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
7808
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7809
  #: app/modules/next-event/details.php:154
@@ -7890,9 +7890,9 @@ msgid ""
7890
  "section and speaker widget section!"
7891
  msgstr ""
7892
 
7893
- #: app/features/wc.php:103 app/libraries/notifications.php:1241
7894
- #: app/libraries/notifications.php:1256 app/libraries/notifications.php:1267
7895
- #: app/libraries/notifications.php:1536 app/libraries/notifications.php:1537
7896
  #, php-format
7897
  msgid "%s to %s"
7898
  msgstr ""
@@ -7912,11 +7912,11 @@ msgstr ""
7912
  msgid "%s Price"
7913
  msgstr ""
7914
 
7915
- #: app/libraries/book.php:703 app/libraries/book.php:794
7916
  msgid "Discount"
7917
  msgstr ""
7918
 
7919
- #: app/libraries/book.php:881 app/modules/booking/default.php:426
7920
  #: app/modules/booking/default.php:531
7921
  msgid "Download Invoice"
7922
  msgstr ""
@@ -8046,47 +8046,47 @@ msgstr ""
8046
  msgid "Timeline View"
8047
  msgstr ""
8048
 
8049
- #: app/libraries/main.php:391 app/libraries/main.php:6364
8050
- #: app/libraries/main.php:6418
8051
  msgid "SU"
8052
  msgstr ""
8053
 
8054
- #: app/libraries/main.php:392 app/libraries/main.php:6365
8055
- #: app/libraries/main.php:6419
8056
  msgid "MO"
8057
  msgstr ""
8058
 
8059
- #: app/libraries/main.php:393 app/libraries/main.php:6366
8060
- #: app/libraries/main.php:6420
8061
  msgid "TU"
8062
  msgstr ""
8063
 
8064
- #: app/libraries/main.php:394 app/libraries/main.php:6367
8065
- #: app/libraries/main.php:6421
8066
  msgid "WE"
8067
  msgstr ""
8068
 
8069
- #: app/libraries/main.php:395 app/libraries/main.php:6368
8070
- #: app/libraries/main.php:6422
8071
  msgid "TH"
8072
  msgstr ""
8073
 
8074
- #: app/libraries/main.php:396 app/libraries/main.php:6369
8075
- #: app/libraries/main.php:6423
8076
  msgid "FR"
8077
  msgstr ""
8078
 
8079
- #: app/libraries/main.php:397 app/libraries/main.php:6370
8080
- #: app/libraries/main.php:6424
8081
  msgid "SA"
8082
  msgstr ""
8083
 
8084
- #: app/libraries/main.php:552
8085
- msgid "Upload Field"
8086
  msgstr ""
8087
 
8088
- #: app/libraries/main.php:561
8089
- msgid "Additional Locations"
8090
  msgstr ""
8091
 
8092
  #: app/libraries/main.php:726
@@ -8399,160 +8399,160 @@ msgstr ""
8399
  msgid "Free"
8400
  msgstr ""
8401
 
8402
- #: app/libraries/main.php:4447 app/libraries/main.php:6699
8403
  msgid "M.E. Calender"
8404
  msgstr ""
8405
 
8406
- #: app/libraries/main.php:4603
8407
  #, php-format
8408
  msgid "Copy of %s"
8409
  msgstr ""
8410
 
8411
- #: app/libraries/main.php:5475
8412
  msgid "Booked an event."
8413
  msgstr ""
8414
 
8415
- #: app/libraries/main.php:5516
8416
  #, php-format
8417
  msgid "%s booked %s event."
8418
  msgstr ""
8419
 
8420
- #: app/libraries/main.php:6347 app/libraries/main.php:6401
8421
  msgid "Taxonomies"
8422
  msgstr ""
8423
 
8424
- #: app/libraries/main.php:6349 app/libraries/main.php:6403
8425
  msgid "Category Plural Label"
8426
  msgstr ""
8427
 
8428
- #: app/libraries/main.php:6350 app/libraries/main.php:6404
8429
  msgid "Category Singular Label"
8430
  msgstr ""
8431
 
8432
- #: app/libraries/main.php:6351 app/libraries/main.php:6405
8433
  msgid "Label Plural Label"
8434
  msgstr ""
8435
 
8436
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
8437
  msgid "Label Singular Label"
8438
  msgstr ""
8439
 
8440
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
8441
  msgid "label"
8442
  msgstr ""
8443
 
8444
- #: app/libraries/main.php:6353 app/libraries/main.php:6407
8445
  msgid "Location Plural Label"
8446
  msgstr ""
8447
 
8448
- #: app/libraries/main.php:6354 app/libraries/main.php:6408
8449
  msgid "Location Singular Label"
8450
  msgstr ""
8451
 
8452
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
8453
  msgid "Organizer Plural Label"
8454
  msgstr ""
8455
 
8456
- #: app/libraries/main.php:6356 app/libraries/main.php:6410
8457
  msgid "Organizer Singular Label"
8458
  msgstr ""
8459
 
8460
- #: app/libraries/main.php:6357 app/libraries/main.php:6411
8461
  msgid "Speaker Plural Label"
8462
  msgstr ""
8463
 
8464
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
8465
  msgid "Speaker Singular Label"
8466
  msgstr ""
8467
 
8468
- #: app/libraries/main.php:6364 app/libraries/main.php:6418
8469
  msgid "Sunday abbreviation"
8470
  msgstr ""
8471
 
8472
- #: app/libraries/main.php:6365 app/libraries/main.php:6419
8473
  msgid "Monday abbreviation"
8474
  msgstr ""
8475
 
8476
- #: app/libraries/main.php:6366 app/libraries/main.php:6420
8477
  msgid "Tuesday abbreviation"
8478
  msgstr ""
8479
 
8480
- #: app/libraries/main.php:6367 app/libraries/main.php:6421
8481
  msgid "Wednesday abbreviation"
8482
  msgstr ""
8483
 
8484
- #: app/libraries/main.php:6368 app/libraries/main.php:6422
8485
  msgid "Thursday abbreviation"
8486
  msgstr ""
8487
 
8488
- #: app/libraries/main.php:6369 app/libraries/main.php:6423
8489
  msgid "Friday abbreviation"
8490
  msgstr ""
8491
 
8492
- #: app/libraries/main.php:6370 app/libraries/main.php:6424
8493
  msgid "Saturday abbreviation"
8494
  msgstr ""
8495
 
8496
- #: app/libraries/main.php:6374 app/libraries/main.php:6428
8497
  msgid "Others"
8498
  msgstr ""
8499
 
8500
- #: app/libraries/main.php:6376
8501
  msgid "Booking Success Message"
8502
  msgstr ""
8503
 
8504
- #: app/libraries/main.php:6376
8505
  msgid ""
8506
  "Thanks you for booking. Your tickets are booked, booking verification might "
8507
  "be needed, please check your email."
8508
  msgstr ""
8509
 
8510
- #: app/libraries/main.php:6377
8511
  msgid "Booking Restriction Message 1"
8512
  msgstr ""
8513
 
8514
- #: app/libraries/main.php:6377
8515
  #, php-format
8516
  msgid ""
8517
  "You selected %s tickets to book but maximum number of tikets per user is %s "
8518
  "tickets."
8519
  msgstr ""
8520
 
8521
- #: app/libraries/main.php:6378
8522
  msgid "Booking Restriction Message 2"
8523
  msgstr ""
8524
 
8525
- #: app/libraries/main.php:6378
8526
  #, php-format
8527
  msgid ""
8528
  "You booked %s tickets till now but maximum number of tickets per user is %s "
8529
  "tickets."
8530
  msgstr ""
8531
 
8532
- #: app/libraries/main.php:6379
8533
  msgid "Booking IP Restriction Message"
8534
  msgstr ""
8535
 
8536
- #: app/libraries/main.php:6379
8537
  #, php-format
8538
  msgid "Maximum allowed number of tickets that you can book is %s."
8539
  msgstr ""
8540
 
8541
- #: app/libraries/main.php:6380
8542
  msgid "Booking Button"
8543
  msgstr ""
8544
 
8545
- #: app/libraries/main.php:6380 app/libraries/skins.php:1259
8546
  #: app/modules/booking/steps/tickets.php:102
8547
  msgid "Book Event"
8548
  msgstr ""
8549
 
8550
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
8551
  #: app/widgets/single.php:131
8552
  msgid "Register Button"
8553
  msgstr ""
8554
 
8555
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
8556
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
8557
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
8558
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
@@ -8570,11 +8570,11 @@ msgstr ""
8570
  msgid "REGISTER"
8571
  msgstr ""
8572
 
8573
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
8574
  msgid "View Detail Button"
8575
  msgstr ""
8576
 
8577
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
8578
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
8579
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
8580
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
@@ -8586,120 +8586,120 @@ msgstr ""
8586
  msgid "View Detail"
8587
  msgstr ""
8588
 
8589
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
8590
  msgid "Event Detail Button"
8591
  msgstr ""
8592
 
8593
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
8594
  msgid "Event Detail"
8595
  msgstr ""
8596
 
8597
- #: app/libraries/main.php:6388
8598
  msgid "Ticket (Singular)"
8599
  msgstr ""
8600
 
8601
- #: app/libraries/main.php:6389
8602
  msgid "Tickets (Plural)"
8603
  msgstr ""
8604
 
8605
- #: app/libraries/main.php:6547
8606
  msgid "EventON"
8607
  msgstr ""
8608
 
8609
- #: app/libraries/main.php:6548
8610
  msgid "The Events Calendar"
8611
  msgstr ""
8612
 
8613
- #: app/libraries/main.php:6549
8614
  msgid "Events Schedule WP Plugin"
8615
  msgstr ""
8616
 
8617
- #: app/libraries/main.php:6550
8618
  msgid "Calendarize It"
8619
  msgstr ""
8620
 
8621
- #: app/libraries/main.php:6551
8622
  msgid "Event Espresso"
8623
  msgstr ""
8624
 
8625
- #: app/libraries/main.php:6552
8626
  msgid "Events Manager (Recurring)"
8627
  msgstr ""
8628
 
8629
- #: app/libraries/main.php:6553
8630
  msgid "Events Manager (Single)"
8631
  msgstr ""
8632
 
8633
- #: app/libraries/main.php:6554
8634
  msgid "WP Event Manager"
8635
  msgstr ""
8636
 
8637
- #: app/libraries/main.php:6686
8638
  msgid "Waiting"
8639
  msgstr ""
8640
 
8641
- #: app/libraries/main.php:6729
8642
  msgid "Sun"
8643
  msgstr ""
8644
 
8645
- #: app/libraries/main.php:6729
8646
  msgid "Mon"
8647
  msgstr ""
8648
 
8649
- #: app/libraries/main.php:6729
8650
  msgid "Tue"
8651
  msgstr ""
8652
 
8653
- #: app/libraries/main.php:6729
8654
  msgid "Wed"
8655
  msgstr ""
8656
 
8657
- #: app/libraries/main.php:6729
8658
  msgid "Thu"
8659
  msgstr ""
8660
 
8661
- #: app/libraries/main.php:6729
8662
  msgid "Fri"
8663
  msgstr ""
8664
 
8665
- #: app/libraries/main.php:6729
8666
  msgid "Sat"
8667
  msgstr ""
8668
 
8669
- #: app/libraries/main.php:6895 app/libraries/render.php:80
8670
  #: app/libraries/render.php:445
8671
  msgid "Skin controller does not exist."
8672
  msgstr ""
8673
 
8674
- #: app/libraries/main.php:7110
8675
  msgid "Sold Out"
8676
  msgstr ""
8677
 
8678
- #: app/libraries/main.php:7121
8679
  msgid "Last Few Tickets"
8680
  msgstr ""
8681
 
8682
- #: app/libraries/main.php:7452 app/libraries/main.php:7469
8683
  msgid "Minutes"
8684
  msgstr ""
8685
 
8686
- #: app/libraries/main.php:7474
8687
  msgid "AM / PM"
8688
  msgstr ""
8689
 
8690
- #: app/libraries/main.php:7475
8691
  msgid "AM"
8692
  msgstr ""
8693
 
8694
- #: app/libraries/main.php:7476
8695
  msgid "PM"
8696
  msgstr ""
8697
 
8698
- #: app/libraries/main.php:7484
8699
  msgid "Ongoing..."
8700
  msgstr ""
8701
 
8702
- #: app/libraries/main.php:7485
8703
  msgid "Expired!"
8704
  msgstr ""
8705
 
@@ -8727,40 +8727,40 @@ msgstr ""
8727
  msgid "A new booking is received."
8728
  msgstr ""
8729
 
8730
- #: app/libraries/notifications.php:852
8731
  msgid "A new event is added."
8732
  msgstr ""
8733
 
8734
- #: app/libraries/notifications.php:968
8735
  msgid "Your event is published."
8736
  msgstr ""
8737
 
8738
- #: app/libraries/notifications.php:1118
8739
  msgid "Event is soldout!"
8740
  msgstr ""
8741
 
8742
- #: app/libraries/notifications.php:1480
8743
  msgid "to"
8744
  msgstr ""
8745
 
8746
- #: app/libraries/notifications.php:1501 app/modules/export/details.php:48
8747
  msgid "+ Add to Google Calendar"
8748
  msgstr ""
8749
 
8750
- #: app/libraries/notifications.php:1502 app/modules/export/details.php:49
8751
  msgid "+ iCal / Outlook export"
8752
  msgstr ""
8753
 
8754
- #: app/libraries/notifications.php:1551
8755
  #, php-format
8756
  msgid "+ %s to Google Calendar"
8757
  msgstr ""
8758
 
8759
- #: app/libraries/notifications.php:1631
8760
  msgid "Yes"
8761
  msgstr ""
8762
 
8763
- #: app/libraries/notifications.php:1631
8764
  msgid "No"
8765
  msgstr ""
8766
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2020-11-18 11:01+0330\n"
5
+ "PO-Revision-Date: 2020-11-18 11:02+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
93
 
94
  #: app/features/contextual.php:62 app/features/events.php:1617
95
  #: app/features/events.php:2513 app/features/mec/booking.php:606
96
+ #: app/features/mec/booking.php:872 app/features/mec/support.php:29
97
+ #: app/libraries/main.php:571
98
  msgid "Booking Form"
99
  msgstr ""
100
 
108
  msgstr ""
109
 
110
  #: app/features/contextual.php:70 app/features/events.php:1625
111
+ #: app/features/mec/booking.php:816 app/features/mec/support-page.php:115
112
  #: app/features/mec/support.php:36 app/libraries/main.php:573
113
  msgid "Payment Gateways"
114
  msgstr ""
214
  msgstr ""
215
 
216
  #: app/features/contextual.php:258 app/features/mec/single.php:248
217
+ #: app/libraries/main.php:557
218
  msgid "Countdown Options"
219
  msgstr ""
220
 
233
  msgstr ""
234
 
235
  #: app/features/contextual.php:298 app/features/events.php:345
236
+ #: app/libraries/main.php:558
237
  msgid "Exceptional Days"
238
  msgstr ""
239
 
240
  #: app/features/contextual.php:308 app/features/events.php:315
241
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
242
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
243
+ #: app/libraries/main.php:566 app/libraries/main.php:597
244
  #: app/libraries/main.php:684
245
  msgid "Booking"
246
  msgstr ""
247
 
248
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
249
+ #: app/features/mec/booking.php:832 app/libraries/main.php:568
250
  msgid "Coupons"
251
  msgstr ""
252
 
296
  msgstr ""
297
 
298
  #: app/features/events.php:167 app/features/ix/export.php:34
299
+ #: app/features/mec/dashboard.php:265 app/libraries/main.php:5542
300
+ #: app/libraries/main.php:5562 app/skins/daily_view/tpl.php:82
301
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
302
  #: app/skins/yearly_view/tpl.php:71
303
  msgid "Events"
321
  msgid "Add New Event"
322
  msgstr ""
323
 
324
+ #: app/features/events.php:171 app/features/ix.php:4401
325
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
326
  #: app/skins/map/tpl.php:88
327
  msgid "No events found!"
344
  msgid "No events found in Trash!"
345
  msgstr ""
346
 
347
+ #: app/features/events.php:192 app/features/events.php:3599
348
  #: app/features/mec/meta_boxes/display_options.php:1463
349
  #: app/features/mec/meta_boxes/search_form.php:31
350
  #: app/features/mec/meta_boxes/search_form.php:101
359
  #: app/features/mec/meta_boxes/search_form.php:760
360
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
361
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
362
+ #: app/features/search.php:68 app/libraries/main.php:6341
363
+ #: app/libraries/main.php:6395 app/libraries/skins.php:934
364
  #: app/skins/single.php:1016 app/skins/single/default.php:219
365
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
366
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
367
  msgid "Category"
368
  msgstr ""
369
 
370
+ #: app/features/events.php:193 app/features/events.php:3554
371
  #: app/features/fes/form.php:865 app/features/mec.php:467
372
  #: app/features/mec/meta_boxes/filter.php:69
373
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6340
374
+ #: app/libraries/main.php:6394
375
  msgid "Categories"
376
  msgstr ""
377
 
472
  msgid "Links"
473
  msgstr ""
474
 
475
+ #: app/features/events.php:349 app/features/events.php:3601
476
+ #: app/features/events.php:3790 app/features/ix.php:3990
477
+ #: app/features/ix.php:4032
478
  #: app/features/mec/meta_boxes/display_options.php:1466
479
  #: app/features/mec/meta_boxes/search_form.php:46
480
  #: app/features/mec/meta_boxes/search_form.php:116
492
  #: app/features/organizers.php:204 app/features/organizers.php:260
493
  #: app/features/organizers.php:262 app/features/organizers.php:271
494
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
495
+ #: app/features/search.php:80 app/libraries/main.php:6347
496
+ #: app/libraries/main.php:6401 app/libraries/skins.php:986
497
  #: app/skins/single.php:1264 app/skins/single/default.php:244
498
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
499
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
502
 
503
  #: app/features/events.php:350 app/features/events.php:1165
504
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
505
+ #: app/libraries/main.php:6378 app/libraries/main.php:6427
506
  #: app/skins/single.php:1042 app/skins/single/default.php:142
507
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
508
  #: app/skins/single/modern.php:237
522
  msgstr ""
523
 
524
  #: app/features/events.php:511 app/features/events.php:2499
525
+ #: app/features/events.php:4113 app/features/fes.php:243
526
  #: app/features/fes/form.php:795 app/features/labels.php:178
527
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
528
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
529
+ #: app/libraries/notifications.php:1617 app/modules/booking/steps/form.php:63
530
  msgid "Name"
531
  msgstr ""
532
 
533
  #: app/features/events.php:512 app/features/events.php:2508
534
  #: app/features/events.php:2575 app/features/events.php:2664
535
+ #: app/features/events.php:4116 app/features/fes.php:243
536
  #: app/features/fes/form.php:791 app/features/login/login.php:5
537
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
538
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
540
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
541
  #: app/features/speakers.php:204 app/libraries/main.php:1872
542
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
543
+ #: app/libraries/notifications.php:1618 app/modules/booking/steps/form.php:72
544
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
545
  #: app/skins/single.php:1340 app/skins/single/default.php:261
546
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
559
  msgstr ""
560
 
561
  #: app/features/events.php:528 app/features/events.php:532
562
+ #: app/features/events.php:3602 app/features/events.php:3790
563
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
564
+ #: app/features/ix.php:3990 app/features/ix.php:4032
565
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
566
  #: app/features/mec/meta_boxes/display_options.php:52
567
  #: app/features/mec/meta_boxes/display_options.php:295
583
  msgstr ""
584
 
585
  #: app/features/events.php:547 app/features/events.php:551
586
+ #: app/features/events.php:3603 app/features/events.php:3790
587
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
588
+ #: app/features/ix.php:3990 app/features/ix.php:4032
589
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
590
  #: app/features/popup/event.php:92
591
  msgid "End Date"
631
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
632
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
633
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
634
+ #: app/features/mec/booking.php:848 app/features/mec/booking.php:874
635
  #: app/features/mec/dashboard.php:71
636
  #: app/features/mec/meta_boxes/display_options.php:85
637
  #: app/features/mec/meta_boxes/display_options.php:98
886
  msgid "Show only one occurrence of this event"
887
  msgstr ""
888
 
889
+ #: app/features/events.php:1161 app/features/events.php:3790
890
+ #: app/features/fes/form.php:833 app/features/ix.php:3990
891
+ #: app/features/ix.php:4032 app/features/mec/settings.php:763
892
+ #: app/libraries/main.php:6377 app/libraries/main.php:6426
893
  #: app/widgets/single.php:103
894
  msgid "Event Cost"
895
  msgstr ""
921
  "multiple day occurrences."
922
  msgstr ""
923
 
924
+ #: app/features/events.php:1334 app/libraries/render.php:560
925
  msgid "Day 1"
926
  msgstr ""
927
 
943
  #: app/features/events.php:1376 app/features/events.php:1415
944
  #: app/features/events.php:1450 app/features/events.php:1482
945
  #: app/features/events.php:1511 app/features/events.php:2371
946
+ #: app/features/events.php:2418 app/features/events.php:3598
947
+ #: app/features/events.php:3790 app/features/fes/form.php:256
948
+ #: app/features/ix.php:3990 app/features/ix.php:4032
949
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
950
  #: app/features/mec/styling.php:130
951
  msgid "Title"
986
 
987
  #: app/features/events.php:1419 app/features/events.php:1453
988
  #: app/features/events.php:1514 app/features/events.php:1892
989
+ #: app/features/events.php:2074 app/features/events.php:3790
990
  msgid "Description"
991
  msgstr ""
992
 
994
  #: app/features/events.php:1519 app/features/fes/form.php:959
995
  #: app/features/mec.php:475 app/features/mec/modules.php:51
996
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
997
+ #: app/libraries/main.php:577 app/libraries/main.php:6348
998
+ #: app/libraries/main.php:6402 app/modules/speakers/details.php:18
999
  msgid "Speakers"
1000
  msgstr ""
1001
 
1010
 
1011
  #: app/features/events.php:1553 app/features/events.php:1561
1012
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1013
+ #: app/libraries/main.php:6375 app/libraries/main.php:6424
1014
  msgid "Event Link"
1015
  msgstr ""
1016
 
1031
  msgstr ""
1032
 
1033
  #: app/features/events.php:1571 app/features/events.php:1584
1034
+ #: app/features/fes/form.php:817 app/libraries/main.php:6376
1035
+ #: app/libraries/main.php:6425 app/skins/single.php:1126
1036
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1037
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1038
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1068
  msgstr ""
1069
 
1070
  #: app/features/events.php:1610 app/features/events.php:1835
1071
+ #: app/libraries/book.php:63 app/libraries/main.php:6380
1072
  #: app/modules/booking/steps/tickets.php:137
1073
  #: app/modules/booking/steps/tickets.php:143
1074
  msgid "Tickets"
1083
  msgid "Ticket Variations / Options"
1084
  msgstr ""
1085
 
1086
+ #: app/features/events.php:1619 app/features/mec/booking.php:903
1087
  #: app/features/mec/support-page.php:118
1088
  msgid "Organizer Payment"
1089
  msgstr ""
1167
 
1168
  #: app/features/events.php:1763 app/features/events.php:1773
1169
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1170
+ #: app/features/mec/booking.php:253 app/features/mec/booking.php:842
1171
+ #: app/features/mec/booking.php:867
1172
  #: app/features/mec/meta_boxes/search_form.php:33
1173
  #: app/features/mec/meta_boxes/search_form.php:40
1174
  #: app/features/mec/meta_boxes/search_form.php:48
1274
 
1275
  #: app/features/events.php:1764 app/features/events.php:1774
1276
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1277
+ #: app/features/mec/booking.php:254 app/features/mec/booking.php:841
1278
+ #: app/features/mec/booking.php:868 app/features/mec/settings.php:106
1279
  msgid "Enabled"
1280
  msgstr ""
1281
 
1319
  msgstr ""
1320
 
1321
  #: app/features/events.php:1855 app/features/events.php:2039
1322
+ #: app/features/events.php:3790 app/features/fes.php:243
1323
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1324
  #: app/features/labels.php:177 app/features/locations.php:262
1325
  #: app/features/organizers.php:203 app/features/speakers.php:282
1326
  msgid "ID"
1331
  msgstr ""
1332
 
1333
  #: app/features/events.php:1863 app/features/events.php:2046
1334
+ #: app/features/events.php:3790 app/features/ix.php:3990
1335
+ #: app/features/ix.php:4032
1336
  msgid "Start Time"
1337
  msgstr ""
1338
 
1339
  #: app/features/events.php:1876 app/features/events.php:2059
1340
+ #: app/features/events.php:3790 app/features/ix.php:3990
1341
+ #: app/features/ix.php:4032
1342
  msgid "End Time"
1343
  msgstr ""
1344
 
1633
  msgid "Fixed Fields"
1634
  msgstr ""
1635
 
1636
+ #: app/features/events.php:3500 app/features/events.php:3518
1637
+ #: app/features/events.php:3536 app/features/events.php:3554
1638
  #, php-format
1639
  msgid "Show all %s"
1640
  msgstr ""
1641
 
1642
+ #: app/features/events.php:3500
1643
  msgid "labels"
1644
  msgstr ""
1645
 
1646
+ #: app/features/events.php:3518
1647
  msgid "locations"
1648
  msgstr ""
1649
 
1650
+ #: app/features/events.php:3536
1651
  msgid "organizers"
1652
  msgstr ""
1653
 
1654
+ #: app/features/events.php:3570
1655
  msgid "Attendees List"
1656
  msgstr ""
1657
 
1658
+ #: app/features/events.php:3600 app/features/events.php:3790
1659
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1660
  #: app/features/locations.php:58 app/features/locations.php:263
1661
  #: app/features/locations.php:324 app/features/locations.php:326
1662
  #: app/features/locations.php:335
1675
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1676
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1677
  #: app/features/popup/event.php:125 app/features/search.php:74
1678
+ #: app/libraries/main.php:2641 app/libraries/main.php:6345
1679
+ #: app/libraries/main.php:6399 app/libraries/skins.php:960
1680
  #: app/skins/single.php:943 app/skins/single.php:1386
1681
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1682
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
1684
  msgid "Location"
1685
  msgstr ""
1686
 
1687
+ #: app/features/events.php:3605
1688
  msgid "Repeat"
1689
  msgstr ""
1690
 
1691
+ #: app/features/events.php:3606
1692
  msgid "Author"
1693
  msgstr ""
1694
 
1695
+ #: app/features/events.php:3727 app/features/events.php:3728
1696
  msgid "iCal / Outlook Export"
1697
  msgstr ""
1698
 
1699
+ #: app/features/events.php:3730 app/features/events.php:3731
1700
  msgid "CSV Export"
1701
  msgstr ""
1702
 
1703
+ #: app/features/events.php:3733 app/features/events.php:3734
1704
  msgid "MS Excel Export"
1705
  msgstr ""
1706
 
1707
+ #: app/features/events.php:3736 app/features/events.php:3737
1708
  msgid "XML Export"
1709
  msgstr ""
1710
 
1711
+ #: app/features/events.php:3739 app/features/events.php:3740
1712
  msgid "JSON Export"
1713
  msgstr ""
1714
 
1715
+ #: app/features/events.php:3742 app/features/events.php:3743
1716
+ #: app/features/events.php:3899
1717
  msgid "Duplicate"
1718
  msgstr ""
1719
 
1720
+ #: app/features/events.php:3790 app/features/ix.php:3990
1721
+ #: app/features/ix.php:4032
1722
  msgid "Link"
1723
  msgstr ""
1724
 
1725
+ #: app/features/events.php:3790 app/features/ix.php:3990
1726
+ #: app/features/ix.php:4032 app/features/locations.php:110
1727
  #: app/features/locations.php:180 app/features/locations.php:264
1728
  #: app/features/mec/meta_boxes/search_form.php:74
1729
  #: app/features/mec/meta_boxes/search_form.php:144
1739
  msgid "Address"
1740
  msgstr ""
1741
 
1742
+ #: app/features/events.php:3790
1743
  #, php-format
1744
  msgid "%s Tel"
1745
  msgstr ""
1746
 
1747
+ #: app/features/events.php:3790
1748
  #, php-format
1749
  msgid "%s Email"
1750
  msgstr ""
1751
 
1752
+ #: app/features/events.php:3790 app/features/fes/form.php:850
1753
  #: app/features/mec/settings.php:769
1754
  msgid "Featured Image"
1755
  msgstr ""
1756
 
1757
+ #: app/features/events.php:4119 app/features/fes.php:243
1758
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1759
+ #: app/libraries/main.php:6379
1760
  msgid "Ticket"
1761
  msgstr ""
1762
 
1763
+ #: app/features/events.php:4122 app/features/profile/profile.php:186
1764
  msgid "Variations"
1765
  msgstr ""
1766
 
1767
+ #: app/features/events.php:4137 app/features/fes.php:316
1768
  msgid "Unknown"
1769
  msgstr ""
1770
 
1771
+ #: app/features/events.php:4163
1772
  msgid ""
1773
  "If you want to send an email, first select your attendees and then click in "
1774
  "the button below, please."
1775
  msgstr ""
1776
 
1777
+ #: app/features/events.php:4163 app/features/mec/report.php:58
1778
  msgid "Send Email"
1779
  msgstr ""
1780
 
1781
+ #: app/features/events.php:4167
1782
  msgid "No Attendees Found!"
1783
  msgstr ""
1784
 
1981
  #: app/features/fes/form.php:891 app/features/labels.php:61
1982
  #: app/features/labels.php:221 app/features/mec.php:468
1983
  #: app/features/mec/meta_boxes/filter.php:72
1984
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6342
1985
+ #: app/libraries/main.php:6396 app/skins/single.php:1156
1986
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
1987
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
1988
  msgid "Labels"
2060
  msgid "An error occurred during the file upload! Please check permissions!"
2061
  msgstr ""
2062
 
2063
+ #: app/features/ix.php:265 app/libraries/main.php:6627
2064
+ #: app/libraries/main.php:6647
2065
  msgid "Confirmed"
2066
  msgstr ""
2067
 
2068
+ #: app/features/ix.php:266 app/libraries/main.php:6628
2069
+ #: app/libraries/main.php:6655
2070
  msgid "Rejected"
2071
  msgstr ""
2072
 
2073
+ #: app/features/ix.php:270 app/features/mec/booking.php:1010
2074
+ #: app/features/mec/booking.php:1032 app/features/mec/modules.php:431
2075
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2076
+ #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1295
2077
+ #: app/features/mec/settings.php:1317 app/features/mec/single.php:446
2078
+ #: app/features/mec/single.php:468 app/libraries/main.php:6675
2079
  msgid "Verified"
2080
  msgstr ""
2081
 
2082
  #: app/features/ix.php:271 app/features/labels.php:118
2083
+ #: app/features/labels.php:143 app/libraries/main.php:6676
2084
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2085
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2086
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
2114
  msgid "The events are imported successfully!"
2115
  msgstr ""
2116
 
2117
+ #: app/features/ix.php:1176
2118
  msgid "Third Party plugin is not installed and activated!"
2119
  msgstr ""
2120
 
2121
+ #: app/features/ix.php:1200
2122
  msgid "Third Party plugin is invalid!"
2123
  msgstr ""
2124
 
2125
+ #: app/features/ix.php:3175 app/features/ix.php:3233
2126
  msgid "API key and Calendar ID are required!"
2127
  msgstr ""
2128
 
2129
+ #: app/features/ix.php:3228 app/features/ix.php:3673 app/features/ix.php:4408
2130
  msgid "Please select events to import!"
2131
  msgstr ""
2132
 
2133
+ #: app/features/ix.php:3615 app/features/ix.php:3678
2134
  msgid "API key and Group URL are required!"
2135
  msgstr ""
2136
 
2137
+ #: app/features/ix.php:3917
2138
  msgid "Check at Meetup"
2139
  msgstr ""
2140
 
2141
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2142
  msgid "Organizer Tel"
2143
  msgstr ""
2144
 
2145
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2146
  msgid "Organizer Email"
2147
  msgstr ""
2148
 
2149
+ #: app/features/ix.php:4108
2150
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2151
  msgstr ""
2152
 
2153
+ #: app/features/ix.php:4131
2154
  #, php-format
2155
  msgid "All seems good! Please click %s to authenticate your app."
2156
  msgstr ""
2157
 
2158
+ #: app/features/ix.php:4131 app/features/mec/settings.php:1236
2159
  msgid "here"
2160
  msgstr ""
2161
 
2162
+ #: app/features/ix.php:4185
2163
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2164
  msgstr ""
2165
 
2166
+ #: app/features/ix.php:4330
2167
  #, php-format
2168
  msgid "%s events added to Google Calendar with success."
2169
  msgstr ""
2170
 
2171
+ #: app/features/ix.php:4331
2172
  #, php-format
2173
  msgid "%s Updated previously added events."
2174
  msgstr ""
2175
 
2176
+ #: app/features/ix.php:4332
2177
  #, php-format
2178
  msgid "%s events failed to add for following reasons: %s"
2179
  msgstr ""
2180
 
2181
+ #: app/features/ix.php:4364
2182
  msgid "Please insert your Facebook page's link."
2183
  msgstr ""
2184
 
2185
+ #: app/features/ix.php:4375 app/features/ix.php:4417
2186
  msgid ""
2187
  "We were not able to recognize your Facebook page. Please check again and "
2188
  "provide a valid link."
2189
  msgstr ""
2190
 
2191
+ #: app/features/ix.php:4412
2192
  msgid "Please insert your facebook page's link."
2193
  msgstr ""
2194
 
2353
  msgid "Add to Google Calendar"
2354
  msgstr ""
2355
 
2356
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1012
2357
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2358
+ #: app/features/mec/settings.php:1297 app/features/mec/single.php:448
2359
  msgid "Checking ..."
2360
  msgstr ""
2361
 
2811
 
2812
  #: app/features/locations.php:59 app/features/mec.php:469
2813
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
2814
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6344
2815
+ #: app/libraries/main.php:6398
2816
  msgid "Locations"
2817
  msgstr ""
2818
 
2922
  msgid "Don't show map in single event page"
2923
  msgstr ""
2924
 
2925
+ #: app/features/locations.php:398 app/libraries/main.php:6382
2926
+ #: app/libraries/main.php:6429
2927
  msgid "Other Locations"
2928
  msgstr ""
2929
 
2996
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
2997
  #: app/features/mec/meta_boxes/filter.php:71
2998
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2999
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
3000
  msgid "Organizers"
3001
  msgstr ""
3002
 
3181
  msgstr ""
3182
 
3183
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3184
+ #: app/features/mec/booking.php:928 app/features/mec/booking.php:937
3185
+ #: app/features/mec/booking.php:947 app/features/mec/booking.php:1029
3186
+ #: app/features/mec/booking.php:1043 app/features/mec/messages.php:15
3187
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3188
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3189
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
3193
  #: app/features/mec/notifications.php:1218
3194
  #: app/features/mec/notifications.php:1324
3195
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3196
+ #: app/features/mec/settings.php:1246 app/features/mec/settings.php:1256
3197
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1328
3198
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3199
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3200
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
3464
  msgid "Send confirmation email in auto confirmation mode"
3465
  msgstr ""
3466
 
3467
+ #: app/features/mec/booking.php:412 app/libraries/main.php:567
3468
  msgid "Booking Shortcode"
3469
  msgstr ""
3470
 
3495
  "new menu on the Dashboard > Booking"
3496
  msgstr ""
3497
 
3498
+ #: app/features/mec/booking.php:446 app/features/mec/booking.php:834
3499
+ #: app/libraries/main.php:569
3500
  msgid "Taxes / Fees"
3501
  msgstr ""
3502
 
3508
  msgid "Add Fee"
3509
  msgstr ""
3510
 
3511
+ #: app/features/mec/booking.php:523 app/libraries/main.php:570
3512
  msgid "Ticket Variations & Options"
3513
  msgstr ""
3514
 
3520
  msgid "Add Variation / Option"
3521
  msgstr ""
3522
 
3523
+ #: app/features/mec/booking.php:798
3524
+ msgid "Upload Field Options"
3525
+ msgstr ""
3526
+
3527
+ #: app/features/mec/booking.php:800
3528
+ msgid "Mime types"
3529
+ msgstr ""
3530
+
3531
+ #: app/features/mec/booking.php:804
3532
+ msgid "Split mime types with \",\"."
3533
+ msgstr ""
3534
+
3535
+ #: app/features/mec/booking.php:804
3536
+ msgid "Default: jpeg,jpg,png,pdf"
3537
+ msgstr ""
3538
+
3539
+ #: app/features/mec/booking.php:807
3540
+ msgid "Maximum file size"
3541
+ msgstr ""
3542
+
3543
+ #: app/features/mec/booking.php:811
3544
+ msgid "The unit is Megabyte \"MB\""
3545
+ msgstr ""
3546
+
3547
+ #: app/features/mec/booking.php:824
3548
  msgid "Use WooCommerce as Payment System"
3549
  msgstr ""
3550
 
3551
+ #: app/features/mec/booking.php:826
3552
  msgid ""
3553
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3554
  "payment process would be done by WooCommerce so all of MEC payment related "
3556
  "fields etc, you need to configure WooCommerce on your website."
3557
  msgstr ""
3558
 
3559
+ #: app/features/mec/booking.php:828
3560
  msgid ""
3561
  "You cannot use following MEC features so you should use WooCommerc and its "
3562
  "addons if you need them."
3563
  msgstr ""
3564
 
3565
+ #: app/features/mec/booking.php:830
3566
  msgid "Payment gateways"
3567
  msgstr ""
3568
 
3569
+ #: app/features/mec/booking.php:831
3570
  msgid "Price per dates of tickets"
3571
  msgstr ""
3572
 
3573
+ #: app/features/mec/booking.php:833
3574
  msgid "Ticket variations"
3575
  msgstr ""
3576
 
3577
+ #: app/features/mec/booking.php:838
3578
  msgid "Automatically complete WooCommerce orders"
3579
  msgstr ""
3580
 
3581
+ #: app/features/mec/booking.php:846
3582
  msgid "Auto WooCommerce orders"
3583
  msgstr ""
3584
 
3585
+ #: app/features/mec/booking.php:847
3586
  msgid "It applies only to the orders that are related to MEC."
3587
  msgstr ""
3588
 
3589
+ #: app/features/mec/booking.php:855
3590
  msgid "After Add to Cart"
3591
  msgstr ""
3592
 
3593
+ #: app/features/mec/booking.php:858
3594
  msgid "Redirect to Cart"
3595
  msgstr ""
3596
 
3597
+ #: app/features/mec/booking.php:859
3598
  msgid "Redirect to Checkout"
3599
  msgstr ""
3600
 
3601
+ #: app/features/mec/booking.php:864
3602
  msgid "MEC Booking Form"
3603
  msgstr ""
3604
 
3605
+ #: app/features/mec/booking.php:873
3606
  msgid ""
3607
  "If enabled then users should fill the booking form in MEC and then they will "
3608
  "be redirected to checkout."
3609
  msgstr ""
3610
 
3611
+ #: app/features/mec/booking.php:899
3612
  msgid "Enable Organizer Payment Module"
3613
  msgstr ""
3614
 
3615
+ #: app/features/mec/booking.php:904
3616
  msgid ""
3617
  "By enabling this module, organizers are able to insert their own payment "
3618
  "credentials for enabled gateways per event and receive the payments directly!"
3619
  msgstr ""
3620
 
3621
+ #: app/features/mec/booking.php:914
3622
  msgid "Disable / Enable payment gateways per event"
3623
  msgstr ""
3624
 
3625
+ #: app/features/mec/booking.php:918
3626
  msgid "Payment Gateways Per Event"
3627
  msgstr ""
3628
 
3629
+ #: app/features/mec/booking.php:919
3630
  msgid ""
3631
  "By enabling this module, users are able to disable / enable payment gateways "
3632
  "per event"
3633
  msgstr ""
3634
 
3635
+ #: app/features/mec/booking.php:1007 app/features/mec/messages.php:78
3636
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3637
+ #: app/features/mec/settings.php:1292 app/features/mec/single.php:443
3638
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3639
  msgid "Saved"
3640
  msgstr ""
3641
 
3642
+ #: app/features/mec/booking.php:1008 app/features/mec/messages.php:79
3643
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3644
+ #: app/features/mec/settings.php:1293 app/features/mec/single.php:444
3645
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3646
  msgid "Settings Saved!"
3647
  msgstr ""
3648
 
3649
+ #: app/features/mec/booking.php:1034 app/features/mec/modules.php:455
3650
+ #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1319
3651
  #: app/features/mec/single.php:470
3652
  msgid "Please Refresh Page"
3653
  msgstr ""
4806
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
4807
  #: app/features/mec/single.php:386 app/features/search.php:86
4808
  #: app/features/speakers.php:60 app/features/speakers.php:283
4809
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
4810
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
4811
  msgid "Speaker"
4812
  msgstr ""
5881
  msgid "only once per hour"
5882
  msgstr ""
5883
 
5884
+ #: app/features/mec/notifications.php:950 app/libraries/main.php:7437
5885
+ #: app/libraries/main.php:7454
5886
  msgid "Hours"
5887
  msgstr ""
5888
 
6119
  msgstr ""
6120
 
6121
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6122
+ #: app/libraries/main.php:6353 app/libraries/main.php:6407
6123
  msgid "Weekdays"
6124
  msgstr ""
6125
 
6420
  msgid "Let WordPress decide"
6421
  msgstr ""
6422
 
6423
+ #: app/features/mec/settings.php:660 app/libraries/main.php:6629
6424
+ #: app/libraries/main.php:6651
6425
  msgid "Pending"
6426
  msgstr ""
6427
 
6546
  msgid "Event Description"
6547
  msgstr ""
6548
 
6549
+ #: app/features/mec/settings.php:930 app/libraries/main.php:6376
6550
+ #: app/libraries/main.php:6425
6551
  msgid "More Info Link"
6552
  msgstr ""
6553
 
6704
  msgid "More information about the list ID can be found %s."
6705
  msgstr ""
6706
 
6707
+ #: app/features/mec/single.php:38 app/libraries/main.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6708
  msgid "Single Event Page"
6709
  msgstr ""
6710
 
6808
  "the settings page.' tab"
6809
  msgstr ""
6810
 
6811
+ #: app/features/mec/single.php:162 app/libraries/main.php:556
6812
  msgid "Custom Fields"
6813
  msgstr ""
6814
 
6849
  "Using this option you can exclude certain days from event occurrence dates."
6850
  msgstr ""
6851
 
6852
+ #: app/features/mec/single.php:286 app/libraries/main.php:559
6853
  msgid "Additional Organizers"
6854
  msgstr ""
6855
 
6873
  "page."
6874
  msgstr ""
6875
 
6876
+ #: app/features/mec/single.php:318 app/libraries/main.php:561
6877
  #: app/skins/single.php:170 app/skins/single.php:435
6878
  msgid "Related Events"
6879
  msgstr ""
6886
  msgid "Select Taxonomies:"
6887
  msgstr ""
6888
 
6889
+ #: app/features/mec/single.php:360 app/libraries/main.php:562
6890
  msgid "Next / Previous Events"
6891
  msgstr ""
6892
 
7586
  msgid "eg. https://webnus.net"
7587
  msgstr ""
7588
 
7589
+ #: app/features/organizers.php:312 app/libraries/main.php:6381
7590
+ #: app/libraries/main.php:6428 app/skins/single.php:1314
7591
  msgid "Other Organizers"
7592
  msgstr ""
7593
 
7801
  msgid "No search result."
7802
  msgstr ""
7803
 
7804
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6383
7805
+ #: app/libraries/main.php:6430 app/libraries/notifications.php:1262
7806
+ #: app/libraries/render.php:532 app/libraries/render.php:854
7807
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
7808
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7809
  #: app/modules/next-event/details.php:154
7890
  "section and speaker widget section!"
7891
  msgstr ""
7892
 
7893
+ #: app/features/wc.php:103 app/libraries/notifications.php:1247
7894
+ #: app/libraries/notifications.php:1262 app/libraries/notifications.php:1273
7895
+ #: app/libraries/notifications.php:1542 app/libraries/notifications.php:1543
7896
  #, php-format
7897
  msgid "%s to %s"
7898
  msgstr ""
7912
  msgid "%s Price"
7913
  msgstr ""
7914
 
7915
+ #: app/libraries/book.php:706 app/libraries/book.php:797
7916
  msgid "Discount"
7917
  msgstr ""
7918
 
7919
+ #: app/libraries/book.php:884 app/modules/booking/default.php:426
7920
  #: app/modules/booking/default.php:531
7921
  msgid "Download Invoice"
7922
  msgstr ""
8046
  msgid "Timeline View"
8047
  msgstr ""
8048
 
8049
+ #: app/libraries/main.php:391 app/libraries/main.php:6355
8050
+ #: app/libraries/main.php:6409
8051
  msgid "SU"
8052
  msgstr ""
8053
 
8054
+ #: app/libraries/main.php:392 app/libraries/main.php:6356
8055
+ #: app/libraries/main.php:6410
8056
  msgid "MO"
8057
  msgstr ""
8058
 
8059
+ #: app/libraries/main.php:393 app/libraries/main.php:6357
8060
+ #: app/libraries/main.php:6411
8061
  msgid "TU"
8062
  msgstr ""
8063
 
8064
+ #: app/libraries/main.php:394 app/libraries/main.php:6358
8065
+ #: app/libraries/main.php:6412
8066
  msgid "WE"
8067
  msgstr ""
8068
 
8069
+ #: app/libraries/main.php:395 app/libraries/main.php:6359
8070
+ #: app/libraries/main.php:6413
8071
  msgid "TH"
8072
  msgstr ""
8073
 
8074
+ #: app/libraries/main.php:396 app/libraries/main.php:6360
8075
+ #: app/libraries/main.php:6414
8076
  msgid "FR"
8077
  msgstr ""
8078
 
8079
+ #: app/libraries/main.php:397 app/libraries/main.php:6361
8080
+ #: app/libraries/main.php:6415
8081
  msgid "SA"
8082
  msgstr ""
8083
 
8084
+ #: app/libraries/main.php:560
8085
+ msgid "Additional Locations"
8086
  msgstr ""
8087
 
8088
+ #: app/libraries/main.php:572
8089
+ msgid "Upload Field"
8090
  msgstr ""
8091
 
8092
  #: app/libraries/main.php:726
8399
  msgid "Free"
8400
  msgstr ""
8401
 
8402
+ #: app/libraries/main.php:4445 app/libraries/main.php:6690
8403
  msgid "M.E. Calender"
8404
  msgstr ""
8405
 
8406
+ #: app/libraries/main.php:4601
8407
  #, php-format
8408
  msgid "Copy of %s"
8409
  msgstr ""
8410
 
8411
+ #: app/libraries/main.php:5466
8412
  msgid "Booked an event."
8413
  msgstr ""
8414
 
8415
+ #: app/libraries/main.php:5507
8416
  #, php-format
8417
  msgid "%s booked %s event."
8418
  msgstr ""
8419
 
8420
+ #: app/libraries/main.php:6338 app/libraries/main.php:6392
8421
  msgid "Taxonomies"
8422
  msgstr ""
8423
 
8424
+ #: app/libraries/main.php:6340 app/libraries/main.php:6394
8425
  msgid "Category Plural Label"
8426
  msgstr ""
8427
 
8428
+ #: app/libraries/main.php:6341 app/libraries/main.php:6395
8429
  msgid "Category Singular Label"
8430
  msgstr ""
8431
 
8432
+ #: app/libraries/main.php:6342 app/libraries/main.php:6396
8433
  msgid "Label Plural Label"
8434
  msgstr ""
8435
 
8436
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
8437
  msgid "Label Singular Label"
8438
  msgstr ""
8439
 
8440
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
8441
  msgid "label"
8442
  msgstr ""
8443
 
8444
+ #: app/libraries/main.php:6344 app/libraries/main.php:6398
8445
  msgid "Location Plural Label"
8446
  msgstr ""
8447
 
8448
+ #: app/libraries/main.php:6345 app/libraries/main.php:6399
8449
  msgid "Location Singular Label"
8450
  msgstr ""
8451
 
8452
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
8453
  msgid "Organizer Plural Label"
8454
  msgstr ""
8455
 
8456
+ #: app/libraries/main.php:6347 app/libraries/main.php:6401
8457
  msgid "Organizer Singular Label"
8458
  msgstr ""
8459
 
8460
+ #: app/libraries/main.php:6348 app/libraries/main.php:6402
8461
  msgid "Speaker Plural Label"
8462
  msgstr ""
8463
 
8464
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
8465
  msgid "Speaker Singular Label"
8466
  msgstr ""
8467
 
8468
+ #: app/libraries/main.php:6355 app/libraries/main.php:6409
8469
  msgid "Sunday abbreviation"
8470
  msgstr ""
8471
 
8472
+ #: app/libraries/main.php:6356 app/libraries/main.php:6410
8473
  msgid "Monday abbreviation"
8474
  msgstr ""
8475
 
8476
+ #: app/libraries/main.php:6357 app/libraries/main.php:6411
8477
  msgid "Tuesday abbreviation"
8478
  msgstr ""
8479
 
8480
+ #: app/libraries/main.php:6358 app/libraries/main.php:6412
8481
  msgid "Wednesday abbreviation"
8482
  msgstr ""
8483
 
8484
+ #: app/libraries/main.php:6359 app/libraries/main.php:6413
8485
  msgid "Thursday abbreviation"
8486
  msgstr ""
8487
 
8488
+ #: app/libraries/main.php:6360 app/libraries/main.php:6414
8489
  msgid "Friday abbreviation"
8490
  msgstr ""
8491
 
8492
+ #: app/libraries/main.php:6361 app/libraries/main.php:6415
8493
  msgid "Saturday abbreviation"
8494
  msgstr ""
8495
 
8496
+ #: app/libraries/main.php:6365 app/libraries/main.php:6419
8497
  msgid "Others"
8498
  msgstr ""
8499
 
8500
+ #: app/libraries/main.php:6367
8501
  msgid "Booking Success Message"
8502
  msgstr ""
8503
 
8504
+ #: app/libraries/main.php:6367
8505
  msgid ""
8506
  "Thanks you for booking. Your tickets are booked, booking verification might "
8507
  "be needed, please check your email."
8508
  msgstr ""
8509
 
8510
+ #: app/libraries/main.php:6368
8511
  msgid "Booking Restriction Message 1"
8512
  msgstr ""
8513
 
8514
+ #: app/libraries/main.php:6368
8515
  #, php-format
8516
  msgid ""
8517
  "You selected %s tickets to book but maximum number of tikets per user is %s "
8518
  "tickets."
8519
  msgstr ""
8520
 
8521
+ #: app/libraries/main.php:6369
8522
  msgid "Booking Restriction Message 2"
8523
  msgstr ""
8524
 
8525
+ #: app/libraries/main.php:6369
8526
  #, php-format
8527
  msgid ""
8528
  "You booked %s tickets till now but maximum number of tickets per user is %s "
8529
  "tickets."
8530
  msgstr ""
8531
 
8532
+ #: app/libraries/main.php:6370
8533
  msgid "Booking IP Restriction Message"
8534
  msgstr ""
8535
 
8536
+ #: app/libraries/main.php:6370
8537
  #, php-format
8538
  msgid "Maximum allowed number of tickets that you can book is %s."
8539
  msgstr ""
8540
 
8541
+ #: app/libraries/main.php:6371
8542
  msgid "Booking Button"
8543
  msgstr ""
8544
 
8545
+ #: app/libraries/main.php:6371 app/libraries/skins.php:1268
8546
  #: app/modules/booking/steps/tickets.php:102
8547
  msgid "Book Event"
8548
  msgstr ""
8549
 
8550
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
8551
  #: app/widgets/single.php:131
8552
  msgid "Register Button"
8553
  msgstr ""
8554
 
8555
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
8556
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
8557
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
8558
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
8570
  msgid "REGISTER"
8571
  msgstr ""
8572
 
8573
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
8574
  msgid "View Detail Button"
8575
  msgstr ""
8576
 
8577
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
8578
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
8579
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
8580
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
8586
  msgid "View Detail"
8587
  msgstr ""
8588
 
8589
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
8590
  msgid "Event Detail Button"
8591
  msgstr ""
8592
 
8593
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
8594
  msgid "Event Detail"
8595
  msgstr ""
8596
 
8597
+ #: app/libraries/main.php:6379
8598
  msgid "Ticket (Singular)"
8599
  msgstr ""
8600
 
8601
+ #: app/libraries/main.php:6380
8602
  msgid "Tickets (Plural)"
8603
  msgstr ""
8604
 
8605
+ #: app/libraries/main.php:6538
8606
  msgid "EventON"
8607
  msgstr ""
8608
 
8609
+ #: app/libraries/main.php:6539
8610
  msgid "The Events Calendar"
8611
  msgstr ""
8612
 
8613
+ #: app/libraries/main.php:6540
8614
  msgid "Events Schedule WP Plugin"
8615
  msgstr ""
8616
 
8617
+ #: app/libraries/main.php:6541
8618
  msgid "Calendarize It"
8619
  msgstr ""
8620
 
8621
+ #: app/libraries/main.php:6542
8622
  msgid "Event Espresso"
8623
  msgstr ""
8624
 
8625
+ #: app/libraries/main.php:6543
8626
  msgid "Events Manager (Recurring)"
8627
  msgstr ""
8628
 
8629
+ #: app/libraries/main.php:6544
8630
  msgid "Events Manager (Single)"
8631
  msgstr ""
8632
 
8633
+ #: app/libraries/main.php:6545
8634
  msgid "WP Event Manager"
8635
  msgstr ""
8636
 
8637
+ #: app/libraries/main.php:6677
8638
  msgid "Waiting"
8639
  msgstr ""
8640
 
8641
+ #: app/libraries/main.php:6720
8642
  msgid "Sun"
8643
  msgstr ""
8644
 
8645
+ #: app/libraries/main.php:6720
8646
  msgid "Mon"
8647
  msgstr ""
8648
 
8649
+ #: app/libraries/main.php:6720
8650
  msgid "Tue"
8651
  msgstr ""
8652
 
8653
+ #: app/libraries/main.php:6720
8654
  msgid "Wed"
8655
  msgstr ""
8656
 
8657
+ #: app/libraries/main.php:6720
8658
  msgid "Thu"
8659
  msgstr ""
8660
 
8661
+ #: app/libraries/main.php:6720
8662
  msgid "Fri"
8663
  msgstr ""
8664
 
8665
+ #: app/libraries/main.php:6720
8666
  msgid "Sat"
8667
  msgstr ""
8668
 
8669
+ #: app/libraries/main.php:6886 app/libraries/render.php:80
8670
  #: app/libraries/render.php:445
8671
  msgid "Skin controller does not exist."
8672
  msgstr ""
8673
 
8674
+ #: app/libraries/main.php:7101
8675
  msgid "Sold Out"
8676
  msgstr ""
8677
 
8678
+ #: app/libraries/main.php:7112
8679
  msgid "Last Few Tickets"
8680
  msgstr ""
8681
 
8682
+ #: app/libraries/main.php:7443 app/libraries/main.php:7460
8683
  msgid "Minutes"
8684
  msgstr ""
8685
 
8686
+ #: app/libraries/main.php:7465
8687
  msgid "AM / PM"
8688
  msgstr ""
8689
 
8690
+ #: app/libraries/main.php:7466
8691
  msgid "AM"
8692
  msgstr ""
8693
 
8694
+ #: app/libraries/main.php:7467
8695
  msgid "PM"
8696
  msgstr ""
8697
 
8698
+ #: app/libraries/main.php:7475
8699
  msgid "Ongoing..."
8700
  msgstr ""
8701
 
8702
+ #: app/libraries/main.php:7476
8703
  msgid "Expired!"
8704
  msgstr ""
8705
 
8727
  msgid "A new booking is received."
8728
  msgstr ""
8729
 
8730
+ #: app/libraries/notifications.php:858
8731
  msgid "A new event is added."
8732
  msgstr ""
8733
 
8734
+ #: app/libraries/notifications.php:974
8735
  msgid "Your event is published."
8736
  msgstr ""
8737
 
8738
+ #: app/libraries/notifications.php:1124
8739
  msgid "Event is soldout!"
8740
  msgstr ""
8741
 
8742
+ #: app/libraries/notifications.php:1486
8743
  msgid "to"
8744
  msgstr ""
8745
 
8746
+ #: app/libraries/notifications.php:1507 app/modules/export/details.php:63
8747
  msgid "+ Add to Google Calendar"
8748
  msgstr ""
8749
 
8750
+ #: app/libraries/notifications.php:1508 app/modules/export/details.php:64
8751
  msgid "+ iCal / Outlook export"
8752
  msgstr ""
8753
 
8754
+ #: app/libraries/notifications.php:1557
8755
  #, php-format
8756
  msgid "+ %s to Google Calendar"
8757
  msgstr ""
8758
 
8759
+ #: app/libraries/notifications.php:1637
8760
  msgid "Yes"
8761
  msgstr ""
8762
 
8763
+ #: app/libraries/notifications.php:1637
8764
  msgid "No"
8765
  msgstr ""
8766
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2020-11-10 21:11+0330\n"
8
- "PO-Revision-Date: 2020-11-10 21:12+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -102,8 +102,8 @@ msgstr "Ajustes"
102
 
103
  #: app/features/contextual.php:62 app/features/events.php:1617
104
  #: app/features/events.php:2513 app/features/mec/booking.php:606
105
- #: app/features/mec/booking.php:854 app/features/mec/support.php:29
106
- #: app/libraries/main.php:572
107
  msgid "Booking Form"
108
  msgstr "Formulario de Reservas"
109
 
@@ -131,7 +131,7 @@ msgstr ""
131
  "iframe>"
132
 
133
  #: app/features/contextual.php:70 app/features/events.php:1625
134
- #: app/features/mec/booking.php:798 app/features/mec/support-page.php:115
135
  #: app/features/mec/support.php:36 app/libraries/main.php:573
136
  msgid "Payment Gateways"
137
  msgstr "Pasarelas de pago"
@@ -262,7 +262,7 @@ msgid "Google Recaptcha Options"
262
  msgstr "Opciones de Google Recaptcha"
263
 
264
  #: app/features/contextual.php:258 app/features/mec/single.php:248
265
- #: app/libraries/main.php:558
266
  msgid "Countdown Options"
267
  msgstr "Opciones de cuenta atrás"
268
 
@@ -281,20 +281,20 @@ msgid "Frontend Event Submission"
281
  msgstr "Presentación del evento Frontend"
282
 
283
  #: app/features/contextual.php:298 app/features/events.php:345
284
- #: app/libraries/main.php:559
285
  msgid "Exceptional Days"
286
  msgstr "Días excepcionales"
287
 
288
  #: app/features/contextual.php:308 app/features/events.php:315
289
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
290
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
291
- #: app/libraries/main.php:567 app/libraries/main.php:597
292
  #: app/libraries/main.php:684
293
  msgid "Booking"
294
  msgstr "Reserva"
295
 
296
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
297
- #: app/features/mec/booking.php:814 app/libraries/main.php:569
298
  msgid "Coupons"
299
  msgstr "Cupones"
300
 
@@ -352,8 +352,8 @@ msgid "File uploaded!"
352
  msgstr "¡La imagen está subida!"
353
 
354
  #: app/features/events.php:167 app/features/ix/export.php:34
355
- #: app/features/mec/dashboard.php:265 app/libraries/main.php:5551
356
- #: app/libraries/main.php:5571 app/skins/daily_view/tpl.php:82
357
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
358
  #: app/skins/yearly_view/tpl.php:71
359
  msgid "Events"
@@ -377,7 +377,7 @@ msgstr "Nuevo evento"
377
  msgid "Add New Event"
378
  msgstr "Añadir nuevo evento"
379
 
380
- #: app/features/events.php:171 app/features/ix.php:4391
381
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
382
  #: app/skins/map/tpl.php:88
383
  msgid "No events found!"
@@ -400,7 +400,7 @@ msgstr "Ver evento"
400
  msgid "No events found in Trash!"
401
  msgstr "No hay eventos en la papelera"
402
 
403
- #: app/features/events.php:192 app/features/events.php:3597
404
  #: app/features/mec/meta_boxes/display_options.php:1463
405
  #: app/features/mec/meta_boxes/search_form.php:31
406
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -415,19 +415,19 @@ msgstr "No hay eventos en la papelera"
415
  #: app/features/mec/meta_boxes/search_form.php:760
416
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
417
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
418
- #: app/features/search.php:68 app/libraries/main.php:6350
419
- #: app/libraries/main.php:6404 app/libraries/skins.php:934
420
  #: app/skins/single.php:1016 app/skins/single/default.php:219
421
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
422
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
423
  msgid "Category"
424
  msgstr "Categoría"
425
 
426
- #: app/features/events.php:193 app/features/events.php:3552
427
  #: app/features/fes/form.php:865 app/features/mec.php:467
428
  #: app/features/mec/meta_boxes/filter.php:69
429
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6349
430
- #: app/libraries/main.php:6403
431
  msgid "Categories"
432
  msgstr "Categorías"
433
 
@@ -538,9 +538,9 @@ msgstr "Localización"
538
  msgid "Links"
539
  msgstr "Enlace"
540
 
541
- #: app/features/events.php:349 app/features/events.php:3599
542
- #: app/features/events.php:3788 app/features/ix.php:3980
543
- #: app/features/ix.php:4022
544
  #: app/features/mec/meta_boxes/display_options.php:1466
545
  #: app/features/mec/meta_boxes/search_form.php:46
546
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -558,8 +558,8 @@ msgstr "Enlace"
558
  #: app/features/organizers.php:204 app/features/organizers.php:260
559
  #: app/features/organizers.php:262 app/features/organizers.php:271
560
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
561
- #: app/features/search.php:80 app/libraries/main.php:6356
562
- #: app/libraries/main.php:6410 app/libraries/skins.php:986
563
  #: app/skins/single.php:1264 app/skins/single/default.php:244
564
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
565
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
@@ -568,7 +568,7 @@ msgstr "Organizador"
568
 
569
  #: app/features/events.php:350 app/features/events.php:1165
570
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
571
- #: app/libraries/main.php:6387 app/libraries/main.php:6436
572
  #: app/skins/single.php:1042 app/skins/single/default.php:142
573
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
574
  #: app/skins/single/modern.php:237
@@ -590,17 +590,17 @@ msgid "Guest Data"
590
  msgstr "Datos del invitado"
591
 
592
  #: app/features/events.php:511 app/features/events.php:2499
593
- #: app/features/events.php:4111 app/features/fes.php:243
594
  #: app/features/fes/form.php:795 app/features/labels.php:178
595
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
596
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
597
- #: app/libraries/notifications.php:1611 app/modules/booking/steps/form.php:63
598
  msgid "Name"
599
  msgstr "Nombre"
600
 
601
  #: app/features/events.php:512 app/features/events.php:2508
602
  #: app/features/events.php:2575 app/features/events.php:2664
603
- #: app/features/events.php:4114 app/features/fes.php:243
604
  #: app/features/fes/form.php:791 app/features/login/login.php:5
605
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
606
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
@@ -608,7 +608,7 @@ msgstr "Nombre"
608
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
609
  #: app/features/speakers.php:204 app/libraries/main.php:1872
610
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
611
- #: app/libraries/notifications.php:1612 app/modules/booking/steps/form.php:72
612
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
613
  #: app/skins/single.php:1340 app/skins/single/default.php:261
614
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
@@ -627,9 +627,9 @@ msgid "Date and Time"
627
  msgstr "Día y hora"
628
 
629
  #: app/features/events.php:528 app/features/events.php:532
630
- #: app/features/events.php:3600 app/features/events.php:3788
631
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
632
- #: app/features/ix.php:3980 app/features/ix.php:4022
633
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
634
  #: app/features/mec/meta_boxes/display_options.php:52
635
  #: app/features/mec/meta_boxes/display_options.php:295
@@ -651,9 +651,9 @@ msgid "Start Date"
651
  msgstr "Día de inicio"
652
 
653
  #: app/features/events.php:547 app/features/events.php:551
654
- #: app/features/events.php:3601 app/features/events.php:3788
655
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
656
- #: app/features/ix.php:3980 app/features/ix.php:4022
657
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
658
  #: app/features/popup/event.php:92
659
  msgid "End Date"
@@ -709,7 +709,7 @@ msgstr ""
709
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
710
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
711
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
712
- #: app/features/mec/booking.php:830 app/features/mec/booking.php:856
713
  #: app/features/mec/dashboard.php:71
714
  #: app/features/mec/meta_boxes/display_options.php:85
715
  #: app/features/mec/meta_boxes/display_options.php:98
@@ -998,10 +998,10 @@ msgstr ""
998
  msgid "Show only one occurrence of this event"
999
  msgstr "Próxima aparición de otros eventos"
1000
 
1001
- #: app/features/events.php:1161 app/features/events.php:3788
1002
- #: app/features/fes/form.php:833 app/features/ix.php:3980
1003
- #: app/features/ix.php:4022 app/features/mec/settings.php:763
1004
- #: app/libraries/main.php:6386 app/libraries/main.php:6435
1005
  #: app/widgets/single.php:103
1006
  msgid "Event Cost"
1007
  msgstr "Coste del evento"
@@ -1035,7 +1035,7 @@ msgid ""
1035
  "multiple day occurrences."
1036
  msgstr ""
1037
 
1038
- #: app/features/events.php:1334 app/libraries/render.php:559
1039
  msgid "Day 1"
1040
  msgstr ""
1041
 
@@ -1057,9 +1057,9 @@ msgstr ""
1057
  #: app/features/events.php:1376 app/features/events.php:1415
1058
  #: app/features/events.php:1450 app/features/events.php:1482
1059
  #: app/features/events.php:1511 app/features/events.php:2371
1060
- #: app/features/events.php:2418 app/features/events.php:3596
1061
- #: app/features/events.php:3788 app/features/fes/form.php:256
1062
- #: app/features/ix.php:3980 app/features/ix.php:4022
1063
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1064
  #: app/features/mec/styling.php:130
1065
  msgid "Title"
@@ -1100,7 +1100,7 @@ msgstr "a 8:45"
1100
 
1101
  #: app/features/events.php:1419 app/features/events.php:1453
1102
  #: app/features/events.php:1514 app/features/events.php:1892
1103
- #: app/features/events.php:2074 app/features/events.php:3788
1104
  msgid "Description"
1105
  msgstr "Descripción"
1106
 
@@ -1108,8 +1108,8 @@ msgstr "Descripción"
1108
  #: app/features/events.php:1519 app/features/fes/form.php:959
1109
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1110
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1111
- #: app/libraries/main.php:577 app/libraries/main.php:6357
1112
- #: app/libraries/main.php:6411 app/modules/speakers/details.php:18
1113
  msgid "Speakers"
1114
  msgstr ""
1115
 
@@ -1126,7 +1126,7 @@ msgstr "Enlaces de eventos"
1126
 
1127
  #: app/features/events.php:1553 app/features/events.php:1561
1128
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1129
- #: app/libraries/main.php:6384 app/libraries/main.php:6433
1130
  msgid "Event Link"
1131
  msgstr "Enlace del evento"
1132
 
@@ -1153,8 +1153,8 @@ msgid "URL Shortener"
1153
  msgstr ""
1154
 
1155
  #: app/features/events.php:1571 app/features/events.php:1584
1156
- #: app/features/fes/form.php:817 app/libraries/main.php:6385
1157
- #: app/libraries/main.php:6434 app/skins/single.php:1126
1158
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1159
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1160
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
@@ -1194,7 +1194,7 @@ msgid "Total User Booking Limits"
1194
  msgstr "Límite total de reservas"
1195
 
1196
  #: app/features/events.php:1610 app/features/events.php:1835
1197
- #: app/libraries/book.php:63 app/libraries/main.php:6389
1198
  #: app/modules/booking/steps/tickets.php:137
1199
  #: app/modules/booking/steps/tickets.php:143
1200
  msgid "Tickets"
@@ -1209,7 +1209,7 @@ msgstr "Tasas"
1209
  msgid "Ticket Variations / Options"
1210
  msgstr ""
1211
 
1212
- #: app/features/events.php:1619 app/features/mec/booking.php:885
1213
  #: app/features/mec/support-page.php:118
1214
  #, fuzzy
1215
  #| msgid "Organizer Tel"
@@ -1307,8 +1307,8 @@ msgstr "Verificación por email"
1307
 
1308
  #: app/features/events.php:1763 app/features/events.php:1773
1309
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1310
- #: app/features/mec/booking.php:253 app/features/mec/booking.php:824
1311
- #: app/features/mec/booking.php:849
1312
  #: app/features/mec/meta_boxes/search_form.php:33
1313
  #: app/features/mec/meta_boxes/search_form.php:40
1314
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1414,8 +1414,8 @@ msgstr "Desactivado"
1414
 
1415
  #: app/features/events.php:1764 app/features/events.php:1774
1416
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1417
- #: app/features/mec/booking.php:254 app/features/mec/booking.php:823
1418
- #: app/features/mec/booking.php:850 app/features/mec/settings.php:106
1419
  msgid "Enabled"
1420
  msgstr "Habilitado"
1421
 
@@ -1471,8 +1471,8 @@ msgid "Ticket ID"
1471
  msgstr "Ticket"
1472
 
1473
  #: app/features/events.php:1855 app/features/events.php:2039
1474
- #: app/features/events.php:3788 app/features/fes.php:243
1475
- #: app/features/ix.php:3980 app/features/ix.php:4022
1476
  #: app/features/labels.php:177 app/features/locations.php:262
1477
  #: app/features/organizers.php:203 app/features/speakers.php:282
1478
  msgid "ID"
@@ -1483,14 +1483,14 @@ msgid "Ticket Name"
1483
  msgstr "Nombre del ticket"
1484
 
1485
  #: app/features/events.php:1863 app/features/events.php:2046
1486
- #: app/features/events.php:3788 app/features/ix.php:3980
1487
- #: app/features/ix.php:4022
1488
  msgid "Start Time"
1489
  msgstr "Hora de Inicio"
1490
 
1491
  #: app/features/events.php:1876 app/features/events.php:2059
1492
- #: app/features/events.php:3788 app/features/ix.php:3980
1493
- #: app/features/ix.php:4022
1494
  msgid "End Time"
1495
  msgstr "Hora de finalización"
1496
 
@@ -1811,32 +1811,32 @@ msgstr "Párrafo"
1811
  msgid "Fixed Fields"
1812
  msgstr "Campo obligatorio"
1813
 
1814
- #: app/features/events.php:3498 app/features/events.php:3516
1815
- #: app/features/events.php:3534 app/features/events.php:3552
1816
  #, php-format
1817
  msgid "Show all %s"
1818
  msgstr "Mostrar todos %s"
1819
 
1820
- #: app/features/events.php:3498
1821
  msgid "labels"
1822
  msgstr "etiquetas"
1823
 
1824
- #: app/features/events.php:3516
1825
  msgid "locations"
1826
  msgstr "ubicaciones"
1827
 
1828
- #: app/features/events.php:3534
1829
  msgid "organizers"
1830
  msgstr "organizadores"
1831
 
1832
- #: app/features/events.php:3568
1833
  #, fuzzy
1834
  #| msgid "Attendees Limit"
1835
  msgid "Attendees List"
1836
  msgstr "Límite de asistentes"
1837
 
1838
- #: app/features/events.php:3598 app/features/events.php:3788
1839
- #: app/features/ix.php:3980 app/features/ix.php:4022
1840
  #: app/features/locations.php:58 app/features/locations.php:263
1841
  #: app/features/locations.php:324 app/features/locations.php:326
1842
  #: app/features/locations.php:335
@@ -1855,8 +1855,8 @@ msgstr "Límite de asistentes"
1855
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1856
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1857
  #: app/features/popup/event.php:125 app/features/search.php:74
1858
- #: app/libraries/main.php:2641 app/libraries/main.php:6354
1859
- #: app/libraries/main.php:6408 app/libraries/skins.php:960
1860
  #: app/skins/single.php:943 app/skins/single.php:1386
1861
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1862
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
@@ -1864,48 +1864,48 @@ msgstr "Límite de asistentes"
1864
  msgid "Location"
1865
  msgstr "Localización"
1866
 
1867
- #: app/features/events.php:3603
1868
  msgid "Repeat"
1869
  msgstr "Repetir"
1870
 
1871
- #: app/features/events.php:3604
1872
  msgid "Author"
1873
  msgstr "Autor"
1874
 
1875
- #: app/features/events.php:3725 app/features/events.php:3726
1876
  #, fuzzy
1877
  #| msgid "iCal Export"
1878
  msgid "iCal / Outlook Export"
1879
  msgstr "Exportar iCal"
1880
 
1881
- #: app/features/events.php:3728 app/features/events.php:3729
1882
  msgid "CSV Export"
1883
  msgstr "Exportar CSV"
1884
 
1885
- #: app/features/events.php:3731 app/features/events.php:3732
1886
  msgid "MS Excel Export"
1887
  msgstr "Exportar Excel"
1888
 
1889
- #: app/features/events.php:3734 app/features/events.php:3735
1890
  msgid "XML Export"
1891
  msgstr "Exportación XML"
1892
 
1893
- #: app/features/events.php:3737 app/features/events.php:3738
1894
  msgid "JSON Export"
1895
  msgstr "Exportación JSON"
1896
 
1897
- #: app/features/events.php:3740 app/features/events.php:3741
1898
- #: app/features/events.php:3897
1899
  msgid "Duplicate"
1900
  msgstr "Duplicar"
1901
 
1902
- #: app/features/events.php:3788 app/features/ix.php:3980
1903
- #: app/features/ix.php:4022
1904
  msgid "Link"
1905
  msgstr "Enlace"
1906
 
1907
- #: app/features/events.php:3788 app/features/ix.php:3980
1908
- #: app/features/ix.php:4022 app/features/locations.php:110
1909
  #: app/features/locations.php:180 app/features/locations.php:264
1910
  #: app/features/mec/meta_boxes/search_form.php:74
1911
  #: app/features/mec/meta_boxes/search_form.php:144
@@ -1921,48 +1921,48 @@ msgstr "Enlace"
1921
  msgid "Address"
1922
  msgstr "Dirección"
1923
 
1924
- #: app/features/events.php:3788
1925
  #, php-format
1926
  msgid "%s Tel"
1927
  msgstr "%s Teléfono "
1928
 
1929
- #: app/features/events.php:3788
1930
  #, php-format
1931
  msgid "%s Email"
1932
  msgstr "%s Correo electrónico"
1933
 
1934
- #: app/features/events.php:3788 app/features/fes/form.php:850
1935
  #: app/features/mec/settings.php:769
1936
  msgid "Featured Image"
1937
  msgstr "Imagen destacada"
1938
 
1939
- #: app/features/events.php:4117 app/features/fes.php:243
1940
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1941
- #: app/libraries/main.php:6388
1942
  msgid "Ticket"
1943
  msgstr "Ticket"
1944
 
1945
- #: app/features/events.php:4120 app/features/profile/profile.php:186
1946
  msgid "Variations"
1947
  msgstr ""
1948
 
1949
- #: app/features/events.php:4135 app/features/fes.php:316
1950
  msgid "Unknown"
1951
  msgstr ""
1952
 
1953
- #: app/features/events.php:4161
1954
  msgid ""
1955
  "If you want to send an email, first select your attendees and then click in "
1956
  "the button below, please."
1957
  msgstr ""
1958
 
1959
- #: app/features/events.php:4161 app/features/mec/report.php:58
1960
  #, fuzzy
1961
  #| msgid "Organizer Email"
1962
  msgid "Send Email"
1963
  msgstr "Correo electrónico del organizador"
1964
 
1965
- #: app/features/events.php:4165
1966
  #, fuzzy
1967
  #| msgid "Attendees Form"
1968
  msgid "No Attendees Found!"
@@ -2205,8 +2205,8 @@ msgstr "Eliminar imagen"
2205
  #: app/features/fes/form.php:891 app/features/labels.php:61
2206
  #: app/features/labels.php:221 app/features/mec.php:468
2207
  #: app/features/mec/meta_boxes/filter.php:72
2208
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6351
2209
- #: app/libraries/main.php:6405 app/skins/single.php:1156
2210
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2211
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2212
  msgid "Labels"
@@ -2294,27 +2294,27 @@ msgstr ""
2294
  "¡Ha ocurrido un error durante la subida del archivo! ¡Por favor, revisa los "
2295
  "permisos!"
2296
 
2297
- #: app/features/ix.php:265 app/libraries/main.php:6636
2298
- #: app/libraries/main.php:6656
2299
  msgid "Confirmed"
2300
  msgstr ""
2301
 
2302
- #: app/features/ix.php:266 app/libraries/main.php:6637
2303
- #: app/libraries/main.php:6664
2304
  msgid "Rejected"
2305
  msgstr ""
2306
 
2307
- #: app/features/ix.php:270 app/features/mec/booking.php:992
2308
- #: app/features/mec/booking.php:1014 app/features/mec/modules.php:431
2309
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2310
- #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1313
2311
- #: app/features/mec/settings.php:1335 app/features/mec/single.php:446
2312
- #: app/features/mec/single.php:468 app/libraries/main.php:6684
2313
  msgid "Verified"
2314
  msgstr "Verificado"
2315
 
2316
  #: app/features/ix.php:271 app/features/labels.php:118
2317
- #: app/features/labels.php:143 app/libraries/main.php:6685
2318
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2319
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2320
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
@@ -2350,45 +2350,45 @@ msgstr "El tipo de archivo debería ser XML o ICS."
2350
  msgid "The events are imported successfully!"
2351
  msgstr "¡Los eventos se importaron correctamente!"
2352
 
2353
- #: app/features/ix.php:1166
2354
  msgid "Third Party plugin is not installed and activated!"
2355
  msgstr "¡Plugin de terceros no esta instalado ni activado!"
2356
 
2357
- #: app/features/ix.php:1190
2358
  msgid "Third Party plugin is invalid!"
2359
  msgstr "¡El Plugin de terceros no es válido!"
2360
 
2361
- #: app/features/ix.php:3165 app/features/ix.php:3223
2362
  #, fuzzy
2363
  #| msgid "Both of API key and Calendar ID are required!"
2364
  msgid "API key and Calendar ID are required!"
2365
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
2366
 
2367
- #: app/features/ix.php:3218 app/features/ix.php:3663 app/features/ix.php:4398
2368
  #, fuzzy
2369
  #| msgid "Please select some events to import!"
2370
  msgid "Please select events to import!"
2371
  msgstr "Por favor, ¡selecciona algunos eventos para importar!"
2372
 
2373
- #: app/features/ix.php:3605 app/features/ix.php:3668
2374
  #, fuzzy
2375
  #| msgid "Both of API key and Calendar ID are required!"
2376
  msgid "API key and Group URL are required!"
2377
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
2378
 
2379
- #: app/features/ix.php:3907
2380
  msgid "Check at Meetup"
2381
  msgstr ""
2382
 
2383
- #: app/features/ix.php:3980 app/features/ix.php:4022
2384
  msgid "Organizer Tel"
2385
  msgstr "Teléfono del Organizador"
2386
 
2387
- #: app/features/ix.php:3980 app/features/ix.php:4022
2388
  msgid "Organizer Email"
2389
  msgstr "Correo electrónico del organizador"
2390
 
2391
- #: app/features/ix.php:4098
2392
  #, fuzzy
2393
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2394
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
@@ -2396,17 +2396,17 @@ msgstr ""
2396
  "Todos los ID de cliente, secreto de cliente y ID de calendario son "
2397
  "necesarios."
2398
 
2399
- #: app/features/ix.php:4121
2400
  #, fuzzy, php-format
2401
  #| msgid "All seems good! Please click %s for authenticating your app."
2402
  msgid "All seems good! Please click %s to authenticate your app."
2403
  msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
2404
 
2405
- #: app/features/ix.php:4121 app/features/mec/settings.php:1236
2406
  msgid "here"
2407
  msgstr ""
2408
 
2409
- #: app/features/ix.php:4175
2410
  #, fuzzy
2411
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2412
  msgid "Client App, Client Secret, and Calendar ID are all required!"
@@ -2414,28 +2414,28 @@ msgstr ""
2414
  "¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
2415
  "son obligatorios!"
2416
 
2417
- #: app/features/ix.php:4320
2418
  #, fuzzy, php-format
2419
  #| msgid "%s events added to Google Calendar successfully."
2420
  msgid "%s events added to Google Calendar with success."
2421
  msgstr "%s eventos añadidos con éxito a Google Calendar."
2422
 
2423
- #: app/features/ix.php:4321
2424
  #, fuzzy, php-format
2425
  #| msgid "%s previously added events get updated."
2426
  msgid "%s Updated previously added events."
2427
  msgstr "%s eventos añadidos previamente se actualizan."
2428
 
2429
- #: app/features/ix.php:4322
2430
  #, php-format
2431
  msgid "%s events failed to add for following reasons: %s"
2432
  msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
2433
 
2434
- #: app/features/ix.php:4354
2435
  msgid "Please insert your Facebook page's link."
2436
  msgstr ""
2437
 
2438
- #: app/features/ix.php:4365 app/features/ix.php:4407
2439
  #, fuzzy
2440
  #| msgid ""
2441
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2447,7 +2447,7 @@ msgstr ""
2447
  "No pudimos reconocer tu página de Facebook. Por favor, verifícala y escribe "
2448
  "un nuevo enlace de página de Facebook."
2449
 
2450
- #: app/features/ix.php:4402
2451
  msgid "Please insert your facebook page's link."
2452
  msgstr "Por favor, inserta el enlace de tu página de Facebook."
2453
 
@@ -2618,9 +2618,9 @@ msgstr "Toggle"
2618
  msgid "Add to Google Calendar"
2619
  msgstr "Añadir a Google Calendar"
2620
 
2621
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:994
2622
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2623
- #: app/features/mec/settings.php:1315 app/features/mec/single.php:448
2624
  msgid "Checking ..."
2625
  msgstr "Verificando…"
2626
 
@@ -3112,8 +3112,8 @@ msgstr "Evento %s"
3112
 
3113
  #: app/features/locations.php:59 app/features/mec.php:469
3114
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
3115
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6353
3116
- #: app/libraries/main.php:6407
3117
  msgid "Locations"
3118
  msgstr "Lugar"
3119
 
@@ -3229,8 +3229,8 @@ msgstr "Elegir imagen"
3229
  msgid "Don't show map in single event page"
3230
  msgstr "No mostrar el mapa en la página del detalle del evento"
3231
 
3232
- #: app/features/locations.php:398 app/libraries/main.php:6391
3233
- #: app/libraries/main.php:6438
3234
  #, fuzzy
3235
  #| msgid "Locations"
3236
  msgid "Other Locations"
@@ -3314,7 +3314,7 @@ msgstr "Soporte"
3314
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3315
  #: app/features/mec/meta_boxes/filter.php:71
3316
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3317
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
3318
  msgid "Organizers"
3319
  msgstr "Organizadores"
3320
 
@@ -3521,9 +3521,9 @@ msgid "Search..."
3521
  msgstr "Buscar %s"
3522
 
3523
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3524
- #: app/features/mec/booking.php:910 app/features/mec/booking.php:919
3525
- #: app/features/mec/booking.php:929 app/features/mec/booking.php:1011
3526
- #: app/features/mec/booking.php:1025 app/features/mec/messages.php:15
3527
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3528
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3529
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
@@ -3533,8 +3533,8 @@ msgstr "Buscar %s"
3533
  #: app/features/mec/notifications.php:1218
3534
  #: app/features/mec/notifications.php:1324
3535
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3536
- #: app/features/mec/settings.php:1264 app/features/mec/settings.php:1274
3537
- #: app/features/mec/settings.php:1332 app/features/mec/settings.php:1346
3538
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3539
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3540
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
@@ -3838,7 +3838,7 @@ msgstr "Confirmación automática para reservas pagas"
3838
  msgid "Send confirmation email in auto confirmation mode"
3839
  msgstr ""
3840
 
3841
- #: app/features/mec/booking.php:412 app/libraries/main.php:568
3842
  #, fuzzy
3843
  #| msgid "Booking Price"
3844
  msgid "Booking Shortcode"
@@ -3871,8 +3871,8 @@ msgid ""
3871
  "new menu on the Dashboard > Booking"
3872
  msgstr ""
3873
 
3874
- #: app/features/mec/booking.php:446 app/features/mec/booking.php:816
3875
- #: app/libraries/main.php:570
3876
  msgid "Taxes / Fees"
3877
  msgstr "Impuestos/Tasas"
3878
 
@@ -3884,7 +3884,7 @@ msgstr "Activar módulo de Impuestos/Tasas"
3884
  msgid "Add Fee"
3885
  msgstr "Nueva tasa"
3886
 
3887
- #: app/features/mec/booking.php:523 app/libraries/main.php:571
3888
  msgid "Ticket Variations & Options"
3889
  msgstr ""
3890
 
@@ -3896,11 +3896,39 @@ msgstr ""
3896
  msgid "Add Variation / Option"
3897
  msgstr ""
3898
 
3899
- #: app/features/mec/booking.php:806
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3900
  msgid "Use WooCommerce as Payment System"
3901
  msgstr ""
3902
 
3903
- #: app/features/mec/booking.php:808
3904
  msgid ""
3905
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3906
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -3908,112 +3936,112 @@ msgid ""
3908
  "fields etc, you need to configure WooCommerce on your website."
3909
  msgstr ""
3910
 
3911
- #: app/features/mec/booking.php:810
3912
  msgid ""
3913
  "You cannot use following MEC features so you should use WooCommerc and its "
3914
  "addons if you need them."
3915
  msgstr ""
3916
 
3917
- #: app/features/mec/booking.php:812
3918
  #, fuzzy
3919
  #| msgid "Payment Gateways"
3920
  msgid "Payment gateways"
3921
  msgstr "Pasarelas de pago"
3922
 
3923
- #: app/features/mec/booking.php:813
3924
  msgid "Price per dates of tickets"
3925
  msgstr ""
3926
 
3927
- #: app/features/mec/booking.php:815
3928
  #, fuzzy
3929
  #| msgid "Ticket time"
3930
  msgid "Ticket variations"
3931
  msgstr "Hora de la entrada"
3932
 
3933
- #: app/features/mec/booking.php:820
3934
  msgid "Automatically complete WooCommerce orders"
3935
  msgstr ""
3936
 
3937
- #: app/features/mec/booking.php:828
3938
  msgid "Auto WooCommerce orders"
3939
  msgstr ""
3940
 
3941
- #: app/features/mec/booking.php:829
3942
  msgid "It applies only to the orders that are related to MEC."
3943
  msgstr ""
3944
 
3945
- #: app/features/mec/booking.php:837
3946
  #, fuzzy
3947
  #| msgid "Add to Google Calendar"
3948
  msgid "After Add to Cart"
3949
  msgstr "Añadir a Google Calendar"
3950
 
3951
- #: app/features/mec/booking.php:840
3952
  #, fuzzy
3953
  #| msgid "Get Directions"
3954
  msgid "Redirect to Cart"
3955
  msgstr "Cómo llegar"
3956
 
3957
- #: app/features/mec/booking.php:841
3958
  #, fuzzy
3959
  #| msgid "Get Directions"
3960
  msgid "Redirect to Checkout"
3961
  msgstr "Cómo llegar"
3962
 
3963
- #: app/features/mec/booking.php:846
3964
  #, fuzzy
3965
  #| msgid "Booking Form"
3966
  msgid "MEC Booking Form"
3967
  msgstr "Formulario de Reservas"
3968
 
3969
- #: app/features/mec/booking.php:855
3970
  msgid ""
3971
  "If enabled then users should fill the booking form in MEC and then they will "
3972
  "be redirected to checkout."
3973
  msgstr ""
3974
 
3975
- #: app/features/mec/booking.php:881
3976
  msgid "Enable Organizer Payment Module"
3977
  msgstr ""
3978
 
3979
- #: app/features/mec/booking.php:886
3980
  msgid ""
3981
  "By enabling this module, organizers are able to insert their own payment "
3982
  "credentials for enabled gateways per event and receive the payments directly!"
3983
  msgstr ""
3984
 
3985
- #: app/features/mec/booking.php:896
3986
  msgid "Disable / Enable payment gateways per event"
3987
  msgstr ""
3988
 
3989
- #: app/features/mec/booking.php:900
3990
  #, fuzzy
3991
  #| msgid "Payment Gateways"
3992
  msgid "Payment Gateways Per Event"
3993
  msgstr "Pasarelas de pago"
3994
 
3995
- #: app/features/mec/booking.php:901
3996
  msgid ""
3997
  "By enabling this module, users are able to disable / enable payment gateways "
3998
  "per event"
3999
  msgstr ""
4000
 
4001
- #: app/features/mec/booking.php:989 app/features/mec/messages.php:78
4002
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
4003
- #: app/features/mec/settings.php:1310 app/features/mec/single.php:443
4004
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
4005
  msgid "Saved"
4006
  msgstr "Guardado"
4007
 
4008
- #: app/features/mec/booking.php:990 app/features/mec/messages.php:79
4009
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
4010
- #: app/features/mec/settings.php:1311 app/features/mec/single.php:444
4011
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
4012
  msgid "Settings Saved!"
4013
  msgstr "¡Ajustes guardados!"
4014
 
4015
- #: app/features/mec/booking.php:1016 app/features/mec/modules.php:455
4016
- #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1337
4017
  #: app/features/mec/single.php:470
4018
  msgid "Please Refresh Page"
4019
  msgstr "Por favor, actualiza la página"
@@ -5260,7 +5288,7 @@ msgstr "Mostrar formulario búsqueda"
5260
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5261
  #: app/features/mec/single.php:386 app/features/search.php:86
5262
  #: app/features/speakers.php:60 app/features/speakers.php:283
5263
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
5264
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5265
  msgid "Speaker"
5266
  msgstr ""
@@ -6472,8 +6500,8 @@ msgstr ""
6472
  msgid "only once per hour"
6473
  msgstr "una vez al día"
6474
 
6475
- #: app/features/mec/notifications.php:950 app/libraries/main.php:7446
6476
- #: app/libraries/main.php:7463
6477
  #, fuzzy
6478
  #| msgid "hours"
6479
  msgid "Hours"
@@ -6759,7 +6787,7 @@ msgid "You can enable/disable Schema scripts"
6759
  msgstr ""
6760
 
6761
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6762
- #: app/libraries/main.php:6362 app/libraries/main.php:6416
6763
  msgid "Weekdays"
6764
  msgstr "Días de la semana"
6765
 
@@ -7115,8 +7143,8 @@ msgstr "En el inicio del evento"
7115
  msgid "Let WordPress decide"
7116
  msgstr "Dirección"
7117
 
7118
- #: app/features/mec/settings.php:660 app/libraries/main.php:6638
7119
- #: app/libraries/main.php:6660
7120
  msgid "Pending"
7121
  msgstr ""
7122
 
@@ -7276,8 +7304,8 @@ msgstr "Campo obligatorio"
7276
  msgid "Event Description"
7277
  msgstr "Descripción"
7278
 
7279
- #: app/features/mec/settings.php:930 app/libraries/main.php:6385
7280
- #: app/libraries/main.php:6434
7281
  msgid "More Info Link"
7282
  msgstr "Enlace a Más Información"
7283
 
@@ -7473,35 +7501,7 @@ msgstr "¡Plugin de terceros no esta instalado ni activado!"
7473
  msgid "More information about the list ID can be found %s."
7474
  msgstr ""
7475
 
7476
- #: app/features/mec/settings.php:1241
7477
- #, fuzzy
7478
- #| msgid "Filter Options"
7479
- msgid "Upload Field Options"
7480
- msgstr "Opciones de filtros"
7481
-
7482
- #: app/features/mec/settings.php:1243
7483
- msgid "Mime types"
7484
- msgstr ""
7485
-
7486
- #: app/features/mec/settings.php:1247
7487
- msgid "Split mime types with \",\"."
7488
- msgstr ""
7489
-
7490
- #: app/features/mec/settings.php:1247
7491
- msgid "Default: jpeg,jpg,png,pdf"
7492
- msgstr ""
7493
-
7494
- #: app/features/mec/settings.php:1250
7495
- #, fuzzy
7496
- #| msgid "Maximum Dates"
7497
- msgid "Maximum file size"
7498
- msgstr "Fechas máximas"
7499
-
7500
- #: app/features/mec/settings.php:1254
7501
- msgid "The unit is Megabyte \"MB\""
7502
- msgstr ""
7503
-
7504
- #: app/features/mec/single.php:38 app/libraries/main.php:556
7505
  #, fuzzy
7506
  #| msgid "Single Event Style"
7507
  msgid "Single Event Page"
@@ -7619,7 +7619,7 @@ msgid ""
7619
  "the settings page.' tab"
7620
  msgstr ""
7621
 
7622
- #: app/features/mec/single.php:162 app/libraries/main.php:557
7623
  #, fuzzy
7624
  #| msgid "Custom Styles"
7625
  msgid "Custom Fields"
@@ -7673,7 +7673,7 @@ msgstr ""
7673
  "Usar esta opción permite incluir o excluir ciertos días para la ocurrencia "
7674
  "de eventos."
7675
 
7676
- #: app/features/mec/single.php:286 app/libraries/main.php:560
7677
  msgid "Additional Organizers"
7678
  msgstr "Organizadores adicionales"
7679
 
@@ -7707,7 +7707,7 @@ msgstr ""
7707
  "Mostrar la opción de organizadores adicionales en la pagina de añadir "
7708
  "eventos y la pagina de evento individual."
7709
 
7710
- #: app/features/mec/single.php:318 app/libraries/main.php:562
7711
  #: app/skins/single.php:170 app/skins/single.php:435
7712
  #, fuzzy
7713
  #| msgid "featured event"
@@ -7724,7 +7724,7 @@ msgstr ""
7724
  msgid "Select Taxonomies:"
7725
  msgstr "Taxonomías"
7726
 
7727
- #: app/features/mec/single.php:360 app/libraries/main.php:563
7728
  #, fuzzy
7729
  #| msgid "Next/Previous Buttons"
7730
  msgid "Next / Previous Events"
@@ -8564,8 +8564,8 @@ msgstr "ej. user@yoursite.com"
8564
  msgid "eg. https://webnus.net"
8565
  msgstr "ej. https://webnus.net"
8566
 
8567
- #: app/features/organizers.php:312 app/libraries/main.php:6390
8568
- #: app/libraries/main.php:6437 app/skins/single.php:1314
8569
  msgid "Other Organizers"
8570
  msgstr "En común"
8571
 
@@ -8828,9 +8828,9 @@ msgstr "Buscar %s"
8828
  msgid "No search result."
8829
  msgstr ""
8830
 
8831
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6392
8832
- #: app/libraries/main.php:6439 app/libraries/notifications.php:1256
8833
- #: app/libraries/render.php:531 app/libraries/render.php:853
8834
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8835
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8836
  #: app/modules/next-event/details.php:154
@@ -8921,9 +8921,9 @@ msgid ""
8921
  "section and speaker widget section!"
8922
  msgstr ""
8923
 
8924
- #: app/features/wc.php:103 app/libraries/notifications.php:1241
8925
- #: app/libraries/notifications.php:1256 app/libraries/notifications.php:1267
8926
- #: app/libraries/notifications.php:1536 app/libraries/notifications.php:1537
8927
  #, php-format
8928
  msgid "%s to %s"
8929
  msgstr ""
@@ -8943,11 +8943,11 @@ msgstr ""
8943
  msgid "%s Price"
8944
  msgstr "%s Precio"
8945
 
8946
- #: app/libraries/book.php:703 app/libraries/book.php:794
8947
  msgid "Discount"
8948
  msgstr "Descuento"
8949
 
8950
- #: app/libraries/book.php:881 app/modules/booking/default.php:426
8951
  #: app/modules/booking/default.php:531
8952
  msgid "Download Invoice"
8953
  msgstr "Descargar factura"
@@ -9079,53 +9079,53 @@ msgstr "Vista del rotativo"
9079
  msgid "Timeline View"
9080
  msgstr "Vista de Horario"
9081
 
9082
- #: app/libraries/main.php:391 app/libraries/main.php:6364
9083
- #: app/libraries/main.php:6418
9084
  msgid "SU"
9085
  msgstr "DO"
9086
 
9087
- #: app/libraries/main.php:392 app/libraries/main.php:6365
9088
- #: app/libraries/main.php:6419
9089
  msgid "MO"
9090
  msgstr "LU"
9091
 
9092
- #: app/libraries/main.php:393 app/libraries/main.php:6366
9093
- #: app/libraries/main.php:6420
9094
  msgid "TU"
9095
  msgstr "MA"
9096
 
9097
- #: app/libraries/main.php:394 app/libraries/main.php:6367
9098
- #: app/libraries/main.php:6421
9099
  msgid "WE"
9100
  msgstr "MI"
9101
 
9102
- #: app/libraries/main.php:395 app/libraries/main.php:6368
9103
- #: app/libraries/main.php:6422
9104
  msgid "TH"
9105
  msgstr "JU"
9106
 
9107
- #: app/libraries/main.php:396 app/libraries/main.php:6369
9108
- #: app/libraries/main.php:6423
9109
  msgid "FR"
9110
  msgstr "VI"
9111
 
9112
- #: app/libraries/main.php:397 app/libraries/main.php:6370
9113
- #: app/libraries/main.php:6424
9114
  msgid "SA"
9115
  msgstr "SA"
9116
 
9117
- #: app/libraries/main.php:552
9118
- #, fuzzy
9119
- #| msgid "Upload/Add image"
9120
- msgid "Upload Field"
9121
- msgstr "Subir/Añadir imagen"
9122
-
9123
- #: app/libraries/main.php:561
9124
  #, fuzzy
9125
  #| msgid "Additional Organizers"
9126
  msgid "Additional Locations"
9127
  msgstr "Organizadores adicionales"
9128
 
 
 
 
 
 
 
9129
  #: app/libraries/main.php:726
9130
  #, fuzzy
9131
  #| msgid "Social Module"
@@ -9474,111 +9474,111 @@ msgstr "Introduce una etiqueta para esta opción"
9474
  msgid "Free"
9475
  msgstr "Gratis"
9476
 
9477
- #: app/libraries/main.php:4447 app/libraries/main.php:6699
9478
  #, fuzzy
9479
  #| msgid "M.E. Calendar"
9480
  msgid "M.E. Calender"
9481
  msgstr "M.E. Calendario"
9482
 
9483
- #: app/libraries/main.php:4603
9484
  #, php-format
9485
  msgid "Copy of %s"
9486
  msgstr "Copia de %s"
9487
 
9488
- #: app/libraries/main.php:5475
9489
  msgid "Booked an event."
9490
  msgstr "Has reservado para un evento."
9491
 
9492
- #: app/libraries/main.php:5516
9493
  #, php-format
9494
  msgid "%s booked %s event."
9495
  msgstr "%s reservado %s evento."
9496
 
9497
- #: app/libraries/main.php:6347 app/libraries/main.php:6401
9498
  msgid "Taxonomies"
9499
  msgstr "Taxonomías"
9500
 
9501
- #: app/libraries/main.php:6349 app/libraries/main.php:6403
9502
  msgid "Category Plural Label"
9503
  msgstr "Categoría Etiqueta plural"
9504
 
9505
- #: app/libraries/main.php:6350 app/libraries/main.php:6404
9506
  msgid "Category Singular Label"
9507
  msgstr "Categoría Etiqueta Singular"
9508
 
9509
- #: app/libraries/main.php:6351 app/libraries/main.php:6405
9510
  msgid "Label Plural Label"
9511
  msgstr "Etiqueta plural"
9512
 
9513
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9514
  msgid "Label Singular Label"
9515
  msgstr "Etiqueta singular de la etiqueta"
9516
 
9517
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9518
  msgid "label"
9519
  msgstr "etiqueta"
9520
 
9521
- #: app/libraries/main.php:6353 app/libraries/main.php:6407
9522
  msgid "Location Plural Label"
9523
  msgstr "Ubicación Etiqueta plural"
9524
 
9525
- #: app/libraries/main.php:6354 app/libraries/main.php:6408
9526
  msgid "Location Singular Label"
9527
  msgstr "Etiqueta de ubicación en singular"
9528
 
9529
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
9530
  msgid "Organizer Plural Label"
9531
  msgstr "Etiqueta del organizador en plural"
9532
 
9533
- #: app/libraries/main.php:6356 app/libraries/main.php:6410
9534
  msgid "Organizer Singular Label"
9535
  msgstr "Etiqueta Singular del Organizador"
9536
 
9537
- #: app/libraries/main.php:6357 app/libraries/main.php:6411
9538
  msgid "Speaker Plural Label"
9539
  msgstr ""
9540
 
9541
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
9542
  msgid "Speaker Singular Label"
9543
  msgstr ""
9544
 
9545
- #: app/libraries/main.php:6364 app/libraries/main.php:6418
9546
  msgid "Sunday abbreviation"
9547
  msgstr "Abreviatura de Domingo"
9548
 
9549
- #: app/libraries/main.php:6365 app/libraries/main.php:6419
9550
  msgid "Monday abbreviation"
9551
  msgstr "Abreviatura de Lunes"
9552
 
9553
- #: app/libraries/main.php:6366 app/libraries/main.php:6420
9554
  msgid "Tuesday abbreviation"
9555
  msgstr "Abreviatura de Martes"
9556
 
9557
- #: app/libraries/main.php:6367 app/libraries/main.php:6421
9558
  msgid "Wednesday abbreviation"
9559
  msgstr "Abreviatura de Miércoles "
9560
 
9561
- #: app/libraries/main.php:6368 app/libraries/main.php:6422
9562
  msgid "Thursday abbreviation"
9563
  msgstr "Abreviatura de Jueves"
9564
 
9565
- #: app/libraries/main.php:6369 app/libraries/main.php:6423
9566
  msgid "Friday abbreviation"
9567
  msgstr "Abreviatura de Viernes"
9568
 
9569
- #: app/libraries/main.php:6370 app/libraries/main.php:6424
9570
  msgid "Saturday abbreviation"
9571
  msgstr "Abreviatura de Sábado "
9572
 
9573
- #: app/libraries/main.php:6374 app/libraries/main.php:6428
9574
  msgid "Others"
9575
  msgstr "Otros"
9576
 
9577
- #: app/libraries/main.php:6376
9578
  msgid "Booking Success Message"
9579
  msgstr "Mensaje de reserva correcta"
9580
 
9581
- #: app/libraries/main.php:6376
9582
  #, fuzzy
9583
  #| msgid ""
9584
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -9590,60 +9590,60 @@ msgstr ""
9590
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
9591
  "una verificación, por favor consulta tu correo."
9592
 
9593
- #: app/libraries/main.php:6377
9594
  #, fuzzy
9595
  #| msgid "Booking Success Message"
9596
  msgid "Booking Restriction Message 1"
9597
  msgstr "Mensaje de reserva correcta"
9598
 
9599
- #: app/libraries/main.php:6377
9600
  #, php-format
9601
  msgid ""
9602
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9603
  "tickets."
9604
  msgstr ""
9605
 
9606
- #: app/libraries/main.php:6378
9607
  #, fuzzy
9608
  #| msgid "Booking Success Message"
9609
  msgid "Booking Restriction Message 2"
9610
  msgstr "Mensaje de reserva correcta"
9611
 
9612
- #: app/libraries/main.php:6378
9613
  #, php-format
9614
  msgid ""
9615
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9616
  "tickets."
9617
  msgstr ""
9618
 
9619
- #: app/libraries/main.php:6379
9620
  #, fuzzy
9621
  #| msgid "Booking Success Message"
9622
  msgid "Booking IP Restriction Message"
9623
  msgstr "Mensaje de reserva correcta"
9624
 
9625
- #: app/libraries/main.php:6379
9626
  #, php-format
9627
  msgid "Maximum allowed number of tickets that you can book is %s."
9628
  msgstr ""
9629
 
9630
- #: app/libraries/main.php:6380
9631
  #, fuzzy
9632
  #| msgid "Booking Options"
9633
  msgid "Booking Button"
9634
  msgstr "Opciones de reserva"
9635
 
9636
- #: app/libraries/main.php:6380 app/libraries/skins.php:1259
9637
  #: app/modules/booking/steps/tickets.php:102
9638
  msgid "Book Event"
9639
  msgstr "Reservar evento"
9640
 
9641
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9642
  #: app/widgets/single.php:131
9643
  msgid "Register Button"
9644
  msgstr "Botón de registro"
9645
 
9646
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9647
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9648
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9649
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
@@ -9661,11 +9661,11 @@ msgstr "Botón de registro"
9661
  msgid "REGISTER"
9662
  msgstr "REGISTRO"
9663
 
9664
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9665
  msgid "View Detail Button"
9666
  msgstr "Ver detalle del botón"
9667
 
9668
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9669
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9670
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9671
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
@@ -9677,144 +9677,144 @@ msgstr "Ver detalle del botón"
9677
  msgid "View Detail"
9678
  msgstr "Ver detalle"
9679
 
9680
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9681
  msgid "Event Detail Button"
9682
  msgstr "Botón de detalle del evento"
9683
 
9684
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9685
  msgid "Event Detail"
9686
  msgstr "Detalle del evento"
9687
 
9688
- #: app/libraries/main.php:6388
9689
  msgid "Ticket (Singular)"
9690
  msgstr "Entrada (Singular)"
9691
 
9692
- #: app/libraries/main.php:6389
9693
  msgid "Tickets (Plural)"
9694
  msgstr "Entradas (Plural)"
9695
 
9696
- #: app/libraries/main.php:6547
9697
  msgid "EventON"
9698
  msgstr "EventON"
9699
 
9700
- #: app/libraries/main.php:6548
9701
  msgid "The Events Calendar"
9702
  msgstr "The Events Calendar"
9703
 
9704
- #: app/libraries/main.php:6549
9705
  msgid "Events Schedule WP Plugin"
9706
  msgstr "Events Schedule WP Plugin"
9707
 
9708
- #: app/libraries/main.php:6550
9709
  msgid "Calendarize It"
9710
  msgstr "Ponlo al calendario"
9711
 
9712
- #: app/libraries/main.php:6551
9713
  #, fuzzy
9714
  #| msgid "Event %s"
9715
  msgid "Event Espresso"
9716
  msgstr "Evento %s"
9717
 
9718
- #: app/libraries/main.php:6552
9719
  #, fuzzy
9720
  #| msgid "Event Repeating"
9721
  msgid "Events Manager (Recurring)"
9722
  msgstr "Repetir el evento"
9723
 
9724
- #: app/libraries/main.php:6553
9725
  #, fuzzy
9726
  #| msgid "Modern Events Calendar (Lite)"
9727
  msgid "Events Manager (Single)"
9728
  msgstr "Modern Events Calendar (Lite)"
9729
 
9730
- #: app/libraries/main.php:6554
9731
  #, fuzzy
9732
  #| msgid "Modern Events Calendar (Lite)"
9733
  msgid "WP Event Manager"
9734
  msgstr "Modern Events Calendar (Lite)"
9735
 
9736
- #: app/libraries/main.php:6686
9737
  msgid "Waiting"
9738
  msgstr ""
9739
 
9740
- #: app/libraries/main.php:6729
9741
  #, fuzzy
9742
  #| msgid "Sunday"
9743
  msgid "Sun"
9744
  msgstr "Domingo"
9745
 
9746
- #: app/libraries/main.php:6729
9747
  #, fuzzy
9748
  #| msgid "Monthly"
9749
  msgid "Mon"
9750
  msgstr "Mensual"
9751
 
9752
- #: app/libraries/main.php:6729
9753
  #, fuzzy
9754
  #| msgid "Tel"
9755
  msgid "Tue"
9756
  msgstr "Tel"
9757
 
9758
- #: app/libraries/main.php:6729
9759
  msgid "Wed"
9760
  msgstr ""
9761
 
9762
- #: app/libraries/main.php:6729
9763
  msgid "Thu"
9764
  msgstr ""
9765
 
9766
- #: app/libraries/main.php:6729
9767
  #, fuzzy
9768
  #| msgid "Friday"
9769
  msgid "Fri"
9770
  msgstr "Viernes"
9771
 
9772
- #: app/libraries/main.php:6729
9773
  #, fuzzy
9774
  #| msgid "Start"
9775
  msgid "Sat"
9776
  msgstr "Inicio"
9777
 
9778
- #: app/libraries/main.php:6895 app/libraries/render.php:80
9779
  #: app/libraries/render.php:445
9780
  msgid "Skin controller does not exist."
9781
  msgstr "No existe skin controller."
9782
 
9783
- #: app/libraries/main.php:7110
9784
  #, fuzzy
9785
  #| msgid "Sold out!"
9786
  msgid "Sold Out"
9787
  msgstr "¡Agotado!"
9788
 
9789
- #: app/libraries/main.php:7121
9790
  #, fuzzy
9791
  #| msgid "Ticket"
9792
  msgid "Last Few Tickets"
9793
  msgstr "Ticket"
9794
 
9795
- #: app/libraries/main.php:7452 app/libraries/main.php:7469
9796
  #, fuzzy
9797
  #| msgid "minutes"
9798
  msgid "Minutes"
9799
  msgstr "minutos"
9800
 
9801
- #: app/libraries/main.php:7474
9802
  msgid "AM / PM"
9803
  msgstr ""
9804
 
9805
- #: app/libraries/main.php:7475
9806
  msgid "AM"
9807
  msgstr "AM"
9808
 
9809
- #: app/libraries/main.php:7476
9810
  msgid "PM"
9811
  msgstr "PM"
9812
 
9813
- #: app/libraries/main.php:7484
9814
  msgid "Ongoing..."
9815
  msgstr ""
9816
 
9817
- #: app/libraries/main.php:7485
9818
  #, fuzzy
9819
  #| msgid "Expired Events"
9820
  msgid "Expired!"
@@ -9848,47 +9848,47 @@ msgstr "La reserva no puede cancelarse."
9848
  msgid "A new booking is received."
9849
  msgstr "Nueva reserva recibida."
9850
 
9851
- #: app/libraries/notifications.php:852
9852
  msgid "A new event is added."
9853
  msgstr "Se ha añadido un nuevo evento."
9854
 
9855
- #: app/libraries/notifications.php:968
9856
  #, fuzzy
9857
  #| msgid "The event published."
9858
  msgid "Your event is published."
9859
  msgstr "El evento a sido publicado."
9860
 
9861
- #: app/libraries/notifications.php:1118
9862
  #, fuzzy
9863
  #| msgid "Event Color"
9864
  msgid "Event is soldout!"
9865
  msgstr "Color del evento"
9866
 
9867
- #: app/libraries/notifications.php:1480
9868
  msgid "to"
9869
  msgstr "a"
9870
 
9871
- #: app/libraries/notifications.php:1501 app/modules/export/details.php:48
9872
  msgid "+ Add to Google Calendar"
9873
  msgstr "+ Añadir Google Calendar"
9874
 
9875
- #: app/libraries/notifications.php:1502 app/modules/export/details.php:49
9876
  #, fuzzy
9877
  #| msgid "+ iCal export"
9878
  msgid "+ iCal / Outlook export"
9879
  msgstr "Exportación + iCal"
9880
 
9881
- #: app/libraries/notifications.php:1551
9882
  #, fuzzy, php-format
9883
  #| msgid "+ Add to Google Calendar"
9884
  msgid "+ %s to Google Calendar"
9885
  msgstr "+ Añadir Google Calendar"
9886
 
9887
- #: app/libraries/notifications.php:1631
9888
  msgid "Yes"
9889
  msgstr "Sí"
9890
 
9891
- #: app/libraries/notifications.php:1631
9892
  msgid "No"
9893
  msgstr "No"
9894
 
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2020-11-18 11:01+0330\n"
8
+ "PO-Revision-Date: 2020-11-18 11:02+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
102
 
103
  #: app/features/contextual.php:62 app/features/events.php:1617
104
  #: app/features/events.php:2513 app/features/mec/booking.php:606
105
+ #: app/features/mec/booking.php:872 app/features/mec/support.php:29
106
+ #: app/libraries/main.php:571
107
  msgid "Booking Form"
108
  msgstr "Formulario de Reservas"
109
 
131
  "iframe>"
132
 
133
  #: app/features/contextual.php:70 app/features/events.php:1625
134
+ #: app/features/mec/booking.php:816 app/features/mec/support-page.php:115
135
  #: app/features/mec/support.php:36 app/libraries/main.php:573
136
  msgid "Payment Gateways"
137
  msgstr "Pasarelas de pago"
262
  msgstr "Opciones de Google Recaptcha"
263
 
264
  #: app/features/contextual.php:258 app/features/mec/single.php:248
265
+ #: app/libraries/main.php:557
266
  msgid "Countdown Options"
267
  msgstr "Opciones de cuenta atrás"
268
 
281
  msgstr "Presentación del evento Frontend"
282
 
283
  #: app/features/contextual.php:298 app/features/events.php:345
284
+ #: app/libraries/main.php:558
285
  msgid "Exceptional Days"
286
  msgstr "Días excepcionales"
287
 
288
  #: app/features/contextual.php:308 app/features/events.php:315
289
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
290
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
291
+ #: app/libraries/main.php:566 app/libraries/main.php:597
292
  #: app/libraries/main.php:684
293
  msgid "Booking"
294
  msgstr "Reserva"
295
 
296
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
297
+ #: app/features/mec/booking.php:832 app/libraries/main.php:568
298
  msgid "Coupons"
299
  msgstr "Cupones"
300
 
352
  msgstr "¡La imagen está subida!"
353
 
354
  #: app/features/events.php:167 app/features/ix/export.php:34
355
+ #: app/features/mec/dashboard.php:265 app/libraries/main.php:5542
356
+ #: app/libraries/main.php:5562 app/skins/daily_view/tpl.php:82
357
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
358
  #: app/skins/yearly_view/tpl.php:71
359
  msgid "Events"
377
  msgid "Add New Event"
378
  msgstr "Añadir nuevo evento"
379
 
380
+ #: app/features/events.php:171 app/features/ix.php:4401
381
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
382
  #: app/skins/map/tpl.php:88
383
  msgid "No events found!"
400
  msgid "No events found in Trash!"
401
  msgstr "No hay eventos en la papelera"
402
 
403
+ #: app/features/events.php:192 app/features/events.php:3599
404
  #: app/features/mec/meta_boxes/display_options.php:1463
405
  #: app/features/mec/meta_boxes/search_form.php:31
406
  #: app/features/mec/meta_boxes/search_form.php:101
415
  #: app/features/mec/meta_boxes/search_form.php:760
416
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
417
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
418
+ #: app/features/search.php:68 app/libraries/main.php:6341
419
+ #: app/libraries/main.php:6395 app/libraries/skins.php:934
420
  #: app/skins/single.php:1016 app/skins/single/default.php:219
421
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
422
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
423
  msgid "Category"
424
  msgstr "Categoría"
425
 
426
+ #: app/features/events.php:193 app/features/events.php:3554
427
  #: app/features/fes/form.php:865 app/features/mec.php:467
428
  #: app/features/mec/meta_boxes/filter.php:69
429
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6340
430
+ #: app/libraries/main.php:6394
431
  msgid "Categories"
432
  msgstr "Categorías"
433
 
538
  msgid "Links"
539
  msgstr "Enlace"
540
 
541
+ #: app/features/events.php:349 app/features/events.php:3601
542
+ #: app/features/events.php:3790 app/features/ix.php:3990
543
+ #: app/features/ix.php:4032
544
  #: app/features/mec/meta_boxes/display_options.php:1466
545
  #: app/features/mec/meta_boxes/search_form.php:46
546
  #: app/features/mec/meta_boxes/search_form.php:116
558
  #: app/features/organizers.php:204 app/features/organizers.php:260
559
  #: app/features/organizers.php:262 app/features/organizers.php:271
560
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
561
+ #: app/features/search.php:80 app/libraries/main.php:6347
562
+ #: app/libraries/main.php:6401 app/libraries/skins.php:986
563
  #: app/skins/single.php:1264 app/skins/single/default.php:244
564
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
565
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
568
 
569
  #: app/features/events.php:350 app/features/events.php:1165
570
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
571
+ #: app/libraries/main.php:6378 app/libraries/main.php:6427
572
  #: app/skins/single.php:1042 app/skins/single/default.php:142
573
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
574
  #: app/skins/single/modern.php:237
590
  msgstr "Datos del invitado"
591
 
592
  #: app/features/events.php:511 app/features/events.php:2499
593
+ #: app/features/events.php:4113 app/features/fes.php:243
594
  #: app/features/fes/form.php:795 app/features/labels.php:178
595
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
596
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
597
+ #: app/libraries/notifications.php:1617 app/modules/booking/steps/form.php:63
598
  msgid "Name"
599
  msgstr "Nombre"
600
 
601
  #: app/features/events.php:512 app/features/events.php:2508
602
  #: app/features/events.php:2575 app/features/events.php:2664
603
+ #: app/features/events.php:4116 app/features/fes.php:243
604
  #: app/features/fes/form.php:791 app/features/login/login.php:5
605
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
606
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
608
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
609
  #: app/features/speakers.php:204 app/libraries/main.php:1872
610
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
611
+ #: app/libraries/notifications.php:1618 app/modules/booking/steps/form.php:72
612
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
613
  #: app/skins/single.php:1340 app/skins/single/default.php:261
614
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
627
  msgstr "Día y hora"
628
 
629
  #: app/features/events.php:528 app/features/events.php:532
630
+ #: app/features/events.php:3602 app/features/events.php:3790
631
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
632
+ #: app/features/ix.php:3990 app/features/ix.php:4032
633
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
634
  #: app/features/mec/meta_boxes/display_options.php:52
635
  #: app/features/mec/meta_boxes/display_options.php:295
651
  msgstr "Día de inicio"
652
 
653
  #: app/features/events.php:547 app/features/events.php:551
654
+ #: app/features/events.php:3603 app/features/events.php:3790
655
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
656
+ #: app/features/ix.php:3990 app/features/ix.php:4032
657
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
658
  #: app/features/popup/event.php:92
659
  msgid "End Date"
709
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
710
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
711
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
712
+ #: app/features/mec/booking.php:848 app/features/mec/booking.php:874
713
  #: app/features/mec/dashboard.php:71
714
  #: app/features/mec/meta_boxes/display_options.php:85
715
  #: app/features/mec/meta_boxes/display_options.php:98
998
  msgid "Show only one occurrence of this event"
999
  msgstr "Próxima aparición de otros eventos"
1000
 
1001
+ #: app/features/events.php:1161 app/features/events.php:3790
1002
+ #: app/features/fes/form.php:833 app/features/ix.php:3990
1003
+ #: app/features/ix.php:4032 app/features/mec/settings.php:763
1004
+ #: app/libraries/main.php:6377 app/libraries/main.php:6426
1005
  #: app/widgets/single.php:103
1006
  msgid "Event Cost"
1007
  msgstr "Coste del evento"
1035
  "multiple day occurrences."
1036
  msgstr ""
1037
 
1038
+ #: app/features/events.php:1334 app/libraries/render.php:560
1039
  msgid "Day 1"
1040
  msgstr ""
1041
 
1057
  #: app/features/events.php:1376 app/features/events.php:1415
1058
  #: app/features/events.php:1450 app/features/events.php:1482
1059
  #: app/features/events.php:1511 app/features/events.php:2371
1060
+ #: app/features/events.php:2418 app/features/events.php:3598
1061
+ #: app/features/events.php:3790 app/features/fes/form.php:256
1062
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1063
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1064
  #: app/features/mec/styling.php:130
1065
  msgid "Title"
1100
 
1101
  #: app/features/events.php:1419 app/features/events.php:1453
1102
  #: app/features/events.php:1514 app/features/events.php:1892
1103
+ #: app/features/events.php:2074 app/features/events.php:3790
1104
  msgid "Description"
1105
  msgstr "Descripción"
1106
 
1108
  #: app/features/events.php:1519 app/features/fes/form.php:959
1109
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1110
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1111
+ #: app/libraries/main.php:577 app/libraries/main.php:6348
1112
+ #: app/libraries/main.php:6402 app/modules/speakers/details.php:18
1113
  msgid "Speakers"
1114
  msgstr ""
1115
 
1126
 
1127
  #: app/features/events.php:1553 app/features/events.php:1561
1128
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1129
+ #: app/libraries/main.php:6375 app/libraries/main.php:6424
1130
  msgid "Event Link"
1131
  msgstr "Enlace del evento"
1132
 
1153
  msgstr ""
1154
 
1155
  #: app/features/events.php:1571 app/features/events.php:1584
1156
+ #: app/features/fes/form.php:817 app/libraries/main.php:6376
1157
+ #: app/libraries/main.php:6425 app/skins/single.php:1126
1158
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1159
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1160
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1194
  msgstr "Límite total de reservas"
1195
 
1196
  #: app/features/events.php:1610 app/features/events.php:1835
1197
+ #: app/libraries/book.php:63 app/libraries/main.php:6380
1198
  #: app/modules/booking/steps/tickets.php:137
1199
  #: app/modules/booking/steps/tickets.php:143
1200
  msgid "Tickets"
1209
  msgid "Ticket Variations / Options"
1210
  msgstr ""
1211
 
1212
+ #: app/features/events.php:1619 app/features/mec/booking.php:903
1213
  #: app/features/mec/support-page.php:118
1214
  #, fuzzy
1215
  #| msgid "Organizer Tel"
1307
 
1308
  #: app/features/events.php:1763 app/features/events.php:1773
1309
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1310
+ #: app/features/mec/booking.php:253 app/features/mec/booking.php:842
1311
+ #: app/features/mec/booking.php:867
1312
  #: app/features/mec/meta_boxes/search_form.php:33
1313
  #: app/features/mec/meta_boxes/search_form.php:40
1314
  #: app/features/mec/meta_boxes/search_form.php:48
1414
 
1415
  #: app/features/events.php:1764 app/features/events.php:1774
1416
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1417
+ #: app/features/mec/booking.php:254 app/features/mec/booking.php:841
1418
+ #: app/features/mec/booking.php:868 app/features/mec/settings.php:106
1419
  msgid "Enabled"
1420
  msgstr "Habilitado"
1421
 
1471
  msgstr "Ticket"
1472
 
1473
  #: app/features/events.php:1855 app/features/events.php:2039
1474
+ #: app/features/events.php:3790 app/features/fes.php:243
1475
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1476
  #: app/features/labels.php:177 app/features/locations.php:262
1477
  #: app/features/organizers.php:203 app/features/speakers.php:282
1478
  msgid "ID"
1483
  msgstr "Nombre del ticket"
1484
 
1485
  #: app/features/events.php:1863 app/features/events.php:2046
1486
+ #: app/features/events.php:3790 app/features/ix.php:3990
1487
+ #: app/features/ix.php:4032
1488
  msgid "Start Time"
1489
  msgstr "Hora de Inicio"
1490
 
1491
  #: app/features/events.php:1876 app/features/events.php:2059
1492
+ #: app/features/events.php:3790 app/features/ix.php:3990
1493
+ #: app/features/ix.php:4032
1494
  msgid "End Time"
1495
  msgstr "Hora de finalización"
1496
 
1811
  msgid "Fixed Fields"
1812
  msgstr "Campo obligatorio"
1813
 
1814
+ #: app/features/events.php:3500 app/features/events.php:3518
1815
+ #: app/features/events.php:3536 app/features/events.php:3554
1816
  #, php-format
1817
  msgid "Show all %s"
1818
  msgstr "Mostrar todos %s"
1819
 
1820
+ #: app/features/events.php:3500
1821
  msgid "labels"
1822
  msgstr "etiquetas"
1823
 
1824
+ #: app/features/events.php:3518
1825
  msgid "locations"
1826
  msgstr "ubicaciones"
1827
 
1828
+ #: app/features/events.php:3536
1829
  msgid "organizers"
1830
  msgstr "organizadores"
1831
 
1832
+ #: app/features/events.php:3570
1833
  #, fuzzy
1834
  #| msgid "Attendees Limit"
1835
  msgid "Attendees List"
1836
  msgstr "Límite de asistentes"
1837
 
1838
+ #: app/features/events.php:3600 app/features/events.php:3790
1839
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1840
  #: app/features/locations.php:58 app/features/locations.php:263
1841
  #: app/features/locations.php:324 app/features/locations.php:326
1842
  #: app/features/locations.php:335
1855
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1856
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1857
  #: app/features/popup/event.php:125 app/features/search.php:74
1858
+ #: app/libraries/main.php:2641 app/libraries/main.php:6345
1859
+ #: app/libraries/main.php:6399 app/libraries/skins.php:960
1860
  #: app/skins/single.php:943 app/skins/single.php:1386
1861
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1862
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
1864
  msgid "Location"
1865
  msgstr "Localización"
1866
 
1867
+ #: app/features/events.php:3605
1868
  msgid "Repeat"
1869
  msgstr "Repetir"
1870
 
1871
+ #: app/features/events.php:3606
1872
  msgid "Author"
1873
  msgstr "Autor"
1874
 
1875
+ #: app/features/events.php:3727 app/features/events.php:3728
1876
  #, fuzzy
1877
  #| msgid "iCal Export"
1878
  msgid "iCal / Outlook Export"
1879
  msgstr "Exportar iCal"
1880
 
1881
+ #: app/features/events.php:3730 app/features/events.php:3731
1882
  msgid "CSV Export"
1883
  msgstr "Exportar CSV"
1884
 
1885
+ #: app/features/events.php:3733 app/features/events.php:3734
1886
  msgid "MS Excel Export"
1887
  msgstr "Exportar Excel"
1888
 
1889
+ #: app/features/events.php:3736 app/features/events.php:3737
1890
  msgid "XML Export"
1891
  msgstr "Exportación XML"
1892
 
1893
+ #: app/features/events.php:3739 app/features/events.php:3740
1894
  msgid "JSON Export"
1895
  msgstr "Exportación JSON"
1896
 
1897
+ #: app/features/events.php:3742 app/features/events.php:3743
1898
+ #: app/features/events.php:3899
1899
  msgid "Duplicate"
1900
  msgstr "Duplicar"
1901
 
1902
+ #: app/features/events.php:3790 app/features/ix.php:3990
1903
+ #: app/features/ix.php:4032
1904
  msgid "Link"
1905
  msgstr "Enlace"
1906
 
1907
+ #: app/features/events.php:3790 app/features/ix.php:3990
1908
+ #: app/features/ix.php:4032 app/features/locations.php:110
1909
  #: app/features/locations.php:180 app/features/locations.php:264
1910
  #: app/features/mec/meta_boxes/search_form.php:74
1911
  #: app/features/mec/meta_boxes/search_form.php:144
1921
  msgid "Address"
1922
  msgstr "Dirección"
1923
 
1924
+ #: app/features/events.php:3790
1925
  #, php-format
1926
  msgid "%s Tel"
1927
  msgstr "%s Teléfono "
1928
 
1929
+ #: app/features/events.php:3790
1930
  #, php-format
1931
  msgid "%s Email"
1932
  msgstr "%s Correo electrónico"
1933
 
1934
+ #: app/features/events.php:3790 app/features/fes/form.php:850
1935
  #: app/features/mec/settings.php:769
1936
  msgid "Featured Image"
1937
  msgstr "Imagen destacada"
1938
 
1939
+ #: app/features/events.php:4119 app/features/fes.php:243
1940
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1941
+ #: app/libraries/main.php:6379
1942
  msgid "Ticket"
1943
  msgstr "Ticket"
1944
 
1945
+ #: app/features/events.php:4122 app/features/profile/profile.php:186
1946
  msgid "Variations"
1947
  msgstr ""
1948
 
1949
+ #: app/features/events.php:4137 app/features/fes.php:316
1950
  msgid "Unknown"
1951
  msgstr ""
1952
 
1953
+ #: app/features/events.php:4163
1954
  msgid ""
1955
  "If you want to send an email, first select your attendees and then click in "
1956
  "the button below, please."
1957
  msgstr ""
1958
 
1959
+ #: app/features/events.php:4163 app/features/mec/report.php:58
1960
  #, fuzzy
1961
  #| msgid "Organizer Email"
1962
  msgid "Send Email"
1963
  msgstr "Correo electrónico del organizador"
1964
 
1965
+ #: app/features/events.php:4167
1966
  #, fuzzy
1967
  #| msgid "Attendees Form"
1968
  msgid "No Attendees Found!"
2205
  #: app/features/fes/form.php:891 app/features/labels.php:61
2206
  #: app/features/labels.php:221 app/features/mec.php:468
2207
  #: app/features/mec/meta_boxes/filter.php:72
2208
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6342
2209
+ #: app/libraries/main.php:6396 app/skins/single.php:1156
2210
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2211
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2212
  msgid "Labels"
2294
  "¡Ha ocurrido un error durante la subida del archivo! ¡Por favor, revisa los "
2295
  "permisos!"
2296
 
2297
+ #: app/features/ix.php:265 app/libraries/main.php:6627
2298
+ #: app/libraries/main.php:6647
2299
  msgid "Confirmed"
2300
  msgstr ""
2301
 
2302
+ #: app/features/ix.php:266 app/libraries/main.php:6628
2303
+ #: app/libraries/main.php:6655
2304
  msgid "Rejected"
2305
  msgstr ""
2306
 
2307
+ #: app/features/ix.php:270 app/features/mec/booking.php:1010
2308
+ #: app/features/mec/booking.php:1032 app/features/mec/modules.php:431
2309
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2310
+ #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1295
2311
+ #: app/features/mec/settings.php:1317 app/features/mec/single.php:446
2312
+ #: app/features/mec/single.php:468 app/libraries/main.php:6675
2313
  msgid "Verified"
2314
  msgstr "Verificado"
2315
 
2316
  #: app/features/ix.php:271 app/features/labels.php:118
2317
+ #: app/features/labels.php:143 app/libraries/main.php:6676
2318
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2319
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2320
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
2350
  msgid "The events are imported successfully!"
2351
  msgstr "¡Los eventos se importaron correctamente!"
2352
 
2353
+ #: app/features/ix.php:1176
2354
  msgid "Third Party plugin is not installed and activated!"
2355
  msgstr "¡Plugin de terceros no esta instalado ni activado!"
2356
 
2357
+ #: app/features/ix.php:1200
2358
  msgid "Third Party plugin is invalid!"
2359
  msgstr "¡El Plugin de terceros no es válido!"
2360
 
2361
+ #: app/features/ix.php:3175 app/features/ix.php:3233
2362
  #, fuzzy
2363
  #| msgid "Both of API key and Calendar ID are required!"
2364
  msgid "API key and Calendar ID are required!"
2365
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
2366
 
2367
+ #: app/features/ix.php:3228 app/features/ix.php:3673 app/features/ix.php:4408
2368
  #, fuzzy
2369
  #| msgid "Please select some events to import!"
2370
  msgid "Please select events to import!"
2371
  msgstr "Por favor, ¡selecciona algunos eventos para importar!"
2372
 
2373
+ #: app/features/ix.php:3615 app/features/ix.php:3678
2374
  #, fuzzy
2375
  #| msgid "Both of API key and Calendar ID are required!"
2376
  msgid "API key and Group URL are required!"
2377
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
2378
 
2379
+ #: app/features/ix.php:3917
2380
  msgid "Check at Meetup"
2381
  msgstr ""
2382
 
2383
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2384
  msgid "Organizer Tel"
2385
  msgstr "Teléfono del Organizador"
2386
 
2387
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2388
  msgid "Organizer Email"
2389
  msgstr "Correo electrónico del organizador"
2390
 
2391
+ #: app/features/ix.php:4108
2392
  #, fuzzy
2393
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2394
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2396
  "Todos los ID de cliente, secreto de cliente y ID de calendario son "
2397
  "necesarios."
2398
 
2399
+ #: app/features/ix.php:4131
2400
  #, fuzzy, php-format
2401
  #| msgid "All seems good! Please click %s for authenticating your app."
2402
  msgid "All seems good! Please click %s to authenticate your app."
2403
  msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
2404
 
2405
+ #: app/features/ix.php:4131 app/features/mec/settings.php:1236
2406
  msgid "here"
2407
  msgstr ""
2408
 
2409
+ #: app/features/ix.php:4185
2410
  #, fuzzy
2411
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2412
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2414
  "¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
2415
  "son obligatorios!"
2416
 
2417
+ #: app/features/ix.php:4330
2418
  #, fuzzy, php-format
2419
  #| msgid "%s events added to Google Calendar successfully."
2420
  msgid "%s events added to Google Calendar with success."
2421
  msgstr "%s eventos añadidos con éxito a Google Calendar."
2422
 
2423
+ #: app/features/ix.php:4331
2424
  #, fuzzy, php-format
2425
  #| msgid "%s previously added events get updated."
2426
  msgid "%s Updated previously added events."
2427
  msgstr "%s eventos añadidos previamente se actualizan."
2428
 
2429
+ #: app/features/ix.php:4332
2430
  #, php-format
2431
  msgid "%s events failed to add for following reasons: %s"
2432
  msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
2433
 
2434
+ #: app/features/ix.php:4364
2435
  msgid "Please insert your Facebook page's link."
2436
  msgstr ""
2437
 
2438
+ #: app/features/ix.php:4375 app/features/ix.php:4417
2439
  #, fuzzy
2440
  #| msgid ""
2441
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2447
  "No pudimos reconocer tu página de Facebook. Por favor, verifícala y escribe "
2448
  "un nuevo enlace de página de Facebook."
2449
 
2450
+ #: app/features/ix.php:4412
2451
  msgid "Please insert your facebook page's link."
2452
  msgstr "Por favor, inserta el enlace de tu página de Facebook."
2453
 
2618
  msgid "Add to Google Calendar"
2619
  msgstr "Añadir a Google Calendar"
2620
 
2621
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1012
2622
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2623
+ #: app/features/mec/settings.php:1297 app/features/mec/single.php:448
2624
  msgid "Checking ..."
2625
  msgstr "Verificando…"
2626
 
3112
 
3113
  #: app/features/locations.php:59 app/features/mec.php:469
3114
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
3115
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6344
3116
+ #: app/libraries/main.php:6398
3117
  msgid "Locations"
3118
  msgstr "Lugar"
3119
 
3229
  msgid "Don't show map in single event page"
3230
  msgstr "No mostrar el mapa en la página del detalle del evento"
3231
 
3232
+ #: app/features/locations.php:398 app/libraries/main.php:6382
3233
+ #: app/libraries/main.php:6429
3234
  #, fuzzy
3235
  #| msgid "Locations"
3236
  msgid "Other Locations"
3314
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3315
  #: app/features/mec/meta_boxes/filter.php:71
3316
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3317
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
3318
  msgid "Organizers"
3319
  msgstr "Organizadores"
3320
 
3521
  msgstr "Buscar %s"
3522
 
3523
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3524
+ #: app/features/mec/booking.php:928 app/features/mec/booking.php:937
3525
+ #: app/features/mec/booking.php:947 app/features/mec/booking.php:1029
3526
+ #: app/features/mec/booking.php:1043 app/features/mec/messages.php:15
3527
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3528
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3529
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
3533
  #: app/features/mec/notifications.php:1218
3534
  #: app/features/mec/notifications.php:1324
3535
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3536
+ #: app/features/mec/settings.php:1246 app/features/mec/settings.php:1256
3537
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1328
3538
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3539
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3540
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
3838
  msgid "Send confirmation email in auto confirmation mode"
3839
  msgstr ""
3840
 
3841
+ #: app/features/mec/booking.php:412 app/libraries/main.php:567
3842
  #, fuzzy
3843
  #| msgid "Booking Price"
3844
  msgid "Booking Shortcode"
3871
  "new menu on the Dashboard > Booking"
3872
  msgstr ""
3873
 
3874
+ #: app/features/mec/booking.php:446 app/features/mec/booking.php:834
3875
+ #: app/libraries/main.php:569
3876
  msgid "Taxes / Fees"
3877
  msgstr "Impuestos/Tasas"
3878
 
3884
  msgid "Add Fee"
3885
  msgstr "Nueva tasa"
3886
 
3887
+ #: app/features/mec/booking.php:523 app/libraries/main.php:570
3888
  msgid "Ticket Variations & Options"
3889
  msgstr ""
3890
 
3896
  msgid "Add Variation / Option"
3897
  msgstr ""
3898
 
3899
+ #: app/features/mec/booking.php:798
3900
+ #, fuzzy
3901
+ #| msgid "Filter Options"
3902
+ msgid "Upload Field Options"
3903
+ msgstr "Opciones de filtros"
3904
+
3905
+ #: app/features/mec/booking.php:800
3906
+ msgid "Mime types"
3907
+ msgstr ""
3908
+
3909
+ #: app/features/mec/booking.php:804
3910
+ msgid "Split mime types with \",\"."
3911
+ msgstr ""
3912
+
3913
+ #: app/features/mec/booking.php:804
3914
+ msgid "Default: jpeg,jpg,png,pdf"
3915
+ msgstr ""
3916
+
3917
+ #: app/features/mec/booking.php:807
3918
+ #, fuzzy
3919
+ #| msgid "Maximum Dates"
3920
+ msgid "Maximum file size"
3921
+ msgstr "Fechas máximas"
3922
+
3923
+ #: app/features/mec/booking.php:811
3924
+ msgid "The unit is Megabyte \"MB\""
3925
+ msgstr ""
3926
+
3927
+ #: app/features/mec/booking.php:824
3928
  msgid "Use WooCommerce as Payment System"
3929
  msgstr ""
3930
 
3931
+ #: app/features/mec/booking.php:826
3932
  msgid ""
3933
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3934
  "payment process would be done by WooCommerce so all of MEC payment related "
3936
  "fields etc, you need to configure WooCommerce on your website."
3937
  msgstr ""
3938
 
3939
+ #: app/features/mec/booking.php:828
3940
  msgid ""
3941
  "You cannot use following MEC features so you should use WooCommerc and its "
3942
  "addons if you need them."
3943
  msgstr ""
3944
 
3945
+ #: app/features/mec/booking.php:830
3946
  #, fuzzy
3947
  #| msgid "Payment Gateways"
3948
  msgid "Payment gateways"
3949
  msgstr "Pasarelas de pago"
3950
 
3951
+ #: app/features/mec/booking.php:831
3952
  msgid "Price per dates of tickets"
3953
  msgstr ""
3954
 
3955
+ #: app/features/mec/booking.php:833
3956
  #, fuzzy
3957
  #| msgid "Ticket time"
3958
  msgid "Ticket variations"
3959
  msgstr "Hora de la entrada"
3960
 
3961
+ #: app/features/mec/booking.php:838
3962
  msgid "Automatically complete WooCommerce orders"
3963
  msgstr ""
3964
 
3965
+ #: app/features/mec/booking.php:846
3966
  msgid "Auto WooCommerce orders"
3967
  msgstr ""
3968
 
3969
+ #: app/features/mec/booking.php:847
3970
  msgid "It applies only to the orders that are related to MEC."
3971
  msgstr ""
3972
 
3973
+ #: app/features/mec/booking.php:855
3974
  #, fuzzy
3975
  #| msgid "Add to Google Calendar"
3976
  msgid "After Add to Cart"
3977
  msgstr "Añadir a Google Calendar"
3978
 
3979
+ #: app/features/mec/booking.php:858
3980
  #, fuzzy
3981
  #| msgid "Get Directions"
3982
  msgid "Redirect to Cart"
3983
  msgstr "Cómo llegar"
3984
 
3985
+ #: app/features/mec/booking.php:859
3986
  #, fuzzy
3987
  #| msgid "Get Directions"
3988
  msgid "Redirect to Checkout"
3989
  msgstr "Cómo llegar"
3990
 
3991
+ #: app/features/mec/booking.php:864
3992
  #, fuzzy
3993
  #| msgid "Booking Form"
3994
  msgid "MEC Booking Form"
3995
  msgstr "Formulario de Reservas"
3996
 
3997
+ #: app/features/mec/booking.php:873
3998
  msgid ""
3999
  "If enabled then users should fill the booking form in MEC and then they will "
4000
  "be redirected to checkout."
4001
  msgstr ""
4002
 
4003
+ #: app/features/mec/booking.php:899
4004
  msgid "Enable Organizer Payment Module"
4005
  msgstr ""
4006
 
4007
+ #: app/features/mec/booking.php:904
4008
  msgid ""
4009
  "By enabling this module, organizers are able to insert their own payment "
4010
  "credentials for enabled gateways per event and receive the payments directly!"
4011
  msgstr ""
4012
 
4013
+ #: app/features/mec/booking.php:914
4014
  msgid "Disable / Enable payment gateways per event"
4015
  msgstr ""
4016
 
4017
+ #: app/features/mec/booking.php:918
4018
  #, fuzzy
4019
  #| msgid "Payment Gateways"
4020
  msgid "Payment Gateways Per Event"
4021
  msgstr "Pasarelas de pago"
4022
 
4023
+ #: app/features/mec/booking.php:919
4024
  msgid ""
4025
  "By enabling this module, users are able to disable / enable payment gateways "
4026
  "per event"
4027
  msgstr ""
4028
 
4029
+ #: app/features/mec/booking.php:1007 app/features/mec/messages.php:78
4030
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
4031
+ #: app/features/mec/settings.php:1292 app/features/mec/single.php:443
4032
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
4033
  msgid "Saved"
4034
  msgstr "Guardado"
4035
 
4036
+ #: app/features/mec/booking.php:1008 app/features/mec/messages.php:79
4037
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
4038
+ #: app/features/mec/settings.php:1293 app/features/mec/single.php:444
4039
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
4040
  msgid "Settings Saved!"
4041
  msgstr "¡Ajustes guardados!"
4042
 
4043
+ #: app/features/mec/booking.php:1034 app/features/mec/modules.php:455
4044
+ #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1319
4045
  #: app/features/mec/single.php:470
4046
  msgid "Please Refresh Page"
4047
  msgstr "Por favor, actualiza la página"
5288
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5289
  #: app/features/mec/single.php:386 app/features/search.php:86
5290
  #: app/features/speakers.php:60 app/features/speakers.php:283
5291
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
5292
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5293
  msgid "Speaker"
5294
  msgstr ""
6500
  msgid "only once per hour"
6501
  msgstr "una vez al día"
6502
 
6503
+ #: app/features/mec/notifications.php:950 app/libraries/main.php:7437
6504
+ #: app/libraries/main.php:7454
6505
  #, fuzzy
6506
  #| msgid "hours"
6507
  msgid "Hours"
6787
  msgstr ""
6788
 
6789
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6790
+ #: app/libraries/main.php:6353 app/libraries/main.php:6407
6791
  msgid "Weekdays"
6792
  msgstr "Días de la semana"
6793
 
7143
  msgid "Let WordPress decide"
7144
  msgstr "Dirección"
7145
 
7146
+ #: app/features/mec/settings.php:660 app/libraries/main.php:6629
7147
+ #: app/libraries/main.php:6651
7148
  msgid "Pending"
7149
  msgstr ""
7150
 
7304
  msgid "Event Description"
7305
  msgstr "Descripción"
7306
 
7307
+ #: app/features/mec/settings.php:930 app/libraries/main.php:6376
7308
+ #: app/libraries/main.php:6425
7309
  msgid "More Info Link"
7310
  msgstr "Enlace a Más Información"
7311
 
7501
  msgid "More information about the list ID can be found %s."
7502
  msgstr ""
7503
 
7504
+ #: app/features/mec/single.php:38 app/libraries/main.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7505
  #, fuzzy
7506
  #| msgid "Single Event Style"
7507
  msgid "Single Event Page"
7619
  "the settings page.' tab"
7620
  msgstr ""
7621
 
7622
+ #: app/features/mec/single.php:162 app/libraries/main.php:556
7623
  #, fuzzy
7624
  #| msgid "Custom Styles"
7625
  msgid "Custom Fields"
7673
  "Usar esta opción permite incluir o excluir ciertos días para la ocurrencia "
7674
  "de eventos."
7675
 
7676
+ #: app/features/mec/single.php:286 app/libraries/main.php:559
7677
  msgid "Additional Organizers"
7678
  msgstr "Organizadores adicionales"
7679
 
7707
  "Mostrar la opción de organizadores adicionales en la pagina de añadir "
7708
  "eventos y la pagina de evento individual."
7709
 
7710
+ #: app/features/mec/single.php:318 app/libraries/main.php:561
7711
  #: app/skins/single.php:170 app/skins/single.php:435
7712
  #, fuzzy
7713
  #| msgid "featured event"
7724
  msgid "Select Taxonomies:"
7725
  msgstr "Taxonomías"
7726
 
7727
+ #: app/features/mec/single.php:360 app/libraries/main.php:562
7728
  #, fuzzy
7729
  #| msgid "Next/Previous Buttons"
7730
  msgid "Next / Previous Events"
8564
  msgid "eg. https://webnus.net"
8565
  msgstr "ej. https://webnus.net"
8566
 
8567
+ #: app/features/organizers.php:312 app/libraries/main.php:6381
8568
+ #: app/libraries/main.php:6428 app/skins/single.php:1314
8569
  msgid "Other Organizers"
8570
  msgstr "En común"
8571
 
8828
  msgid "No search result."
8829
  msgstr ""
8830
 
8831
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6383
8832
+ #: app/libraries/main.php:6430 app/libraries/notifications.php:1262
8833
+ #: app/libraries/render.php:532 app/libraries/render.php:854
8834
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8835
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8836
  #: app/modules/next-event/details.php:154
8921
  "section and speaker widget section!"
8922
  msgstr ""
8923
 
8924
+ #: app/features/wc.php:103 app/libraries/notifications.php:1247
8925
+ #: app/libraries/notifications.php:1262 app/libraries/notifications.php:1273
8926
+ #: app/libraries/notifications.php:1542 app/libraries/notifications.php:1543
8927
  #, php-format
8928
  msgid "%s to %s"
8929
  msgstr ""
8943
  msgid "%s Price"
8944
  msgstr "%s Precio"
8945
 
8946
+ #: app/libraries/book.php:706 app/libraries/book.php:797
8947
  msgid "Discount"
8948
  msgstr "Descuento"
8949
 
8950
+ #: app/libraries/book.php:884 app/modules/booking/default.php:426
8951
  #: app/modules/booking/default.php:531
8952
  msgid "Download Invoice"
8953
  msgstr "Descargar factura"
9079
  msgid "Timeline View"
9080
  msgstr "Vista de Horario"
9081
 
9082
+ #: app/libraries/main.php:391 app/libraries/main.php:6355
9083
+ #: app/libraries/main.php:6409
9084
  msgid "SU"
9085
  msgstr "DO"
9086
 
9087
+ #: app/libraries/main.php:392 app/libraries/main.php:6356
9088
+ #: app/libraries/main.php:6410
9089
  msgid "MO"
9090
  msgstr "LU"
9091
 
9092
+ #: app/libraries/main.php:393 app/libraries/main.php:6357
9093
+ #: app/libraries/main.php:6411
9094
  msgid "TU"
9095
  msgstr "MA"
9096
 
9097
+ #: app/libraries/main.php:394 app/libraries/main.php:6358
9098
+ #: app/libraries/main.php:6412
9099
  msgid "WE"
9100
  msgstr "MI"
9101
 
9102
+ #: app/libraries/main.php:395 app/libraries/main.php:6359
9103
+ #: app/libraries/main.php:6413
9104
  msgid "TH"
9105
  msgstr "JU"
9106
 
9107
+ #: app/libraries/main.php:396 app/libraries/main.php:6360
9108
+ #: app/libraries/main.php:6414
9109
  msgid "FR"
9110
  msgstr "VI"
9111
 
9112
+ #: app/libraries/main.php:397 app/libraries/main.php:6361
9113
+ #: app/libraries/main.php:6415
9114
  msgid "SA"
9115
  msgstr "SA"
9116
 
9117
+ #: app/libraries/main.php:560
 
 
 
 
 
 
9118
  #, fuzzy
9119
  #| msgid "Additional Organizers"
9120
  msgid "Additional Locations"
9121
  msgstr "Organizadores adicionales"
9122
 
9123
+ #: app/libraries/main.php:572
9124
+ #, fuzzy
9125
+ #| msgid "Upload/Add image"
9126
+ msgid "Upload Field"
9127
+ msgstr "Subir/Añadir imagen"
9128
+
9129
  #: app/libraries/main.php:726
9130
  #, fuzzy
9131
  #| msgid "Social Module"
9474
  msgid "Free"
9475
  msgstr "Gratis"
9476
 
9477
+ #: app/libraries/main.php:4445 app/libraries/main.php:6690
9478
  #, fuzzy
9479
  #| msgid "M.E. Calendar"
9480
  msgid "M.E. Calender"
9481
  msgstr "M.E. Calendario"
9482
 
9483
+ #: app/libraries/main.php:4601
9484
  #, php-format
9485
  msgid "Copy of %s"
9486
  msgstr "Copia de %s"
9487
 
9488
+ #: app/libraries/main.php:5466
9489
  msgid "Booked an event."
9490
  msgstr "Has reservado para un evento."
9491
 
9492
+ #: app/libraries/main.php:5507
9493
  #, php-format
9494
  msgid "%s booked %s event."
9495
  msgstr "%s reservado %s evento."
9496
 
9497
+ #: app/libraries/main.php:6338 app/libraries/main.php:6392
9498
  msgid "Taxonomies"
9499
  msgstr "Taxonomías"
9500
 
9501
+ #: app/libraries/main.php:6340 app/libraries/main.php:6394
9502
  msgid "Category Plural Label"
9503
  msgstr "Categoría Etiqueta plural"
9504
 
9505
+ #: app/libraries/main.php:6341 app/libraries/main.php:6395
9506
  msgid "Category Singular Label"
9507
  msgstr "Categoría Etiqueta Singular"
9508
 
9509
+ #: app/libraries/main.php:6342 app/libraries/main.php:6396
9510
  msgid "Label Plural Label"
9511
  msgstr "Etiqueta plural"
9512
 
9513
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9514
  msgid "Label Singular Label"
9515
  msgstr "Etiqueta singular de la etiqueta"
9516
 
9517
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9518
  msgid "label"
9519
  msgstr "etiqueta"
9520
 
9521
+ #: app/libraries/main.php:6344 app/libraries/main.php:6398
9522
  msgid "Location Plural Label"
9523
  msgstr "Ubicación Etiqueta plural"
9524
 
9525
+ #: app/libraries/main.php:6345 app/libraries/main.php:6399
9526
  msgid "Location Singular Label"
9527
  msgstr "Etiqueta de ubicación en singular"
9528
 
9529
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
9530
  msgid "Organizer Plural Label"
9531
  msgstr "Etiqueta del organizador en plural"
9532
 
9533
+ #: app/libraries/main.php:6347 app/libraries/main.php:6401
9534
  msgid "Organizer Singular Label"
9535
  msgstr "Etiqueta Singular del Organizador"
9536
 
9537
+ #: app/libraries/main.php:6348 app/libraries/main.php:6402
9538
  msgid "Speaker Plural Label"
9539
  msgstr ""
9540
 
9541
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
9542
  msgid "Speaker Singular Label"
9543
  msgstr ""
9544
 
9545
+ #: app/libraries/main.php:6355 app/libraries/main.php:6409
9546
  msgid "Sunday abbreviation"
9547
  msgstr "Abreviatura de Domingo"
9548
 
9549
+ #: app/libraries/main.php:6356 app/libraries/main.php:6410
9550
  msgid "Monday abbreviation"
9551
  msgstr "Abreviatura de Lunes"
9552
 
9553
+ #: app/libraries/main.php:6357 app/libraries/main.php:6411
9554
  msgid "Tuesday abbreviation"
9555
  msgstr "Abreviatura de Martes"
9556
 
9557
+ #: app/libraries/main.php:6358 app/libraries/main.php:6412
9558
  msgid "Wednesday abbreviation"
9559
  msgstr "Abreviatura de Miércoles "
9560
 
9561
+ #: app/libraries/main.php:6359 app/libraries/main.php:6413
9562
  msgid "Thursday abbreviation"
9563
  msgstr "Abreviatura de Jueves"
9564
 
9565
+ #: app/libraries/main.php:6360 app/libraries/main.php:6414
9566
  msgid "Friday abbreviation"
9567
  msgstr "Abreviatura de Viernes"
9568
 
9569
+ #: app/libraries/main.php:6361 app/libraries/main.php:6415
9570
  msgid "Saturday abbreviation"
9571
  msgstr "Abreviatura de Sábado "
9572
 
9573
+ #: app/libraries/main.php:6365 app/libraries/main.php:6419
9574
  msgid "Others"
9575
  msgstr "Otros"
9576
 
9577
+ #: app/libraries/main.php:6367
9578
  msgid "Booking Success Message"
9579
  msgstr "Mensaje de reserva correcta"
9580
 
9581
+ #: app/libraries/main.php:6367
9582
  #, fuzzy
9583
  #| msgid ""
9584
  #| "Thanks for your booking. Your tickets booked, booking verification might "
9590
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
9591
  "una verificación, por favor consulta tu correo."
9592
 
9593
+ #: app/libraries/main.php:6368
9594
  #, fuzzy
9595
  #| msgid "Booking Success Message"
9596
  msgid "Booking Restriction Message 1"
9597
  msgstr "Mensaje de reserva correcta"
9598
 
9599
+ #: app/libraries/main.php:6368
9600
  #, php-format
9601
  msgid ""
9602
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9603
  "tickets."
9604
  msgstr ""
9605
 
9606
+ #: app/libraries/main.php:6369
9607
  #, fuzzy
9608
  #| msgid "Booking Success Message"
9609
  msgid "Booking Restriction Message 2"
9610
  msgstr "Mensaje de reserva correcta"
9611
 
9612
+ #: app/libraries/main.php:6369
9613
  #, php-format
9614
  msgid ""
9615
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9616
  "tickets."
9617
  msgstr ""
9618
 
9619
+ #: app/libraries/main.php:6370
9620
  #, fuzzy
9621
  #| msgid "Booking Success Message"
9622
  msgid "Booking IP Restriction Message"
9623
  msgstr "Mensaje de reserva correcta"
9624
 
9625
+ #: app/libraries/main.php:6370
9626
  #, php-format
9627
  msgid "Maximum allowed number of tickets that you can book is %s."
9628
  msgstr ""
9629
 
9630
+ #: app/libraries/main.php:6371
9631
  #, fuzzy
9632
  #| msgid "Booking Options"
9633
  msgid "Booking Button"
9634
  msgstr "Opciones de reserva"
9635
 
9636
+ #: app/libraries/main.php:6371 app/libraries/skins.php:1268
9637
  #: app/modules/booking/steps/tickets.php:102
9638
  msgid "Book Event"
9639
  msgstr "Reservar evento"
9640
 
9641
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9642
  #: app/widgets/single.php:131
9643
  msgid "Register Button"
9644
  msgstr "Botón de registro"
9645
 
9646
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9647
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9648
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9649
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
9661
  msgid "REGISTER"
9662
  msgstr "REGISTRO"
9663
 
9664
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9665
  msgid "View Detail Button"
9666
  msgstr "Ver detalle del botón"
9667
 
9668
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9669
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9670
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9671
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
9677
  msgid "View Detail"
9678
  msgstr "Ver detalle"
9679
 
9680
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9681
  msgid "Event Detail Button"
9682
  msgstr "Botón de detalle del evento"
9683
 
9684
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9685
  msgid "Event Detail"
9686
  msgstr "Detalle del evento"
9687
 
9688
+ #: app/libraries/main.php:6379
9689
  msgid "Ticket (Singular)"
9690
  msgstr "Entrada (Singular)"
9691
 
9692
+ #: app/libraries/main.php:6380
9693
  msgid "Tickets (Plural)"
9694
  msgstr "Entradas (Plural)"
9695
 
9696
+ #: app/libraries/main.php:6538
9697
  msgid "EventON"
9698
  msgstr "EventON"
9699
 
9700
+ #: app/libraries/main.php:6539
9701
  msgid "The Events Calendar"
9702
  msgstr "The Events Calendar"
9703
 
9704
+ #: app/libraries/main.php:6540
9705
  msgid "Events Schedule WP Plugin"
9706
  msgstr "Events Schedule WP Plugin"
9707
 
9708
+ #: app/libraries/main.php:6541
9709
  msgid "Calendarize It"
9710
  msgstr "Ponlo al calendario"
9711
 
9712
+ #: app/libraries/main.php:6542
9713
  #, fuzzy
9714
  #| msgid "Event %s"
9715
  msgid "Event Espresso"
9716
  msgstr "Evento %s"
9717
 
9718
+ #: app/libraries/main.php:6543
9719
  #, fuzzy
9720
  #| msgid "Event Repeating"
9721
  msgid "Events Manager (Recurring)"
9722
  msgstr "Repetir el evento"
9723
 
9724
+ #: app/libraries/main.php:6544
9725
  #, fuzzy
9726
  #| msgid "Modern Events Calendar (Lite)"
9727
  msgid "Events Manager (Single)"
9728
  msgstr "Modern Events Calendar (Lite)"
9729
 
9730
+ #: app/libraries/main.php:6545
9731
  #, fuzzy
9732
  #| msgid "Modern Events Calendar (Lite)"
9733
  msgid "WP Event Manager"
9734
  msgstr "Modern Events Calendar (Lite)"
9735
 
9736
+ #: app/libraries/main.php:6677
9737
  msgid "Waiting"
9738
  msgstr ""
9739
 
9740
+ #: app/libraries/main.php:6720
9741
  #, fuzzy
9742
  #| msgid "Sunday"
9743
  msgid "Sun"
9744
  msgstr "Domingo"
9745
 
9746
+ #: app/libraries/main.php:6720
9747
  #, fuzzy
9748
  #| msgid "Monthly"
9749
  msgid "Mon"
9750
  msgstr "Mensual"
9751
 
9752
+ #: app/libraries/main.php:6720
9753
  #, fuzzy
9754
  #| msgid "Tel"
9755
  msgid "Tue"
9756
  msgstr "Tel"
9757
 
9758
+ #: app/libraries/main.php:6720
9759
  msgid "Wed"
9760
  msgstr ""
9761
 
9762
+ #: app/libraries/main.php:6720
9763
  msgid "Thu"
9764
  msgstr ""
9765
 
9766
+ #: app/libraries/main.php:6720
9767
  #, fuzzy
9768
  #| msgid "Friday"
9769
  msgid "Fri"
9770
  msgstr "Viernes"
9771
 
9772
+ #: app/libraries/main.php:6720
9773
  #, fuzzy
9774
  #| msgid "Start"
9775
  msgid "Sat"
9776
  msgstr "Inicio"
9777
 
9778
+ #: app/libraries/main.php:6886 app/libraries/render.php:80
9779
  #: app/libraries/render.php:445
9780
  msgid "Skin controller does not exist."
9781
  msgstr "No existe skin controller."
9782
 
9783
+ #: app/libraries/main.php:7101
9784
  #, fuzzy
9785
  #| msgid "Sold out!"
9786
  msgid "Sold Out"
9787
  msgstr "¡Agotado!"
9788
 
9789
+ #: app/libraries/main.php:7112
9790
  #, fuzzy
9791
  #| msgid "Ticket"
9792
  msgid "Last Few Tickets"
9793
  msgstr "Ticket"
9794
 
9795
+ #: app/libraries/main.php:7443 app/libraries/main.php:7460
9796
  #, fuzzy
9797
  #| msgid "minutes"
9798
  msgid "Minutes"
9799
  msgstr "minutos"
9800
 
9801
+ #: app/libraries/main.php:7465
9802
  msgid "AM / PM"
9803
  msgstr ""
9804
 
9805
+ #: app/libraries/main.php:7466
9806
  msgid "AM"
9807
  msgstr "AM"
9808
 
9809
+ #: app/libraries/main.php:7467
9810
  msgid "PM"
9811
  msgstr "PM"
9812
 
9813
+ #: app/libraries/main.php:7475
9814
  msgid "Ongoing..."
9815
  msgstr ""
9816
 
9817
+ #: app/libraries/main.php:7476
9818
  #, fuzzy
9819
  #| msgid "Expired Events"
9820
  msgid "Expired!"
9848
  msgid "A new booking is received."
9849
  msgstr "Nueva reserva recibida."
9850
 
9851
+ #: app/libraries/notifications.php:858
9852
  msgid "A new event is added."
9853
  msgstr "Se ha añadido un nuevo evento."
9854
 
9855
+ #: app/libraries/notifications.php:974
9856
  #, fuzzy
9857
  #| msgid "The event published."
9858
  msgid "Your event is published."
9859
  msgstr "El evento a sido publicado."
9860
 
9861
+ #: app/libraries/notifications.php:1124
9862
  #, fuzzy
9863
  #| msgid "Event Color"
9864
  msgid "Event is soldout!"
9865
  msgstr "Color del evento"
9866
 
9867
+ #: app/libraries/notifications.php:1486
9868
  msgid "to"
9869
  msgstr "a"
9870
 
9871
+ #: app/libraries/notifications.php:1507 app/modules/export/details.php:63
9872
  msgid "+ Add to Google Calendar"
9873
  msgstr "+ Añadir Google Calendar"
9874
 
9875
+ #: app/libraries/notifications.php:1508 app/modules/export/details.php:64
9876
  #, fuzzy
9877
  #| msgid "+ iCal export"
9878
  msgid "+ iCal / Outlook export"
9879
  msgstr "Exportación + iCal"
9880
 
9881
+ #: app/libraries/notifications.php:1557
9882
  #, fuzzy, php-format
9883
  #| msgid "+ Add to Google Calendar"
9884
  msgid "+ %s to Google Calendar"
9885
  msgstr "+ Añadir Google Calendar"
9886
 
9887
+ #: app/libraries/notifications.php:1637
9888
  msgid "Yes"
9889
  msgstr "Sí"
9890
 
9891
+ #: app/libraries/notifications.php:1637
9892
  msgid "No"
9893
  msgstr "No"
9894
 
languages/modern-events-calendar-lite-fr_FR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-11-10 21:11+0330\n"
5
- "PO-Revision-Date: 2020-11-10 21:12+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -105,8 +105,8 @@ msgstr "Paramètres"
105
 
106
  #: app/features/contextual.php:62 app/features/events.php:1617
107
  #: app/features/events.php:2513 app/features/mec/booking.php:606
108
- #: app/features/mec/booking.php:854 app/features/mec/support.php:29
109
- #: app/libraries/main.php:572
110
  msgid "Booking Form"
111
  msgstr "Formulaire de réservation"
112
 
@@ -120,7 +120,7 @@ msgid ""
120
  msgstr ""
121
 
122
  #: app/features/contextual.php:70 app/features/events.php:1625
123
- #: app/features/mec/booking.php:798 app/features/mec/support-page.php:115
124
  #: app/features/mec/support.php:36 app/libraries/main.php:573
125
  msgid "Payment Gateways"
126
  msgstr "Passerelle de paiement"
@@ -226,7 +226,7 @@ msgid "Google Recaptcha Options"
226
  msgstr "Options de Google reCAPTCHA"
227
 
228
  #: app/features/contextual.php:258 app/features/mec/single.php:248
229
- #: app/libraries/main.php:558
230
  msgid "Countdown Options"
231
  msgstr "Options du Compte à Rebours"
232
 
@@ -245,20 +245,20 @@ msgid "Frontend Event Submission"
245
  msgstr "Réglages du formulaire de création d’événements"
246
 
247
  #: app/features/contextual.php:298 app/features/events.php:345
248
- #: app/libraries/main.php:559
249
  msgid "Exceptional Days"
250
  msgstr "Journées Exceptionnelles"
251
 
252
  #: app/features/contextual.php:308 app/features/events.php:315
253
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
254
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
255
- #: app/libraries/main.php:567 app/libraries/main.php:597
256
  #: app/libraries/main.php:684
257
  msgid "Booking"
258
  msgstr "Réservation"
259
 
260
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
261
- #: app/features/mec/booking.php:814 app/libraries/main.php:569
262
  msgid "Coupons"
263
  msgstr "Bons de réduction"
264
 
@@ -312,8 +312,8 @@ msgid "File uploaded!"
312
  msgstr ""
313
 
314
  #: app/features/events.php:167 app/features/ix/export.php:34
315
- #: app/features/mec/dashboard.php:265 app/libraries/main.php:5551
316
- #: app/libraries/main.php:5571 app/skins/daily_view/tpl.php:82
317
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
318
  #: app/skins/yearly_view/tpl.php:71
319
  msgid "Events"
@@ -337,7 +337,7 @@ msgstr "Ajouter un événement"
337
  msgid "Add New Event"
338
  msgstr "Ajouter un nouvel événement"
339
 
340
- #: app/features/events.php:171 app/features/ix.php:4391
341
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
342
  #: app/skins/map/tpl.php:88
343
  msgid "No events found!"
@@ -360,7 +360,7 @@ msgstr "Voir l'événement"
360
  msgid "No events found in Trash!"
361
  msgstr "Aucun événement trouvé dans la corbeille !"
362
 
363
- #: app/features/events.php:192 app/features/events.php:3597
364
  #: app/features/mec/meta_boxes/display_options.php:1463
365
  #: app/features/mec/meta_boxes/search_form.php:31
366
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -375,19 +375,19 @@ msgstr "Aucun événement trouvé dans la corbeille !"
375
  #: app/features/mec/meta_boxes/search_form.php:760
376
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
377
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
378
- #: app/features/search.php:68 app/libraries/main.php:6350
379
- #: app/libraries/main.php:6404 app/libraries/skins.php:934
380
  #: app/skins/single.php:1016 app/skins/single/default.php:219
381
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
382
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
383
  msgid "Category"
384
  msgstr "Catégorie"
385
 
386
- #: app/features/events.php:193 app/features/events.php:3552
387
  #: app/features/fes/form.php:865 app/features/mec.php:467
388
  #: app/features/mec/meta_boxes/filter.php:69
389
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6349
390
- #: app/libraries/main.php:6403
391
  msgid "Categories"
392
  msgstr "Catégories"
393
 
@@ -490,9 +490,9 @@ msgstr "Lieu"
490
  msgid "Links"
491
  msgstr "Lien"
492
 
493
- #: app/features/events.php:349 app/features/events.php:3599
494
- #: app/features/events.php:3788 app/features/ix.php:3980
495
- #: app/features/ix.php:4022
496
  #: app/features/mec/meta_boxes/display_options.php:1466
497
  #: app/features/mec/meta_boxes/search_form.php:46
498
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -510,8 +510,8 @@ msgstr "Lien"
510
  #: app/features/organizers.php:204 app/features/organizers.php:260
511
  #: app/features/organizers.php:262 app/features/organizers.php:271
512
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
513
- #: app/features/search.php:80 app/libraries/main.php:6356
514
- #: app/libraries/main.php:6410 app/libraries/skins.php:986
515
  #: app/skins/single.php:1264 app/skins/single/default.php:244
516
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
517
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
@@ -520,7 +520,7 @@ msgstr "Organisateur"
520
 
521
  #: app/features/events.php:350 app/features/events.php:1165
522
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
523
- #: app/libraries/main.php:6387 app/libraries/main.php:6436
524
  #: app/skins/single.php:1042 app/skins/single/default.php:142
525
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
526
  #: app/skins/single/modern.php:237
@@ -542,17 +542,17 @@ msgid "Guest Data"
542
  msgstr "Coordonnées de l'Invité"
543
 
544
  #: app/features/events.php:511 app/features/events.php:2499
545
- #: app/features/events.php:4111 app/features/fes.php:243
546
  #: app/features/fes/form.php:795 app/features/labels.php:178
547
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
548
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
549
- #: app/libraries/notifications.php:1611 app/modules/booking/steps/form.php:63
550
  msgid "Name"
551
  msgstr "Nom"
552
 
553
  #: app/features/events.php:512 app/features/events.php:2508
554
  #: app/features/events.php:2575 app/features/events.php:2664
555
- #: app/features/events.php:4114 app/features/fes.php:243
556
  #: app/features/fes/form.php:791 app/features/login/login.php:5
557
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
558
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
@@ -560,7 +560,7 @@ msgstr "Nom"
560
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
561
  #: app/features/speakers.php:204 app/libraries/main.php:1872
562
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
563
- #: app/libraries/notifications.php:1612 app/modules/booking/steps/form.php:72
564
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
565
  #: app/skins/single.php:1340 app/skins/single/default.php:261
566
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
@@ -579,9 +579,9 @@ msgid "Date and Time"
579
  msgstr "Date et heure"
580
 
581
  #: app/features/events.php:528 app/features/events.php:532
582
- #: app/features/events.php:3600 app/features/events.php:3788
583
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
584
- #: app/features/ix.php:3980 app/features/ix.php:4022
585
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
586
  #: app/features/mec/meta_boxes/display_options.php:52
587
  #: app/features/mec/meta_boxes/display_options.php:295
@@ -603,9 +603,9 @@ msgid "Start Date"
603
  msgstr "Date de début"
604
 
605
  #: app/features/events.php:547 app/features/events.php:551
606
- #: app/features/events.php:3601 app/features/events.php:3788
607
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
608
- #: app/features/ix.php:3980 app/features/ix.php:4022
609
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
610
  #: app/features/popup/event.php:92
611
  msgid "End Date"
@@ -661,7 +661,7 @@ msgstr ""
661
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
662
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
663
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
664
- #: app/features/mec/booking.php:830 app/features/mec/booking.php:856
665
  #: app/features/mec/dashboard.php:71
666
  #: app/features/mec/meta_boxes/display_options.php:85
667
  #: app/features/mec/meta_boxes/display_options.php:98
@@ -937,10 +937,10 @@ msgstr ""
937
  msgid "Show only one occurrence of this event"
938
  msgstr "Afficher uniquement une occurence pour cet événement"
939
 
940
- #: app/features/events.php:1161 app/features/events.php:3788
941
- #: app/features/fes/form.php:833 app/features/ix.php:3980
942
- #: app/features/ix.php:4022 app/features/mec/settings.php:763
943
- #: app/libraries/main.php:6386 app/libraries/main.php:6435
944
  #: app/widgets/single.php:103
945
  msgid "Event Cost"
946
  msgstr "Tarif de l'événement"
@@ -972,7 +972,7 @@ msgid ""
972
  "multiple day occurrences."
973
  msgstr ""
974
 
975
- #: app/features/events.php:1334 app/libraries/render.php:559
976
  msgid "Day 1"
977
  msgstr ""
978
 
@@ -996,9 +996,9 @@ msgstr "%s jour(s)"
996
  #: app/features/events.php:1376 app/features/events.php:1415
997
  #: app/features/events.php:1450 app/features/events.php:1482
998
  #: app/features/events.php:1511 app/features/events.php:2371
999
- #: app/features/events.php:2418 app/features/events.php:3596
1000
- #: app/features/events.php:3788 app/features/fes/form.php:256
1001
- #: app/features/ix.php:3980 app/features/ix.php:4022
1002
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1003
  #: app/features/mec/styling.php:130
1004
  msgid "Title"
@@ -1039,7 +1039,7 @@ msgstr "Ex : 8:45"
1039
 
1040
  #: app/features/events.php:1419 app/features/events.php:1453
1041
  #: app/features/events.php:1514 app/features/events.php:1892
1042
- #: app/features/events.php:2074 app/features/events.php:3788
1043
  msgid "Description"
1044
  msgstr "Description"
1045
 
@@ -1047,8 +1047,8 @@ msgstr "Description"
1047
  #: app/features/events.php:1519 app/features/fes/form.php:959
1048
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1049
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1050
- #: app/libraries/main.php:577 app/libraries/main.php:6357
1051
- #: app/libraries/main.php:6411 app/modules/speakers/details.php:18
1052
  msgid "Speakers"
1053
  msgstr "Orateurs"
1054
 
@@ -1063,7 +1063,7 @@ msgstr "Liens de l'évenements"
1063
 
1064
  #: app/features/events.php:1553 app/features/events.php:1561
1065
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1066
- #: app/libraries/main.php:6384 app/libraries/main.php:6433
1067
  msgid "Event Link"
1068
  msgstr "Lien de l'événement"
1069
 
@@ -1088,8 +1088,8 @@ msgid "URL Shortener"
1088
  msgstr ""
1089
 
1090
  #: app/features/events.php:1571 app/features/events.php:1584
1091
- #: app/features/fes/form.php:817 app/libraries/main.php:6385
1092
- #: app/libraries/main.php:6434 app/skins/single.php:1126
1093
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1094
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1095
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
@@ -1127,7 +1127,7 @@ msgid "Total User Booking Limits"
1127
  msgstr "Nombre limite de réservation"
1128
 
1129
  #: app/features/events.php:1610 app/features/events.php:1835
1130
- #: app/libraries/book.php:63 app/libraries/main.php:6389
1131
  #: app/modules/booking/steps/tickets.php:137
1132
  #: app/modules/booking/steps/tickets.php:143
1133
  msgid "Tickets"
@@ -1142,7 +1142,7 @@ msgstr "Frais"
1142
  msgid "Ticket Variations / Options"
1143
  msgstr "Variations de tickets / options"
1144
 
1145
- #: app/features/events.php:1619 app/features/mec/booking.php:885
1146
  #: app/features/mec/support-page.php:118
1147
  msgid "Organizer Payment"
1148
  msgstr "Paiement de l’organisateur"
@@ -1240,8 +1240,8 @@ msgstr "Vérification de l’email"
1240
 
1241
  #: app/features/events.php:1763 app/features/events.php:1773
1242
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1243
- #: app/features/mec/booking.php:253 app/features/mec/booking.php:824
1244
- #: app/features/mec/booking.php:849
1245
  #: app/features/mec/meta_boxes/search_form.php:33
1246
  #: app/features/mec/meta_boxes/search_form.php:40
1247
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1347,8 +1347,8 @@ msgstr "Désactivé"
1347
 
1348
  #: app/features/events.php:1764 app/features/events.php:1774
1349
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1350
- #: app/features/mec/booking.php:254 app/features/mec/booking.php:823
1351
- #: app/features/mec/booking.php:850 app/features/mec/settings.php:106
1352
  msgid "Enabled"
1353
  msgstr "Activé"
1354
 
@@ -1396,8 +1396,8 @@ msgid "Ticket ID"
1396
  msgstr "Billets"
1397
 
1398
  #: app/features/events.php:1855 app/features/events.php:2039
1399
- #: app/features/events.php:3788 app/features/fes.php:243
1400
- #: app/features/ix.php:3980 app/features/ix.php:4022
1401
  #: app/features/labels.php:177 app/features/locations.php:262
1402
  #: app/features/organizers.php:203 app/features/speakers.php:282
1403
  msgid "ID"
@@ -1408,14 +1408,14 @@ msgid "Ticket Name"
1408
  msgstr "Nom du billet"
1409
 
1410
  #: app/features/events.php:1863 app/features/events.php:2046
1411
- #: app/features/events.php:3788 app/features/ix.php:3980
1412
- #: app/features/ix.php:4022
1413
  msgid "Start Time"
1414
  msgstr "Début"
1415
 
1416
  #: app/features/events.php:1876 app/features/events.php:2059
1417
- #: app/features/events.php:3788 app/features/ix.php:3980
1418
- #: app/features/ix.php:4022
1419
  msgid "End Time"
1420
  msgstr "Fin"
1421
 
@@ -1718,30 +1718,30 @@ msgstr "Paragraphe"
1718
  msgid "Fixed Fields"
1719
  msgstr "Champ obligatoire"
1720
 
1721
- #: app/features/events.php:3498 app/features/events.php:3516
1722
- #: app/features/events.php:3534 app/features/events.php:3552
1723
  #, php-format
1724
  msgid "Show all %s"
1725
  msgstr "Afficher tous les %s"
1726
 
1727
- #: app/features/events.php:3498
1728
  msgid "labels"
1729
  msgstr "labels"
1730
 
1731
- #: app/features/events.php:3516
1732
  msgid "locations"
1733
  msgstr "lieux"
1734
 
1735
- #: app/features/events.php:3534
1736
  msgid "organizers"
1737
  msgstr "organisateurs"
1738
 
1739
- #: app/features/events.php:3568
1740
  msgid "Attendees List"
1741
  msgstr "Liste des participants"
1742
 
1743
- #: app/features/events.php:3598 app/features/events.php:3788
1744
- #: app/features/ix.php:3980 app/features/ix.php:4022
1745
  #: app/features/locations.php:58 app/features/locations.php:263
1746
  #: app/features/locations.php:324 app/features/locations.php:326
1747
  #: app/features/locations.php:335
@@ -1760,8 +1760,8 @@ msgstr "Liste des participants"
1760
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1761
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1762
  #: app/features/popup/event.php:125 app/features/search.php:74
1763
- #: app/libraries/main.php:2641 app/libraries/main.php:6354
1764
- #: app/libraries/main.php:6408 app/libraries/skins.php:960
1765
  #: app/skins/single.php:943 app/skins/single.php:1386
1766
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1767
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
@@ -1769,48 +1769,48 @@ msgstr "Liste des participants"
1769
  msgid "Location"
1770
  msgstr "Lieu"
1771
 
1772
- #: app/features/events.php:3603
1773
  msgid "Repeat"
1774
  msgstr "Répetition"
1775
 
1776
- #: app/features/events.php:3604
1777
  msgid "Author"
1778
  msgstr "Auteur"
1779
 
1780
- #: app/features/events.php:3725 app/features/events.php:3726
1781
  #, fuzzy
1782
  #| msgid "iCal Export"
1783
  msgid "iCal / Outlook Export"
1784
  msgstr "Exporter vers iCal"
1785
 
1786
- #: app/features/events.php:3728 app/features/events.php:3729
1787
  msgid "CSV Export"
1788
  msgstr "Exporter en CSV"
1789
 
1790
- #: app/features/events.php:3731 app/features/events.php:3732
1791
  msgid "MS Excel Export"
1792
  msgstr "Exporter en Microsoft Excel"
1793
 
1794
- #: app/features/events.php:3734 app/features/events.php:3735
1795
  msgid "XML Export"
1796
  msgstr "Exporter en XML"
1797
 
1798
- #: app/features/events.php:3737 app/features/events.php:3738
1799
  msgid "JSON Export"
1800
  msgstr "Exporter en JSON"
1801
 
1802
- #: app/features/events.php:3740 app/features/events.php:3741
1803
- #: app/features/events.php:3897
1804
  msgid "Duplicate"
1805
  msgstr "Dupliquer"
1806
 
1807
- #: app/features/events.php:3788 app/features/ix.php:3980
1808
- #: app/features/ix.php:4022
1809
  msgid "Link"
1810
  msgstr "Lien"
1811
 
1812
- #: app/features/events.php:3788 app/features/ix.php:3980
1813
- #: app/features/ix.php:4022 app/features/locations.php:110
1814
  #: app/features/locations.php:180 app/features/locations.php:264
1815
  #: app/features/mec/meta_boxes/search_form.php:74
1816
  #: app/features/mec/meta_boxes/search_form.php:144
@@ -1826,46 +1826,46 @@ msgstr "Lien"
1826
  msgid "Address"
1827
  msgstr "Adresse"
1828
 
1829
- #: app/features/events.php:3788
1830
  #, php-format
1831
  msgid "%s Tel"
1832
  msgstr "%s Téléphone"
1833
 
1834
- #: app/features/events.php:3788
1835
  #, php-format
1836
  msgid "%s Email"
1837
  msgstr "%s mail"
1838
 
1839
- #: app/features/events.php:3788 app/features/fes/form.php:850
1840
  #: app/features/mec/settings.php:769
1841
  msgid "Featured Image"
1842
  msgstr "Image Principale"
1843
 
1844
- #: app/features/events.php:4117 app/features/fes.php:243
1845
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1846
- #: app/libraries/main.php:6388
1847
  msgid "Ticket"
1848
  msgstr "Billets"
1849
 
1850
- #: app/features/events.php:4120 app/features/profile/profile.php:186
1851
  msgid "Variations"
1852
  msgstr "Vérifications"
1853
 
1854
- #: app/features/events.php:4135 app/features/fes.php:316
1855
  msgid "Unknown"
1856
  msgstr "Inconnu"
1857
 
1858
- #: app/features/events.php:4161
1859
  msgid ""
1860
  "If you want to send an email, first select your attendees and then click in "
1861
  "the button below, please."
1862
  msgstr ""
1863
 
1864
- #: app/features/events.php:4161 app/features/mec/report.php:58
1865
  msgid "Send Email"
1866
  msgstr "Envoyer le mail"
1867
 
1868
- #: app/features/events.php:4165
1869
  msgid "No Attendees Found!"
1870
  msgstr "Aucune réservation trouvée!"
1871
 
@@ -2089,8 +2089,8 @@ msgstr "Supprimer l'image"
2089
  #: app/features/fes/form.php:891 app/features/labels.php:61
2090
  #: app/features/labels.php:221 app/features/mec.php:468
2091
  #: app/features/mec/meta_boxes/filter.php:72
2092
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6351
2093
- #: app/libraries/main.php:6405 app/skins/single.php:1156
2094
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2095
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2096
  msgid "Labels"
@@ -2168,27 +2168,27 @@ msgstr ""
2168
  msgid "An error occurred during the file upload! Please check permissions!"
2169
  msgstr ""
2170
 
2171
- #: app/features/ix.php:265 app/libraries/main.php:6636
2172
- #: app/libraries/main.php:6656
2173
  msgid "Confirmed"
2174
  msgstr "Confirmé"
2175
 
2176
- #: app/features/ix.php:266 app/libraries/main.php:6637
2177
- #: app/libraries/main.php:6664
2178
  msgid "Rejected"
2179
  msgstr "Rejeté"
2180
 
2181
- #: app/features/ix.php:270 app/features/mec/booking.php:992
2182
- #: app/features/mec/booking.php:1014 app/features/mec/modules.php:431
2183
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2184
- #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1313
2185
- #: app/features/mec/settings.php:1335 app/features/mec/single.php:446
2186
- #: app/features/mec/single.php:468 app/libraries/main.php:6684
2187
  msgid "Verified"
2188
  msgstr "Vérifié"
2189
 
2190
  #: app/features/ix.php:271 app/features/labels.php:118
2191
- #: app/features/labels.php:143 app/libraries/main.php:6685
2192
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2193
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2194
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
@@ -2224,88 +2224,88 @@ msgstr ""
2224
  msgid "The events are imported successfully!"
2225
  msgstr ""
2226
 
2227
- #: app/features/ix.php:1166
2228
  msgid "Third Party plugin is not installed and activated!"
2229
  msgstr ""
2230
 
2231
- #: app/features/ix.php:1190
2232
  msgid "Third Party plugin is invalid!"
2233
  msgstr ""
2234
 
2235
- #: app/features/ix.php:3165 app/features/ix.php:3223
2236
  #, fuzzy
2237
  #| msgid "Both of API key and Calendar ID are required!"
2238
  msgid "API key and Calendar ID are required!"
2239
  msgstr "La clé API et le Calendar ID sont requis !"
2240
 
2241
- #: app/features/ix.php:3218 app/features/ix.php:3663 app/features/ix.php:4398
2242
  #, fuzzy
2243
  #| msgid "Please select some events to import!"
2244
  msgid "Please select events to import!"
2245
  msgstr "Merci de sélectionner les évènements à Importer !"
2246
 
2247
- #: app/features/ix.php:3605 app/features/ix.php:3668
2248
  #, fuzzy
2249
  #| msgid "Both of API key and Calendar ID are required!"
2250
  msgid "API key and Group URL are required!"
2251
  msgstr "La clé API et le Calendar ID sont requis !"
2252
 
2253
- #: app/features/ix.php:3907
2254
  msgid "Check at Meetup"
2255
  msgstr ""
2256
 
2257
- #: app/features/ix.php:3980 app/features/ix.php:4022
2258
  msgid "Organizer Tel"
2259
  msgstr "Teléphone de l'organisateur"
2260
 
2261
- #: app/features/ix.php:3980 app/features/ix.php:4022
2262
  msgid "Organizer Email"
2263
  msgstr "Mail de l'organisateur"
2264
 
2265
- #: app/features/ix.php:4098
2266
  #, fuzzy
2267
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2268
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2269
  msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
2270
 
2271
- #: app/features/ix.php:4121
2272
  #, fuzzy, php-format
2273
  #| msgid "All seems good! Please click %s for authenticating your app."
2274
  msgid "All seems good! Please click %s to authenticate your app."
2275
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
2276
 
2277
- #: app/features/ix.php:4121 app/features/mec/settings.php:1236
2278
  msgid "here"
2279
  msgstr ""
2280
 
2281
- #: app/features/ix.php:4175
2282
  #, fuzzy
2283
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2284
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2285
  msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
2286
 
2287
- #: app/features/ix.php:4320
2288
  #, fuzzy, php-format
2289
  #| msgid "%s events added to Google Calendar successfully."
2290
  msgid "%s events added to Google Calendar with success."
2291
  msgstr "%s évènements ajoutés à Google Agenda avec succès."
2292
 
2293
- #: app/features/ix.php:4321
2294
  #, fuzzy, php-format
2295
  #| msgid "%s previously added events get updated."
2296
  msgid "%s Updated previously added events."
2297
  msgstr "%s évènements précédemment ajoutés ont été mis à jour."
2298
 
2299
- #: app/features/ix.php:4322
2300
  #, php-format
2301
  msgid "%s events failed to add for following reasons: %s"
2302
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
2303
 
2304
- #: app/features/ix.php:4354
2305
  msgid "Please insert your Facebook page's link."
2306
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
2307
 
2308
- #: app/features/ix.php:4365 app/features/ix.php:4407
2309
  #, fuzzy
2310
  #| msgid ""
2311
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2317,7 +2317,7 @@ msgstr ""
2317
  "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
2318
  "une adresse Facebook Page valide."
2319
 
2320
- #: app/features/ix.php:4402
2321
  msgid "Please insert your facebook page's link."
2322
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
2323
 
@@ -2489,9 +2489,9 @@ msgstr "Basculer"
2489
  msgid "Add to Google Calendar"
2490
  msgstr "Ajouter à Google Agenda"
2491
 
2492
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:994
2493
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2494
- #: app/features/mec/settings.php:1315 app/features/mec/single.php:448
2495
  msgid "Checking ..."
2496
  msgstr "Vérification..."
2497
 
@@ -2995,8 +2995,8 @@ msgstr "%s événement"
2995
 
2996
  #: app/features/locations.php:59 app/features/mec.php:469
2997
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
2998
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6353
2999
- #: app/libraries/main.php:6407
3000
  msgid "Locations"
3001
  msgstr "Lieux"
3002
 
@@ -3110,8 +3110,8 @@ msgstr "Choisir une image"
3110
  msgid "Don't show map in single event page"
3111
  msgstr "Ne pas afficher de carte pour cet événement"
3112
 
3113
- #: app/features/locations.php:398 app/libraries/main.php:6391
3114
- #: app/libraries/main.php:6438
3115
  msgid "Other Locations"
3116
  msgstr "Autres lieux"
3117
 
@@ -3196,7 +3196,7 @@ msgstr "Aide"
3196
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3197
  #: app/features/mec/meta_boxes/filter.php:71
3198
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3199
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
3200
  msgid "Organizers"
3201
  msgstr "Organisateurs"
3202
 
@@ -3397,9 +3397,9 @@ msgid "Search..."
3397
  msgstr "Recherche…"
3398
 
3399
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3400
- #: app/features/mec/booking.php:910 app/features/mec/booking.php:919
3401
- #: app/features/mec/booking.php:929 app/features/mec/booking.php:1011
3402
- #: app/features/mec/booking.php:1025 app/features/mec/messages.php:15
3403
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3404
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3405
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
@@ -3409,8 +3409,8 @@ msgstr "Recherche…"
3409
  #: app/features/mec/notifications.php:1218
3410
  #: app/features/mec/notifications.php:1324
3411
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3412
- #: app/features/mec/settings.php:1264 app/features/mec/settings.php:1274
3413
- #: app/features/mec/settings.php:1332 app/features/mec/settings.php:1346
3414
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3415
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3416
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
@@ -3708,7 +3708,7 @@ msgstr "Confirmation automatique pour les réservations payées"
3708
  msgid "Send confirmation email in auto confirmation mode"
3709
  msgstr ""
3710
 
3711
- #: app/features/mec/booking.php:412 app/libraries/main.php:568
3712
  #, fuzzy
3713
  #| msgid "Booking Style"
3714
  msgid "Booking Shortcode"
@@ -3741,8 +3741,8 @@ msgid ""
3741
  "new menu on the Dashboard > Booking"
3742
  msgstr ""
3743
 
3744
- #: app/features/mec/booking.php:446 app/features/mec/booking.php:816
3745
- #: app/libraries/main.php:570
3746
  msgid "Taxes / Fees"
3747
  msgstr "Taxes et frais"
3748
 
@@ -3754,7 +3754,7 @@ msgstr "Activer le module de taxes / frais"
3754
  msgid "Add Fee"
3755
  msgstr "Ajouter frais"
3756
 
3757
- #: app/features/mec/booking.php:523 app/libraries/main.php:571
3758
  msgid "Ticket Variations & Options"
3759
  msgstr "Variations de tickets & Options"
3760
 
@@ -3766,11 +3766,37 @@ msgstr "Activer module de d’options de tickets"
3766
  msgid "Add Variation / Option"
3767
  msgstr "Ajouter une variation / option"
3768
 
3769
- #: app/features/mec/booking.php:806
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3770
  msgid "Use WooCommerce as Payment System"
3771
  msgstr ""
3772
 
3773
- #: app/features/mec/booking.php:808
3774
  msgid ""
3775
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3776
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -3778,116 +3804,116 @@ msgid ""
3778
  "fields etc, you need to configure WooCommerce on your website."
3779
  msgstr ""
3780
 
3781
- #: app/features/mec/booking.php:810
3782
  msgid ""
3783
  "You cannot use following MEC features so you should use WooCommerc and its "
3784
  "addons if you need them."
3785
  msgstr ""
3786
 
3787
- #: app/features/mec/booking.php:812
3788
  #, fuzzy
3789
  #| msgid "Payment Gateways"
3790
  msgid "Payment gateways"
3791
  msgstr "Passerelle de paiement"
3792
 
3793
- #: app/features/mec/booking.php:813
3794
  #, fuzzy
3795
  #| msgid "Price per Date"
3796
  msgid "Price per dates of tickets"
3797
  msgstr "Prix par date"
3798
 
3799
- #: app/features/mec/booking.php:815
3800
  #, fuzzy
3801
  #| msgid "Ticket Variation"
3802
  msgid "Ticket variations"
3803
  msgstr "Vérification de ticket"
3804
 
3805
- #: app/features/mec/booking.php:820
3806
  #, fuzzy
3807
  #| msgid "Automatically complete WC orders"
3808
  msgid "Automatically complete WooCommerce orders"
3809
  msgstr "Compléter automatiquement les commandes WooCommerce"
3810
 
3811
- #: app/features/mec/booking.php:828
3812
  #, fuzzy
3813
  #| msgid "Automatically complete WC orders"
3814
  msgid "Auto WooCommerce orders"
3815
  msgstr "Compléter automatiquement les commandes WooCommerce"
3816
 
3817
- #: app/features/mec/booking.php:829
3818
  msgid "It applies only to the orders that are related to MEC."
3819
  msgstr "Cela s'applique uniquement aux commandes liées a l'extension M.E.C."
3820
 
3821
- #: app/features/mec/booking.php:837
3822
  msgid "After Add to Cart"
3823
  msgstr ""
3824
 
3825
- #: app/features/mec/booking.php:840
3826
  #, fuzzy
3827
  #| msgid "Redirection Page"
3828
  msgid "Redirect to Cart"
3829
  msgstr "Redirection"
3830
 
3831
- #: app/features/mec/booking.php:841
3832
  #, fuzzy
3833
  #| msgid "Redirection Page"
3834
  msgid "Redirect to Checkout"
3835
  msgstr "Redirection"
3836
 
3837
- #: app/features/mec/booking.php:846
3838
  #, fuzzy
3839
  #| msgid "Booking Form"
3840
  msgid "MEC Booking Form"
3841
  msgstr "Formulaire de réservation"
3842
 
3843
- #: app/features/mec/booking.php:855
3844
  msgid ""
3845
  "If enabled then users should fill the booking form in MEC and then they will "
3846
  "be redirected to checkout."
3847
  msgstr ""
3848
 
3849
- #: app/features/mec/booking.php:881
3850
  msgid "Enable Organizer Payment Module"
3851
  msgstr "Activer module de coupons"
3852
 
3853
- #: app/features/mec/booking.php:886
3854
  msgid ""
3855
  "By enabling this module, organizers are able to insert their own payment "
3856
  "credentials for enabled gateways per event and receive the payments directly!"
3857
  msgstr ""
3858
 
3859
- #: app/features/mec/booking.php:896
3860
  msgid "Disable / Enable payment gateways per event"
3861
  msgstr ""
3862
 
3863
- #: app/features/mec/booking.php:900
3864
  #, fuzzy
3865
  #| msgid "Payment Gateways"
3866
  msgid "Payment Gateways Per Event"
3867
  msgstr "Passerelle de paiement"
3868
 
3869
- #: app/features/mec/booking.php:901
3870
  msgid ""
3871
  "By enabling this module, users are able to disable / enable payment gateways "
3872
  "per event"
3873
  msgstr ""
3874
 
3875
- #: app/features/mec/booking.php:989 app/features/mec/messages.php:78
3876
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3877
- #: app/features/mec/settings.php:1310 app/features/mec/single.php:443
3878
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3879
  msgid "Saved"
3880
  msgstr "Sauvegardé"
3881
 
3882
- #: app/features/mec/booking.php:990 app/features/mec/messages.php:79
3883
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3884
- #: app/features/mec/settings.php:1311 app/features/mec/single.php:444
3885
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3886
  msgid "Settings Saved!"
3887
  msgstr ""
3888
 
3889
- #: app/features/mec/booking.php:1016 app/features/mec/modules.php:455
3890
- #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1337
3891
  #: app/features/mec/single.php:470
3892
  msgid "Please Refresh Page"
3893
  msgstr "Merci de Rafraichir la Page"
@@ -5130,7 +5156,7 @@ msgstr "Afficher le champ de recherche"
5130
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5131
  #: app/features/mec/single.php:386 app/features/search.php:86
5132
  #: app/features/speakers.php:60 app/features/speakers.php:283
5133
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
5134
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5135
  msgid "Speaker"
5136
  msgstr ""
@@ -6332,8 +6358,8 @@ msgstr ""
6332
  msgid "only once per hour"
6333
  msgstr "une fois par jour"
6334
 
6335
- #: app/features/mec/notifications.php:950 app/libraries/main.php:7446
6336
- #: app/libraries/main.php:7463
6337
  #, fuzzy
6338
  #| msgid "Hour"
6339
  msgid "Hours"
@@ -6603,7 +6629,7 @@ msgid "You can enable/disable Schema scripts"
6603
  msgstr ""
6604
 
6605
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6606
- #: app/libraries/main.php:6362 app/libraries/main.php:6416
6607
  msgid "Weekdays"
6608
  msgstr "Jours de la Semaine"
6609
 
@@ -6949,8 +6975,8 @@ msgstr "Au début de l'événement"
6949
  msgid "Let WordPress decide"
6950
  msgstr "Adresse"
6951
 
6952
- #: app/features/mec/settings.php:660 app/libraries/main.php:6638
6953
- #: app/libraries/main.php:6660
6954
  msgid "Pending"
6955
  msgstr "En attente"
6956
 
@@ -7108,8 +7134,8 @@ msgstr "Champ obligatoire"
7108
  msgid "Event Description"
7109
  msgstr "Description"
7110
 
7111
- #: app/features/mec/settings.php:930 app/libraries/main.php:6385
7112
- #: app/libraries/main.php:6434
7113
  msgid "More Info Link"
7114
  msgstr "Plus de lien d'info"
7115
 
@@ -7297,33 +7323,7 @@ msgstr "WooCommerce doit être installé et activé."
7297
  msgid "More information about the list ID can be found %s."
7298
  msgstr ""
7299
 
7300
- #: app/features/mec/settings.php:1241
7301
- #, fuzzy
7302
- #| msgid "Filter Options"
7303
- msgid "Upload Field Options"
7304
- msgstr "Options des filtres"
7305
-
7306
- #: app/features/mec/settings.php:1243
7307
- msgid "Mime types"
7308
- msgstr ""
7309
-
7310
- #: app/features/mec/settings.php:1247
7311
- msgid "Split mime types with \",\"."
7312
- msgstr ""
7313
-
7314
- #: app/features/mec/settings.php:1247
7315
- msgid "Default: jpeg,jpg,png,pdf"
7316
- msgstr ""
7317
-
7318
- #: app/features/mec/settings.php:1250
7319
- msgid "Maximum file size"
7320
- msgstr "Taille maximale de fichier"
7321
-
7322
- #: app/features/mec/settings.php:1254
7323
- msgid "The unit is Megabyte \"MB\""
7324
- msgstr ""
7325
-
7326
- #: app/features/mec/single.php:38 app/libraries/main.php:556
7327
  msgid "Single Event Page"
7328
  msgstr "Page d’événement"
7329
 
@@ -7433,7 +7433,7 @@ msgid ""
7433
  "the settings page.' tab"
7434
  msgstr ""
7435
 
7436
- #: app/features/mec/single.php:162 app/libraries/main.php:557
7437
  #, fuzzy
7438
  #| msgid "Custom Styles"
7439
  msgid "Custom Fields"
@@ -7484,7 +7484,7 @@ msgstr ""
7484
  "En utilisant cette option, vous pouvez inclure / exclure certains jours des "
7485
  "dates d'occurrence d'un événement."
7486
 
7487
- #: app/features/mec/single.php:286 app/libraries/main.php:560
7488
  msgid "Additional Organizers"
7489
  msgstr "Organisateur additionnels"
7490
 
@@ -7513,7 +7513,7 @@ msgstr ""
7513
  "Afficher l'option \"Journée Exceptionnelle\" lors de la création/édition de "
7514
  "la page d'un événement"
7515
 
7516
- #: app/features/mec/single.php:318 app/libraries/main.php:562
7517
  #: app/skins/single.php:170 app/skins/single.php:435
7518
  msgid "Related Events"
7519
  msgstr "Evénement à la une"
@@ -7526,7 +7526,7 @@ msgstr ""
7526
  msgid "Select Taxonomies:"
7527
  msgstr "Taxonomies"
7528
 
7529
- #: app/features/mec/single.php:360 app/libraries/main.php:563
7530
  #, fuzzy
7531
  #| msgid "Next/Previous Buttons"
7532
  msgid "Next / Previous Events"
@@ -8338,8 +8338,8 @@ msgstr "ex : votre@surnom.com"
8338
  msgid "eg. https://webnus.net"
8339
  msgstr "eg. https://webnus.net"
8340
 
8341
- #: app/features/organizers.php:312 app/libraries/main.php:6390
8342
- #: app/libraries/main.php:6437 app/skins/single.php:1314
8343
  msgid "Other Organizers"
8344
  msgstr "Autres organisateurs"
8345
 
@@ -8598,9 +8598,9 @@ msgstr "Recherche"
8598
  msgid "No search result."
8599
  msgstr ""
8600
 
8601
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6392
8602
- #: app/libraries/main.php:6439 app/libraries/notifications.php:1256
8603
- #: app/libraries/render.php:531 app/libraries/render.php:853
8604
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8605
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8606
  #: app/modules/next-event/details.php:154
@@ -8691,9 +8691,9 @@ msgid ""
8691
  "section and speaker widget section!"
8692
  msgstr ""
8693
 
8694
- #: app/features/wc.php:103 app/libraries/notifications.php:1241
8695
- #: app/libraries/notifications.php:1256 app/libraries/notifications.php:1267
8696
- #: app/libraries/notifications.php:1536 app/libraries/notifications.php:1537
8697
  #, php-format
8698
  msgid "%s to %s"
8699
  msgstr "%s en %s"
@@ -8713,11 +8713,11 @@ msgstr ""
8713
  msgid "%s Price"
8714
  msgstr ""
8715
 
8716
- #: app/libraries/book.php:703 app/libraries/book.php:794
8717
  msgid "Discount"
8718
  msgstr "Réduction"
8719
 
8720
- #: app/libraries/book.php:881 app/modules/booking/default.php:426
8721
  #: app/modules/booking/default.php:531
8722
  msgid "Download Invoice"
8723
  msgstr ""
@@ -8849,49 +8849,49 @@ msgstr "Vue sur Slider"
8849
  msgid "Timeline View"
8850
  msgstr "Vue chronologique"
8851
 
8852
- #: app/libraries/main.php:391 app/libraries/main.php:6364
8853
- #: app/libraries/main.php:6418
8854
  msgid "SU"
8855
  msgstr "DIM."
8856
 
8857
- #: app/libraries/main.php:392 app/libraries/main.php:6365
8858
- #: app/libraries/main.php:6419
8859
  msgid "MO"
8860
  msgstr "LUN."
8861
 
8862
- #: app/libraries/main.php:393 app/libraries/main.php:6366
8863
- #: app/libraries/main.php:6420
8864
  msgid "TU"
8865
  msgstr "MAR."
8866
 
8867
- #: app/libraries/main.php:394 app/libraries/main.php:6367
8868
- #: app/libraries/main.php:6421
8869
  msgid "WE"
8870
  msgstr "MER."
8871
 
8872
- #: app/libraries/main.php:395 app/libraries/main.php:6368
8873
- #: app/libraries/main.php:6422
8874
  msgid "TH"
8875
  msgstr "JEU."
8876
 
8877
- #: app/libraries/main.php:396 app/libraries/main.php:6369
8878
- #: app/libraries/main.php:6423
8879
  msgid "FR"
8880
  msgstr "VEN."
8881
 
8882
- #: app/libraries/main.php:397 app/libraries/main.php:6370
8883
- #: app/libraries/main.php:6424
8884
  msgid "SA"
8885
  msgstr "SAM."
8886
 
8887
- #: app/libraries/main.php:552
8888
- msgid "Upload Field"
8889
- msgstr "Mettre une image en ligne"
8890
-
8891
- #: app/libraries/main.php:561
8892
  msgid "Additional Locations"
8893
  msgstr "Lieux additionnels"
8894
 
 
 
 
 
8895
  #: app/libraries/main.php:726
8896
  msgid "Modules"
8897
  msgstr "Modules"
@@ -9214,109 +9214,109 @@ msgstr "Insérez une étiquette pour cette option"
9214
  msgid "Free"
9215
  msgstr "Gratuite"
9216
 
9217
- #: app/libraries/main.php:4447 app/libraries/main.php:6699
9218
  msgid "M.E. Calender"
9219
  msgstr "M.E Calendrier"
9220
 
9221
- #: app/libraries/main.php:4603
9222
  #, php-format
9223
  msgid "Copy of %s"
9224
  msgstr "Copie de %s"
9225
 
9226
- #: app/libraries/main.php:5475
9227
  msgid "Booked an event."
9228
  msgstr "Réserver un événement"
9229
 
9230
- #: app/libraries/main.php:5516
9231
  #, php-format
9232
  msgid "%s booked %s event."
9233
  msgstr "%s réservé %s événement"
9234
 
9235
- #: app/libraries/main.php:6347 app/libraries/main.php:6401
9236
  msgid "Taxonomies"
9237
  msgstr "Taxonomies"
9238
 
9239
- #: app/libraries/main.php:6349 app/libraries/main.php:6403
9240
  msgid "Category Plural Label"
9241
  msgstr "Catégorie au pluriel"
9242
 
9243
- #: app/libraries/main.php:6350 app/libraries/main.php:6404
9244
  msgid "Category Singular Label"
9245
  msgstr "Catégorie au singulier"
9246
 
9247
- #: app/libraries/main.php:6351 app/libraries/main.php:6405
9248
  msgid "Label Plural Label"
9249
  msgstr "Étiquettes au pluriel"
9250
 
9251
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9252
  msgid "Label Singular Label"
9253
  msgstr "Étiquettes au singulier"
9254
 
9255
- #: app/libraries/main.php:6352 app/libraries/main.php:6406
9256
  msgid "label"
9257
  msgstr "texte"
9258
 
9259
- #: app/libraries/main.php:6353 app/libraries/main.php:6407
9260
  msgid "Location Plural Label"
9261
  msgstr "Lieu au pluriel"
9262
 
9263
- #: app/libraries/main.php:6354 app/libraries/main.php:6408
9264
  msgid "Location Singular Label"
9265
  msgstr "Lieu au singulier"
9266
 
9267
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
9268
  msgid "Organizer Plural Label"
9269
  msgstr "Organisateur au pluriel"
9270
 
9271
- #: app/libraries/main.php:6356 app/libraries/main.php:6410
9272
  msgid "Organizer Singular Label"
9273
  msgstr "Organisateur au singulier"
9274
 
9275
- #: app/libraries/main.php:6357 app/libraries/main.php:6411
9276
  msgid "Speaker Plural Label"
9277
  msgstr "Étiquettes au pluriel"
9278
 
9279
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
9280
  msgid "Speaker Singular Label"
9281
  msgstr "Étiquettes au singulier"
9282
 
9283
- #: app/libraries/main.php:6364 app/libraries/main.php:6418
9284
  msgid "Sunday abbreviation"
9285
  msgstr "Abréviation de Dimanche"
9286
 
9287
- #: app/libraries/main.php:6365 app/libraries/main.php:6419
9288
  msgid "Monday abbreviation"
9289
  msgstr "Abréviation de Lundi"
9290
 
9291
- #: app/libraries/main.php:6366 app/libraries/main.php:6420
9292
  msgid "Tuesday abbreviation"
9293
  msgstr "Abréviation de Mardi"
9294
 
9295
- #: app/libraries/main.php:6367 app/libraries/main.php:6421
9296
  msgid "Wednesday abbreviation"
9297
  msgstr "Abréviation de Mercredi"
9298
 
9299
- #: app/libraries/main.php:6368 app/libraries/main.php:6422
9300
  msgid "Thursday abbreviation"
9301
  msgstr "Abréviation de Jeudi"
9302
 
9303
- #: app/libraries/main.php:6369 app/libraries/main.php:6423
9304
  msgid "Friday abbreviation"
9305
  msgstr "Abréviation de Vendredi"
9306
 
9307
- #: app/libraries/main.php:6370 app/libraries/main.php:6424
9308
  msgid "Saturday abbreviation"
9309
  msgstr "Abréviation de Samedi"
9310
 
9311
- #: app/libraries/main.php:6374 app/libraries/main.php:6428
9312
  msgid "Others"
9313
  msgstr "Autres"
9314
 
9315
- #: app/libraries/main.php:6376
9316
  msgid "Booking Success Message"
9317
  msgstr "Message de succès de réservation"
9318
 
9319
- #: app/libraries/main.php:6376
9320
  #, fuzzy
9321
  #| msgid ""
9322
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -9328,60 +9328,60 @@ msgstr ""
9328
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
9329
  "vérification peut être nécessaires, contrôlez votre boite mail."
9330
 
9331
- #: app/libraries/main.php:6377
9332
  #, fuzzy
9333
  #| msgid "Booking Success Message"
9334
  msgid "Booking Restriction Message 1"
9335
  msgstr "Message de succès de réservation"
9336
 
9337
- #: app/libraries/main.php:6377
9338
  #, php-format
9339
  msgid ""
9340
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9341
  "tickets."
9342
  msgstr ""
9343
 
9344
- #: app/libraries/main.php:6378
9345
  #, fuzzy
9346
  #| msgid "Booking Success Message"
9347
  msgid "Booking Restriction Message 2"
9348
  msgstr "Message de succès de réservation"
9349
 
9350
- #: app/libraries/main.php:6378
9351
  #, php-format
9352
  msgid ""
9353
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9354
  "tickets."
9355
  msgstr ""
9356
 
9357
- #: app/libraries/main.php:6379
9358
  #, fuzzy
9359
  #| msgid "Booking Success Message"
9360
  msgid "Booking IP Restriction Message"
9361
  msgstr "Message de succès de réservation"
9362
 
9363
- #: app/libraries/main.php:6379
9364
  #, php-format
9365
  msgid "Maximum allowed number of tickets that you can book is %s."
9366
  msgstr ""
9367
 
9368
- #: app/libraries/main.php:6380
9369
  #, fuzzy
9370
  #| msgid "Booking Options"
9371
  msgid "Booking Button"
9372
  msgstr "Options de Réservation"
9373
 
9374
- #: app/libraries/main.php:6380 app/libraries/skins.php:1259
9375
  #: app/modules/booking/steps/tickets.php:102
9376
  msgid "Book Event"
9377
  msgstr "Réservez pour cet événement"
9378
 
9379
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9380
  #: app/widgets/single.php:131
9381
  msgid "Register Button"
9382
  msgstr "Boutons d'inscription"
9383
 
9384
- #: app/libraries/main.php:6381 app/libraries/main.php:6430
9385
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9386
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9387
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
@@ -9399,11 +9399,11 @@ msgstr "Boutons d'inscription"
9399
  msgid "REGISTER"
9400
  msgstr "S'INSCRIRE"
9401
 
9402
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9403
  msgid "View Detail Button"
9404
  msgstr "Afficher le boutons de détail"
9405
 
9406
- #: app/libraries/main.php:6382 app/libraries/main.php:6431
9407
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9408
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9409
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
@@ -9415,134 +9415,134 @@ msgstr "Afficher le boutons de détail"
9415
  msgid "View Detail"
9416
  msgstr "En savoir plus"
9417
 
9418
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9419
  msgid "Event Detail Button"
9420
  msgstr "Bouton de détail de l'événement"
9421
 
9422
- #: app/libraries/main.php:6383 app/libraries/main.php:6432
9423
  msgid "Event Detail"
9424
  msgstr "Détails"
9425
 
9426
- #: app/libraries/main.php:6388
9427
  msgid "Ticket (Singular)"
9428
  msgstr ""
9429
 
9430
- #: app/libraries/main.php:6389
9431
  msgid "Tickets (Plural)"
9432
  msgstr ""
9433
 
9434
- #: app/libraries/main.php:6547
9435
  msgid "EventON"
9436
  msgstr ""
9437
 
9438
- #: app/libraries/main.php:6548
9439
  msgid "The Events Calendar"
9440
  msgstr ""
9441
 
9442
- #: app/libraries/main.php:6549
9443
  msgid "Events Schedule WP Plugin"
9444
  msgstr ""
9445
 
9446
- #: app/libraries/main.php:6550
9447
  msgid "Calendarize It"
9448
  msgstr ""
9449
 
9450
- #: app/libraries/main.php:6551
9451
  msgid "Event Espresso"
9452
  msgstr "Labels d'événement"
9453
 
9454
- #: app/libraries/main.php:6552
9455
  msgid "Events Manager (Recurring)"
9456
  msgstr "Événement récurrent"
9457
 
9458
- #: app/libraries/main.php:6553
9459
  msgid "Events Manager (Single)"
9460
  msgstr "Modern Events Calendar"
9461
 
9462
- #: app/libraries/main.php:6554
9463
  #, fuzzy
9464
  #| msgid "Events Manager (Single)"
9465
  msgid "WP Event Manager"
9466
  msgstr "Modern Events Calendar"
9467
 
9468
- #: app/libraries/main.php:6686
9469
  msgid "Waiting"
9470
  msgstr "En attente"
9471
 
9472
- #: app/libraries/main.php:6729
9473
  #, fuzzy
9474
  #| msgid "Sunday"
9475
  msgid "Sun"
9476
  msgstr "Dimanche"
9477
 
9478
- #: app/libraries/main.php:6729
9479
  #, fuzzy
9480
  #| msgid "Month"
9481
  msgid "Mon"
9482
  msgstr "Mois"
9483
 
9484
- #: app/libraries/main.php:6729
9485
  #, fuzzy
9486
  #| msgid "Tel"
9487
  msgid "Tue"
9488
  msgstr "Téléphone"
9489
 
9490
- #: app/libraries/main.php:6729
9491
  msgid "Wed"
9492
  msgstr ""
9493
 
9494
- #: app/libraries/main.php:6729
9495
  msgid "Thu"
9496
  msgstr ""
9497
 
9498
- #: app/libraries/main.php:6729
9499
  #, fuzzy
9500
  #| msgid "Friday"
9501
  msgid "Fri"
9502
  msgstr "Vendredi"
9503
 
9504
- #: app/libraries/main.php:6729
9505
  #, fuzzy
9506
  #| msgid "Start"
9507
  msgid "Sat"
9508
  msgstr "Démarrer"
9509
 
9510
- #: app/libraries/main.php:6895 app/libraries/render.php:80
9511
  #: app/libraries/render.php:445
9512
  msgid "Skin controller does not exist."
9513
  msgstr "Le contrôleur de Skin n'existe pas."
9514
 
9515
- #: app/libraries/main.php:7110
9516
  msgid "Sold Out"
9517
  msgstr "Épuisé!"
9518
 
9519
- #: app/libraries/main.php:7121
9520
  msgid "Last Few Tickets"
9521
  msgstr "Bientôt complet"
9522
 
9523
- #: app/libraries/main.php:7452 app/libraries/main.php:7469
9524
  #, fuzzy
9525
  #| msgid "minutes"
9526
  msgid "Minutes"
9527
  msgstr "minutes"
9528
 
9529
- #: app/libraries/main.php:7474
9530
  msgid "AM / PM"
9531
  msgstr ""
9532
 
9533
- #: app/libraries/main.php:7475
9534
  msgid "AM"
9535
  msgstr "du matin"
9536
 
9537
- #: app/libraries/main.php:7476
9538
  msgid "PM"
9539
  msgstr "de l'après midi"
9540
 
9541
- #: app/libraries/main.php:7484
9542
  msgid "Ongoing..."
9543
  msgstr ""
9544
 
9545
- #: app/libraries/main.php:7485
9546
  #, fuzzy
9547
  #| msgid "Expired Events"
9548
  msgid "Expired!"
@@ -9574,45 +9574,45 @@ msgstr "réservation annulée"
9574
  msgid "A new booking is received."
9575
  msgstr "Une nouvelle réservation est enregistrée."
9576
 
9577
- #: app/libraries/notifications.php:852
9578
  msgid "A new event is added."
9579
  msgstr "Un nouvel événement est ajouté."
9580
 
9581
- #: app/libraries/notifications.php:968
9582
  msgid "Your event is published."
9583
  msgstr "Événement Publié."
9584
 
9585
- #: app/libraries/notifications.php:1118
9586
  #, fuzzy
9587
  #| msgid "Event Color"
9588
  msgid "Event is soldout!"
9589
  msgstr "Couleur de l'événement"
9590
 
9591
- #: app/libraries/notifications.php:1480
9592
  msgid "to"
9593
  msgstr ""
9594
 
9595
- #: app/libraries/notifications.php:1501 app/modules/export/details.php:48
9596
  msgid "+ Add to Google Calendar"
9597
  msgstr "+ Ajouter à mon Agenda Google"
9598
 
9599
- #: app/libraries/notifications.php:1502 app/modules/export/details.php:49
9600
  #, fuzzy
9601
  #| msgid "+ iCal export"
9602
  msgid "+ iCal / Outlook export"
9603
  msgstr "+ Exporter vers iCal"
9604
 
9605
- #: app/libraries/notifications.php:1551
9606
  #, fuzzy, php-format
9607
  #| msgid "+ Add to Google Calendar"
9608
  msgid "+ %s to Google Calendar"
9609
  msgstr "+ Ajouter à mon Agenda Google"
9610
 
9611
- #: app/libraries/notifications.php:1631
9612
  msgid "Yes"
9613
  msgstr "Oui"
9614
 
9615
- #: app/libraries/notifications.php:1631
9616
  msgid "No"
9617
  msgstr "Non"
9618
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-11-18 11:01+0330\n"
5
+ "PO-Revision-Date: 2020-11-18 11:02+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
105
 
106
  #: app/features/contextual.php:62 app/features/events.php:1617
107
  #: app/features/events.php:2513 app/features/mec/booking.php:606
108
+ #: app/features/mec/booking.php:872 app/features/mec/support.php:29
109
+ #: app/libraries/main.php:571
110
  msgid "Booking Form"
111
  msgstr "Formulaire de réservation"
112
 
120
  msgstr ""
121
 
122
  #: app/features/contextual.php:70 app/features/events.php:1625
123
+ #: app/features/mec/booking.php:816 app/features/mec/support-page.php:115
124
  #: app/features/mec/support.php:36 app/libraries/main.php:573
125
  msgid "Payment Gateways"
126
  msgstr "Passerelle de paiement"
226
  msgstr "Options de Google reCAPTCHA"
227
 
228
  #: app/features/contextual.php:258 app/features/mec/single.php:248
229
+ #: app/libraries/main.php:557
230
  msgid "Countdown Options"
231
  msgstr "Options du Compte à Rebours"
232
 
245
  msgstr "Réglages du formulaire de création d’événements"
246
 
247
  #: app/features/contextual.php:298 app/features/events.php:345
248
+ #: app/libraries/main.php:558
249
  msgid "Exceptional Days"
250
  msgstr "Journées Exceptionnelles"
251
 
252
  #: app/features/contextual.php:308 app/features/events.php:315
253
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
254
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
255
+ #: app/libraries/main.php:566 app/libraries/main.php:597
256
  #: app/libraries/main.php:684
257
  msgid "Booking"
258
  msgstr "Réservation"
259
 
260
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
261
+ #: app/features/mec/booking.php:832 app/libraries/main.php:568
262
  msgid "Coupons"
263
  msgstr "Bons de réduction"
264
 
312
  msgstr ""
313
 
314
  #: app/features/events.php:167 app/features/ix/export.php:34
315
+ #: app/features/mec/dashboard.php:265 app/libraries/main.php:5542
316
+ #: app/libraries/main.php:5562 app/skins/daily_view/tpl.php:82
317
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
318
  #: app/skins/yearly_view/tpl.php:71
319
  msgid "Events"
337
  msgid "Add New Event"
338
  msgstr "Ajouter un nouvel événement"
339
 
340
+ #: app/features/events.php:171 app/features/ix.php:4401
341
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
342
  #: app/skins/map/tpl.php:88
343
  msgid "No events found!"
360
  msgid "No events found in Trash!"
361
  msgstr "Aucun événement trouvé dans la corbeille !"
362
 
363
+ #: app/features/events.php:192 app/features/events.php:3599
364
  #: app/features/mec/meta_boxes/display_options.php:1463
365
  #: app/features/mec/meta_boxes/search_form.php:31
366
  #: app/features/mec/meta_boxes/search_form.php:101
375
  #: app/features/mec/meta_boxes/search_form.php:760
376
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
377
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
378
+ #: app/features/search.php:68 app/libraries/main.php:6341
379
+ #: app/libraries/main.php:6395 app/libraries/skins.php:934
380
  #: app/skins/single.php:1016 app/skins/single/default.php:219
381
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
382
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
383
  msgid "Category"
384
  msgstr "Catégorie"
385
 
386
+ #: app/features/events.php:193 app/features/events.php:3554
387
  #: app/features/fes/form.php:865 app/features/mec.php:467
388
  #: app/features/mec/meta_boxes/filter.php:69
389
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6340
390
+ #: app/libraries/main.php:6394
391
  msgid "Categories"
392
  msgstr "Catégories"
393
 
490
  msgid "Links"
491
  msgstr "Lien"
492
 
493
+ #: app/features/events.php:349 app/features/events.php:3601
494
+ #: app/features/events.php:3790 app/features/ix.php:3990
495
+ #: app/features/ix.php:4032
496
  #: app/features/mec/meta_boxes/display_options.php:1466
497
  #: app/features/mec/meta_boxes/search_form.php:46
498
  #: app/features/mec/meta_boxes/search_form.php:116
510
  #: app/features/organizers.php:204 app/features/organizers.php:260
511
  #: app/features/organizers.php:262 app/features/organizers.php:271
512
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
513
+ #: app/features/search.php:80 app/libraries/main.php:6347
514
+ #: app/libraries/main.php:6401 app/libraries/skins.php:986
515
  #: app/skins/single.php:1264 app/skins/single/default.php:244
516
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
517
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
520
 
521
  #: app/features/events.php:350 app/features/events.php:1165
522
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
523
+ #: app/libraries/main.php:6378 app/libraries/main.php:6427
524
  #: app/skins/single.php:1042 app/skins/single/default.php:142
525
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
526
  #: app/skins/single/modern.php:237
542
  msgstr "Coordonnées de l'Invité"
543
 
544
  #: app/features/events.php:511 app/features/events.php:2499
545
+ #: app/features/events.php:4113 app/features/fes.php:243
546
  #: app/features/fes/form.php:795 app/features/labels.php:178
547
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
548
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
549
+ #: app/libraries/notifications.php:1617 app/modules/booking/steps/form.php:63
550
  msgid "Name"
551
  msgstr "Nom"
552
 
553
  #: app/features/events.php:512 app/features/events.php:2508
554
  #: app/features/events.php:2575 app/features/events.php:2664
555
+ #: app/features/events.php:4116 app/features/fes.php:243
556
  #: app/features/fes/form.php:791 app/features/login/login.php:5
557
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
558
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
560
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
561
  #: app/features/speakers.php:204 app/libraries/main.php:1872
562
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
563
+ #: app/libraries/notifications.php:1618 app/modules/booking/steps/form.php:72
564
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
565
  #: app/skins/single.php:1340 app/skins/single/default.php:261
566
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
579
  msgstr "Date et heure"
580
 
581
  #: app/features/events.php:528 app/features/events.php:532
582
+ #: app/features/events.php:3602 app/features/events.php:3790
583
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
584
+ #: app/features/ix.php:3990 app/features/ix.php:4032
585
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
586
  #: app/features/mec/meta_boxes/display_options.php:52
587
  #: app/features/mec/meta_boxes/display_options.php:295
603
  msgstr "Date de début"
604
 
605
  #: app/features/events.php:547 app/features/events.php:551
606
+ #: app/features/events.php:3603 app/features/events.php:3790
607
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
608
+ #: app/features/ix.php:3990 app/features/ix.php:4032
609
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
610
  #: app/features/popup/event.php:92
611
  msgid "End Date"
661
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
662
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
663
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
664
+ #: app/features/mec/booking.php:848 app/features/mec/booking.php:874
665
  #: app/features/mec/dashboard.php:71
666
  #: app/features/mec/meta_boxes/display_options.php:85
667
  #: app/features/mec/meta_boxes/display_options.php:98
937
  msgid "Show only one occurrence of this event"
938
  msgstr "Afficher uniquement une occurence pour cet événement"
939
 
940
+ #: app/features/events.php:1161 app/features/events.php:3790
941
+ #: app/features/fes/form.php:833 app/features/ix.php:3990
942
+ #: app/features/ix.php:4032 app/features/mec/settings.php:763
943
+ #: app/libraries/main.php:6377 app/libraries/main.php:6426
944
  #: app/widgets/single.php:103
945
  msgid "Event Cost"
946
  msgstr "Tarif de l'événement"
972
  "multiple day occurrences."
973
  msgstr ""
974
 
975
+ #: app/features/events.php:1334 app/libraries/render.php:560
976
  msgid "Day 1"
977
  msgstr ""
978
 
996
  #: app/features/events.php:1376 app/features/events.php:1415
997
  #: app/features/events.php:1450 app/features/events.php:1482
998
  #: app/features/events.php:1511 app/features/events.php:2371
999
+ #: app/features/events.php:2418 app/features/events.php:3598
1000
+ #: app/features/events.php:3790 app/features/fes/form.php:256
1001
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1002
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
1003
  #: app/features/mec/styling.php:130
1004
  msgid "Title"
1039
 
1040
  #: app/features/events.php:1419 app/features/events.php:1453
1041
  #: app/features/events.php:1514 app/features/events.php:1892
1042
+ #: app/features/events.php:2074 app/features/events.php:3790
1043
  msgid "Description"
1044
  msgstr "Description"
1045
 
1047
  #: app/features/events.php:1519 app/features/fes/form.php:959
1048
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1049
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1050
+ #: app/libraries/main.php:577 app/libraries/main.php:6348
1051
+ #: app/libraries/main.php:6402 app/modules/speakers/details.php:18
1052
  msgid "Speakers"
1053
  msgstr "Orateurs"
1054
 
1063
 
1064
  #: app/features/events.php:1553 app/features/events.php:1561
1065
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1066
+ #: app/libraries/main.php:6375 app/libraries/main.php:6424
1067
  msgid "Event Link"
1068
  msgstr "Lien de l'événement"
1069
 
1088
  msgstr ""
1089
 
1090
  #: app/features/events.php:1571 app/features/events.php:1584
1091
+ #: app/features/fes/form.php:817 app/libraries/main.php:6376
1092
+ #: app/libraries/main.php:6425 app/skins/single.php:1126
1093
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1094
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1095
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1127
  msgstr "Nombre limite de réservation"
1128
 
1129
  #: app/features/events.php:1610 app/features/events.php:1835
1130
+ #: app/libraries/book.php:63 app/libraries/main.php:6380
1131
  #: app/modules/booking/steps/tickets.php:137
1132
  #: app/modules/booking/steps/tickets.php:143
1133
  msgid "Tickets"
1142
  msgid "Ticket Variations / Options"
1143
  msgstr "Variations de tickets / options"
1144
 
1145
+ #: app/features/events.php:1619 app/features/mec/booking.php:903
1146
  #: app/features/mec/support-page.php:118
1147
  msgid "Organizer Payment"
1148
  msgstr "Paiement de l’organisateur"
1240
 
1241
  #: app/features/events.php:1763 app/features/events.php:1773
1242
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1243
+ #: app/features/mec/booking.php:253 app/features/mec/booking.php:842
1244
+ #: app/features/mec/booking.php:867
1245
  #: app/features/mec/meta_boxes/search_form.php:33
1246
  #: app/features/mec/meta_boxes/search_form.php:40
1247
  #: app/features/mec/meta_boxes/search_form.php:48
1347
 
1348
  #: app/features/events.php:1764 app/features/events.php:1774
1349
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1350
+ #: app/features/mec/booking.php:254 app/features/mec/booking.php:841
1351
+ #: app/features/mec/booking.php:868 app/features/mec/settings.php:106
1352
  msgid "Enabled"
1353
  msgstr "Activé"
1354
 
1396
  msgstr "Billets"
1397
 
1398
  #: app/features/events.php:1855 app/features/events.php:2039
1399
+ #: app/features/events.php:3790 app/features/fes.php:243
1400
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1401
  #: app/features/labels.php:177 app/features/locations.php:262
1402
  #: app/features/organizers.php:203 app/features/speakers.php:282
1403
  msgid "ID"
1408
  msgstr "Nom du billet"
1409
 
1410
  #: app/features/events.php:1863 app/features/events.php:2046
1411
+ #: app/features/events.php:3790 app/features/ix.php:3990
1412
+ #: app/features/ix.php:4032
1413
  msgid "Start Time"
1414
  msgstr "Début"
1415
 
1416
  #: app/features/events.php:1876 app/features/events.php:2059
1417
+ #: app/features/events.php:3790 app/features/ix.php:3990
1418
+ #: app/features/ix.php:4032
1419
  msgid "End Time"
1420
  msgstr "Fin"
1421
 
1718
  msgid "Fixed Fields"
1719
  msgstr "Champ obligatoire"
1720
 
1721
+ #: app/features/events.php:3500 app/features/events.php:3518
1722
+ #: app/features/events.php:3536 app/features/events.php:3554
1723
  #, php-format
1724
  msgid "Show all %s"
1725
  msgstr "Afficher tous les %s"
1726
 
1727
+ #: app/features/events.php:3500
1728
  msgid "labels"
1729
  msgstr "labels"
1730
 
1731
+ #: app/features/events.php:3518
1732
  msgid "locations"
1733
  msgstr "lieux"
1734
 
1735
+ #: app/features/events.php:3536
1736
  msgid "organizers"
1737
  msgstr "organisateurs"
1738
 
1739
+ #: app/features/events.php:3570
1740
  msgid "Attendees List"
1741
  msgstr "Liste des participants"
1742
 
1743
+ #: app/features/events.php:3600 app/features/events.php:3790
1744
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1745
  #: app/features/locations.php:58 app/features/locations.php:263
1746
  #: app/features/locations.php:324 app/features/locations.php:326
1747
  #: app/features/locations.php:335
1760
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1761
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1762
  #: app/features/popup/event.php:125 app/features/search.php:74
1763
+ #: app/libraries/main.php:2641 app/libraries/main.php:6345
1764
+ #: app/libraries/main.php:6399 app/libraries/skins.php:960
1765
  #: app/skins/single.php:943 app/skins/single.php:1386
1766
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1767
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
1769
  msgid "Location"
1770
  msgstr "Lieu"
1771
 
1772
+ #: app/features/events.php:3605
1773
  msgid "Repeat"
1774
  msgstr "Répetition"
1775
 
1776
+ #: app/features/events.php:3606
1777
  msgid "Author"
1778
  msgstr "Auteur"
1779
 
1780
+ #: app/features/events.php:3727 app/features/events.php:3728
1781
  #, fuzzy
1782
  #| msgid "iCal Export"
1783
  msgid "iCal / Outlook Export"
1784
  msgstr "Exporter vers iCal"
1785
 
1786
+ #: app/features/events.php:3730 app/features/events.php:3731
1787
  msgid "CSV Export"
1788
  msgstr "Exporter en CSV"
1789
 
1790
+ #: app/features/events.php:3733 app/features/events.php:3734
1791
  msgid "MS Excel Export"
1792
  msgstr "Exporter en Microsoft Excel"
1793
 
1794
+ #: app/features/events.php:3736 app/features/events.php:3737
1795
  msgid "XML Export"
1796
  msgstr "Exporter en XML"
1797
 
1798
+ #: app/features/events.php:3739 app/features/events.php:3740
1799
  msgid "JSON Export"
1800
  msgstr "Exporter en JSON"
1801
 
1802
+ #: app/features/events.php:3742 app/features/events.php:3743
1803
+ #: app/features/events.php:3899
1804
  msgid "Duplicate"
1805
  msgstr "Dupliquer"
1806
 
1807
+ #: app/features/events.php:3790 app/features/ix.php:3990
1808
+ #: app/features/ix.php:4032
1809
  msgid "Link"
1810
  msgstr "Lien"
1811
 
1812
+ #: app/features/events.php:3790 app/features/ix.php:3990
1813
+ #: app/features/ix.php:4032 app/features/locations.php:110
1814
  #: app/features/locations.php:180 app/features/locations.php:264
1815
  #: app/features/mec/meta_boxes/search_form.php:74
1816
  #: app/features/mec/meta_boxes/search_form.php:144
1826
  msgid "Address"
1827
  msgstr "Adresse"
1828
 
1829
+ #: app/features/events.php:3790
1830
  #, php-format
1831
  msgid "%s Tel"
1832
  msgstr "%s Téléphone"
1833
 
1834
+ #: app/features/events.php:3790
1835
  #, php-format
1836
  msgid "%s Email"
1837
  msgstr "%s mail"
1838
 
1839
+ #: app/features/events.php:3790 app/features/fes/form.php:850
1840
  #: app/features/mec/settings.php:769
1841
  msgid "Featured Image"
1842
  msgstr "Image Principale"
1843
 
1844
+ #: app/features/events.php:4119 app/features/fes.php:243
1845
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1846
+ #: app/libraries/main.php:6379
1847
  msgid "Ticket"
1848
  msgstr "Billets"
1849
 
1850
+ #: app/features/events.php:4122 app/features/profile/profile.php:186
1851
  msgid "Variations"
1852
  msgstr "Vérifications"
1853
 
1854
+ #: app/features/events.php:4137 app/features/fes.php:316
1855
  msgid "Unknown"
1856
  msgstr "Inconnu"
1857
 
1858
+ #: app/features/events.php:4163
1859
  msgid ""
1860
  "If you want to send an email, first select your attendees and then click in "
1861
  "the button below, please."
1862
  msgstr ""
1863
 
1864
+ #: app/features/events.php:4163 app/features/mec/report.php:58
1865
  msgid "Send Email"
1866
  msgstr "Envoyer le mail"
1867
 
1868
+ #: app/features/events.php:4167
1869
  msgid "No Attendees Found!"
1870
  msgstr "Aucune réservation trouvée!"
1871
 
2089
  #: app/features/fes/form.php:891 app/features/labels.php:61
2090
  #: app/features/labels.php:221 app/features/mec.php:468
2091
  #: app/features/mec/meta_boxes/filter.php:72
2092
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6342
2093
+ #: app/libraries/main.php:6396 app/skins/single.php:1156
2094
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2095
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2096
  msgid "Labels"
2168
  msgid "An error occurred during the file upload! Please check permissions!"
2169
  msgstr ""
2170
 
2171
+ #: app/features/ix.php:265 app/libraries/main.php:6627
2172
+ #: app/libraries/main.php:6647
2173
  msgid "Confirmed"
2174
  msgstr "Confirmé"
2175
 
2176
+ #: app/features/ix.php:266 app/libraries/main.php:6628
2177
+ #: app/libraries/main.php:6655
2178
  msgid "Rejected"
2179
  msgstr "Rejeté"
2180
 
2181
+ #: app/features/ix.php:270 app/features/mec/booking.php:1010
2182
+ #: app/features/mec/booking.php:1032 app/features/mec/modules.php:431
2183
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2184
+ #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1295
2185
+ #: app/features/mec/settings.php:1317 app/features/mec/single.php:446
2186
+ #: app/features/mec/single.php:468 app/libraries/main.php:6675
2187
  msgid "Verified"
2188
  msgstr "Vérifié"
2189
 
2190
  #: app/features/ix.php:271 app/features/labels.php:118
2191
+ #: app/features/labels.php:143 app/libraries/main.php:6676
2192
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2193
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2194
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
2224
  msgid "The events are imported successfully!"
2225
  msgstr ""
2226
 
2227
+ #: app/features/ix.php:1176
2228
  msgid "Third Party plugin is not installed and activated!"
2229
  msgstr ""
2230
 
2231
+ #: app/features/ix.php:1200
2232
  msgid "Third Party plugin is invalid!"
2233
  msgstr ""
2234
 
2235
+ #: app/features/ix.php:3175 app/features/ix.php:3233
2236
  #, fuzzy
2237
  #| msgid "Both of API key and Calendar ID are required!"
2238
  msgid "API key and Calendar ID are required!"
2239
  msgstr "La clé API et le Calendar ID sont requis !"
2240
 
2241
+ #: app/features/ix.php:3228 app/features/ix.php:3673 app/features/ix.php:4408
2242
  #, fuzzy
2243
  #| msgid "Please select some events to import!"
2244
  msgid "Please select events to import!"
2245
  msgstr "Merci de sélectionner les évènements à Importer !"
2246
 
2247
+ #: app/features/ix.php:3615 app/features/ix.php:3678
2248
  #, fuzzy
2249
  #| msgid "Both of API key and Calendar ID are required!"
2250
  msgid "API key and Group URL are required!"
2251
  msgstr "La clé API et le Calendar ID sont requis !"
2252
 
2253
+ #: app/features/ix.php:3917
2254
  msgid "Check at Meetup"
2255
  msgstr ""
2256
 
2257
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2258
  msgid "Organizer Tel"
2259
  msgstr "Teléphone de l'organisateur"
2260
 
2261
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2262
  msgid "Organizer Email"
2263
  msgstr "Mail de l'organisateur"
2264
 
2265
+ #: app/features/ix.php:4108
2266
  #, fuzzy
2267
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2268
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2269
  msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
2270
 
2271
+ #: app/features/ix.php:4131
2272
  #, fuzzy, php-format
2273
  #| msgid "All seems good! Please click %s for authenticating your app."
2274
  msgid "All seems good! Please click %s to authenticate your app."
2275
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
2276
 
2277
+ #: app/features/ix.php:4131 app/features/mec/settings.php:1236
2278
  msgid "here"
2279
  msgstr ""
2280
 
2281
+ #: app/features/ix.php:4185
2282
  #, fuzzy
2283
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2284
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2285
  msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
2286
 
2287
+ #: app/features/ix.php:4330
2288
  #, fuzzy, php-format
2289
  #| msgid "%s events added to Google Calendar successfully."
2290
  msgid "%s events added to Google Calendar with success."
2291
  msgstr "%s évènements ajoutés à Google Agenda avec succès."
2292
 
2293
+ #: app/features/ix.php:4331
2294
  #, fuzzy, php-format
2295
  #| msgid "%s previously added events get updated."
2296
  msgid "%s Updated previously added events."
2297
  msgstr "%s évènements précédemment ajoutés ont été mis à jour."
2298
 
2299
+ #: app/features/ix.php:4332
2300
  #, php-format
2301
  msgid "%s events failed to add for following reasons: %s"
2302
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
2303
 
2304
+ #: app/features/ix.php:4364
2305
  msgid "Please insert your Facebook page's link."
2306
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
2307
 
2308
+ #: app/features/ix.php:4375 app/features/ix.php:4417
2309
  #, fuzzy
2310
  #| msgid ""
2311
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2317
  "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
2318
  "une adresse Facebook Page valide."
2319
 
2320
+ #: app/features/ix.php:4412
2321
  msgid "Please insert your facebook page's link."
2322
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
2323
 
2489
  msgid "Add to Google Calendar"
2490
  msgstr "Ajouter à Google Agenda"
2491
 
2492
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1012
2493
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2494
+ #: app/features/mec/settings.php:1297 app/features/mec/single.php:448
2495
  msgid "Checking ..."
2496
  msgstr "Vérification..."
2497
 
2995
 
2996
  #: app/features/locations.php:59 app/features/mec.php:469
2997
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
2998
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6344
2999
+ #: app/libraries/main.php:6398
3000
  msgid "Locations"
3001
  msgstr "Lieux"
3002
 
3110
  msgid "Don't show map in single event page"
3111
  msgstr "Ne pas afficher de carte pour cet événement"
3112
 
3113
+ #: app/features/locations.php:398 app/libraries/main.php:6382
3114
+ #: app/libraries/main.php:6429
3115
  msgid "Other Locations"
3116
  msgstr "Autres lieux"
3117
 
3196
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3197
  #: app/features/mec/meta_boxes/filter.php:71
3198
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3199
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
3200
  msgid "Organizers"
3201
  msgstr "Organisateurs"
3202
 
3397
  msgstr "Recherche…"
3398
 
3399
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3400
+ #: app/features/mec/booking.php:928 app/features/mec/booking.php:937
3401
+ #: app/features/mec/booking.php:947 app/features/mec/booking.php:1029
3402
+ #: app/features/mec/booking.php:1043 app/features/mec/messages.php:15
3403
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3404
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3405
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
3409
  #: app/features/mec/notifications.php:1218
3410
  #: app/features/mec/notifications.php:1324
3411
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3412
+ #: app/features/mec/settings.php:1246 app/features/mec/settings.php:1256
3413
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1328
3414
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3415
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3416
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
3708
  msgid "Send confirmation email in auto confirmation mode"
3709
  msgstr ""
3710
 
3711
+ #: app/features/mec/booking.php:412 app/libraries/main.php:567
3712
  #, fuzzy
3713
  #| msgid "Booking Style"
3714
  msgid "Booking Shortcode"
3741
  "new menu on the Dashboard > Booking"
3742
  msgstr ""
3743
 
3744
+ #: app/features/mec/booking.php:446 app/features/mec/booking.php:834
3745
+ #: app/libraries/main.php:569
3746
  msgid "Taxes / Fees"
3747
  msgstr "Taxes et frais"
3748
 
3754
  msgid "Add Fee"
3755
  msgstr "Ajouter frais"
3756
 
3757
+ #: app/features/mec/booking.php:523 app/libraries/main.php:570
3758
  msgid "Ticket Variations & Options"
3759
  msgstr "Variations de tickets & Options"
3760
 
3766
  msgid "Add Variation / Option"
3767
  msgstr "Ajouter une variation / option"
3768
 
3769
+ #: app/features/mec/booking.php:798
3770
+ #, fuzzy
3771
+ #| msgid "Filter Options"
3772
+ msgid "Upload Field Options"
3773
+ msgstr "Options des filtres"
3774
+
3775
+ #: app/features/mec/booking.php:800
3776
+ msgid "Mime types"
3777
+ msgstr ""
3778
+
3779
+ #: app/features/mec/booking.php:804
3780
+ msgid "Split mime types with \",\"."
3781
+ msgstr ""
3782
+
3783
+ #: app/features/mec/booking.php:804
3784
+ msgid "Default: jpeg,jpg,png,pdf"
3785
+ msgstr ""
3786
+
3787
+ #: app/features/mec/booking.php:807
3788
+ msgid "Maximum file size"
3789
+ msgstr "Taille maximale de fichier"
3790
+
3791
+ #: app/features/mec/booking.php:811
3792
+ msgid "The unit is Megabyte \"MB\""
3793
+ msgstr ""
3794
+
3795
+ #: app/features/mec/booking.php:824
3796
  msgid "Use WooCommerce as Payment System"
3797
  msgstr ""
3798
 
3799
+ #: app/features/mec/booking.php:826
3800
  msgid ""
3801
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3802
  "payment process would be done by WooCommerce so all of MEC payment related "
3804
  "fields etc, you need to configure WooCommerce on your website."
3805
  msgstr ""
3806
 
3807
+ #: app/features/mec/booking.php:828
3808
  msgid ""
3809
  "You cannot use following MEC features so you should use WooCommerc and its "
3810
  "addons if you need them."
3811
  msgstr ""
3812
 
3813
+ #: app/features/mec/booking.php:830
3814
  #, fuzzy
3815
  #| msgid "Payment Gateways"
3816
  msgid "Payment gateways"
3817
  msgstr "Passerelle de paiement"
3818
 
3819
+ #: app/features/mec/booking.php:831
3820
  #, fuzzy
3821
  #| msgid "Price per Date"
3822
  msgid "Price per dates of tickets"
3823
  msgstr "Prix par date"
3824
 
3825
+ #: app/features/mec/booking.php:833
3826
  #, fuzzy
3827
  #| msgid "Ticket Variation"
3828
  msgid "Ticket variations"
3829
  msgstr "Vérification de ticket"
3830
 
3831
+ #: app/features/mec/booking.php:838
3832
  #, fuzzy
3833
  #| msgid "Automatically complete WC orders"
3834
  msgid "Automatically complete WooCommerce orders"
3835
  msgstr "Compléter automatiquement les commandes WooCommerce"
3836
 
3837
+ #: app/features/mec/booking.php:846
3838
  #, fuzzy
3839
  #| msgid "Automatically complete WC orders"
3840
  msgid "Auto WooCommerce orders"
3841
  msgstr "Compléter automatiquement les commandes WooCommerce"
3842
 
3843
+ #: app/features/mec/booking.php:847
3844
  msgid "It applies only to the orders that are related to MEC."
3845
  msgstr "Cela s'applique uniquement aux commandes liées a l'extension M.E.C."
3846
 
3847
+ #: app/features/mec/booking.php:855
3848
  msgid "After Add to Cart"
3849
  msgstr ""
3850
 
3851
+ #: app/features/mec/booking.php:858
3852
  #, fuzzy
3853
  #| msgid "Redirection Page"
3854
  msgid "Redirect to Cart"
3855
  msgstr "Redirection"
3856
 
3857
+ #: app/features/mec/booking.php:859
3858
  #, fuzzy
3859
  #| msgid "Redirection Page"
3860
  msgid "Redirect to Checkout"
3861
  msgstr "Redirection"
3862
 
3863
+ #: app/features/mec/booking.php:864
3864
  #, fuzzy
3865
  #| msgid "Booking Form"
3866
  msgid "MEC Booking Form"
3867
  msgstr "Formulaire de réservation"
3868
 
3869
+ #: app/features/mec/booking.php:873
3870
  msgid ""
3871
  "If enabled then users should fill the booking form in MEC and then they will "
3872
  "be redirected to checkout."
3873
  msgstr ""
3874
 
3875
+ #: app/features/mec/booking.php:899
3876
  msgid "Enable Organizer Payment Module"
3877
  msgstr "Activer module de coupons"
3878
 
3879
+ #: app/features/mec/booking.php:904
3880
  msgid ""
3881
  "By enabling this module, organizers are able to insert their own payment "
3882
  "credentials for enabled gateways per event and receive the payments directly!"
3883
  msgstr ""
3884
 
3885
+ #: app/features/mec/booking.php:914
3886
  msgid "Disable / Enable payment gateways per event"
3887
  msgstr ""
3888
 
3889
+ #: app/features/mec/booking.php:918
3890
  #, fuzzy
3891
  #| msgid "Payment Gateways"
3892
  msgid "Payment Gateways Per Event"
3893
  msgstr "Passerelle de paiement"
3894
 
3895
+ #: app/features/mec/booking.php:919
3896
  msgid ""
3897
  "By enabling this module, users are able to disable / enable payment gateways "
3898
  "per event"
3899
  msgstr ""
3900
 
3901
+ #: app/features/mec/booking.php:1007 app/features/mec/messages.php:78
3902
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3903
+ #: app/features/mec/settings.php:1292 app/features/mec/single.php:443
3904
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3905
  msgid "Saved"
3906
  msgstr "Sauvegardé"
3907
 
3908
+ #: app/features/mec/booking.php:1008 app/features/mec/messages.php:79
3909
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3910
+ #: app/features/mec/settings.php:1293 app/features/mec/single.php:444
3911
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3912
  msgid "Settings Saved!"
3913
  msgstr ""
3914
 
3915
+ #: app/features/mec/booking.php:1034 app/features/mec/modules.php:455
3916
+ #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1319
3917
  #: app/features/mec/single.php:470
3918
  msgid "Please Refresh Page"
3919
  msgstr "Merci de Rafraichir la Page"
5156
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
5157
  #: app/features/mec/single.php:386 app/features/search.php:86
5158
  #: app/features/speakers.php:60 app/features/speakers.php:283
5159
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
5160
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
5161
  msgid "Speaker"
5162
  msgstr ""
6358
  msgid "only once per hour"
6359
  msgstr "une fois par jour"
6360
 
6361
+ #: app/features/mec/notifications.php:950 app/libraries/main.php:7437
6362
+ #: app/libraries/main.php:7454
6363
  #, fuzzy
6364
  #| msgid "Hour"
6365
  msgid "Hours"
6629
  msgstr ""
6630
 
6631
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6632
+ #: app/libraries/main.php:6353 app/libraries/main.php:6407
6633
  msgid "Weekdays"
6634
  msgstr "Jours de la Semaine"
6635
 
6975
  msgid "Let WordPress decide"
6976
  msgstr "Adresse"
6977
 
6978
+ #: app/features/mec/settings.php:660 app/libraries/main.php:6629
6979
+ #: app/libraries/main.php:6651
6980
  msgid "Pending"
6981
  msgstr "En attente"
6982
 
7134
  msgid "Event Description"
7135
  msgstr "Description"
7136
 
7137
+ #: app/features/mec/settings.php:930 app/libraries/main.php:6376
7138
+ #: app/libraries/main.php:6425
7139
  msgid "More Info Link"
7140
  msgstr "Plus de lien d'info"
7141
 
7323
  msgid "More information about the list ID can be found %s."
7324
  msgstr ""
7325
 
7326
+ #: app/features/mec/single.php:38 app/libraries/main.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7327
  msgid "Single Event Page"
7328
  msgstr "Page d’événement"
7329
 
7433
  "the settings page.' tab"
7434
  msgstr ""
7435
 
7436
+ #: app/features/mec/single.php:162 app/libraries/main.php:556
7437
  #, fuzzy
7438
  #| msgid "Custom Styles"
7439
  msgid "Custom Fields"
7484
  "En utilisant cette option, vous pouvez inclure / exclure certains jours des "
7485
  "dates d'occurrence d'un événement."
7486
 
7487
+ #: app/features/mec/single.php:286 app/libraries/main.php:559
7488
  msgid "Additional Organizers"
7489
  msgstr "Organisateur additionnels"
7490
 
7513
  "Afficher l'option \"Journée Exceptionnelle\" lors de la création/édition de "
7514
  "la page d'un événement"
7515
 
7516
+ #: app/features/mec/single.php:318 app/libraries/main.php:561
7517
  #: app/skins/single.php:170 app/skins/single.php:435
7518
  msgid "Related Events"
7519
  msgstr "Evénement à la une"
7526
  msgid "Select Taxonomies:"
7527
  msgstr "Taxonomies"
7528
 
7529
+ #: app/features/mec/single.php:360 app/libraries/main.php:562
7530
  #, fuzzy
7531
  #| msgid "Next/Previous Buttons"
7532
  msgid "Next / Previous Events"
8338
  msgid "eg. https://webnus.net"
8339
  msgstr "eg. https://webnus.net"
8340
 
8341
+ #: app/features/organizers.php:312 app/libraries/main.php:6381
8342
+ #: app/libraries/main.php:6428 app/skins/single.php:1314
8343
  msgid "Other Organizers"
8344
  msgstr "Autres organisateurs"
8345
 
8598
  msgid "No search result."
8599
  msgstr ""
8600
 
8601
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6383
8602
+ #: app/libraries/main.php:6430 app/libraries/notifications.php:1262
8603
+ #: app/libraries/render.php:532 app/libraries/render.php:854
8604
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8605
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8606
  #: app/modules/next-event/details.php:154
8691
  "section and speaker widget section!"
8692
  msgstr ""
8693
 
8694
+ #: app/features/wc.php:103 app/libraries/notifications.php:1247
8695
+ #: app/libraries/notifications.php:1262 app/libraries/notifications.php:1273
8696
+ #: app/libraries/notifications.php:1542 app/libraries/notifications.php:1543
8697
  #, php-format
8698
  msgid "%s to %s"
8699
  msgstr "%s en %s"
8713
  msgid "%s Price"
8714
  msgstr ""
8715
 
8716
+ #: app/libraries/book.php:706 app/libraries/book.php:797
8717
  msgid "Discount"
8718
  msgstr "Réduction"
8719
 
8720
+ #: app/libraries/book.php:884 app/modules/booking/default.php:426
8721
  #: app/modules/booking/default.php:531
8722
  msgid "Download Invoice"
8723
  msgstr ""
8849
  msgid "Timeline View"
8850
  msgstr "Vue chronologique"
8851
 
8852
+ #: app/libraries/main.php:391 app/libraries/main.php:6355
8853
+ #: app/libraries/main.php:6409
8854
  msgid "SU"
8855
  msgstr "DIM."
8856
 
8857
+ #: app/libraries/main.php:392 app/libraries/main.php:6356
8858
+ #: app/libraries/main.php:6410
8859
  msgid "MO"
8860
  msgstr "LUN."
8861
 
8862
+ #: app/libraries/main.php:393 app/libraries/main.php:6357
8863
+ #: app/libraries/main.php:6411
8864
  msgid "TU"
8865
  msgstr "MAR."
8866
 
8867
+ #: app/libraries/main.php:394 app/libraries/main.php:6358
8868
+ #: app/libraries/main.php:6412
8869
  msgid "WE"
8870
  msgstr "MER."
8871
 
8872
+ #: app/libraries/main.php:395 app/libraries/main.php:6359
8873
+ #: app/libraries/main.php:6413
8874
  msgid "TH"
8875
  msgstr "JEU."
8876
 
8877
+ #: app/libraries/main.php:396 app/libraries/main.php:6360
8878
+ #: app/libraries/main.php:6414
8879
  msgid "FR"
8880
  msgstr "VEN."
8881
 
8882
+ #: app/libraries/main.php:397 app/libraries/main.php:6361
8883
+ #: app/libraries/main.php:6415
8884
  msgid "SA"
8885
  msgstr "SAM."
8886
 
8887
+ #: app/libraries/main.php:560
 
 
 
 
8888
  msgid "Additional Locations"
8889
  msgstr "Lieux additionnels"
8890
 
8891
+ #: app/libraries/main.php:572
8892
+ msgid "Upload Field"
8893
+ msgstr "Mettre une image en ligne"
8894
+
8895
  #: app/libraries/main.php:726
8896
  msgid "Modules"
8897
  msgstr "Modules"
9214
  msgid "Free"
9215
  msgstr "Gratuite"
9216
 
9217
+ #: app/libraries/main.php:4445 app/libraries/main.php:6690
9218
  msgid "M.E. Calender"
9219
  msgstr "M.E Calendrier"
9220
 
9221
+ #: app/libraries/main.php:4601
9222
  #, php-format
9223
  msgid "Copy of %s"
9224
  msgstr "Copie de %s"
9225
 
9226
+ #: app/libraries/main.php:5466
9227
  msgid "Booked an event."
9228
  msgstr "Réserver un événement"
9229
 
9230
+ #: app/libraries/main.php:5507
9231
  #, php-format
9232
  msgid "%s booked %s event."
9233
  msgstr "%s réservé %s événement"
9234
 
9235
+ #: app/libraries/main.php:6338 app/libraries/main.php:6392
9236
  msgid "Taxonomies"
9237
  msgstr "Taxonomies"
9238
 
9239
+ #: app/libraries/main.php:6340 app/libraries/main.php:6394
9240
  msgid "Category Plural Label"
9241
  msgstr "Catégorie au pluriel"
9242
 
9243
+ #: app/libraries/main.php:6341 app/libraries/main.php:6395
9244
  msgid "Category Singular Label"
9245
  msgstr "Catégorie au singulier"
9246
 
9247
+ #: app/libraries/main.php:6342 app/libraries/main.php:6396
9248
  msgid "Label Plural Label"
9249
  msgstr "Étiquettes au pluriel"
9250
 
9251
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9252
  msgid "Label Singular Label"
9253
  msgstr "Étiquettes au singulier"
9254
 
9255
+ #: app/libraries/main.php:6343 app/libraries/main.php:6397
9256
  msgid "label"
9257
  msgstr "texte"
9258
 
9259
+ #: app/libraries/main.php:6344 app/libraries/main.php:6398
9260
  msgid "Location Plural Label"
9261
  msgstr "Lieu au pluriel"
9262
 
9263
+ #: app/libraries/main.php:6345 app/libraries/main.php:6399
9264
  msgid "Location Singular Label"
9265
  msgstr "Lieu au singulier"
9266
 
9267
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
9268
  msgid "Organizer Plural Label"
9269
  msgstr "Organisateur au pluriel"
9270
 
9271
+ #: app/libraries/main.php:6347 app/libraries/main.php:6401
9272
  msgid "Organizer Singular Label"
9273
  msgstr "Organisateur au singulier"
9274
 
9275
+ #: app/libraries/main.php:6348 app/libraries/main.php:6402
9276
  msgid "Speaker Plural Label"
9277
  msgstr "Étiquettes au pluriel"
9278
 
9279
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
9280
  msgid "Speaker Singular Label"
9281
  msgstr "Étiquettes au singulier"
9282
 
9283
+ #: app/libraries/main.php:6355 app/libraries/main.php:6409
9284
  msgid "Sunday abbreviation"
9285
  msgstr "Abréviation de Dimanche"
9286
 
9287
+ #: app/libraries/main.php:6356 app/libraries/main.php:6410
9288
  msgid "Monday abbreviation"
9289
  msgstr "Abréviation de Lundi"
9290
 
9291
+ #: app/libraries/main.php:6357 app/libraries/main.php:6411
9292
  msgid "Tuesday abbreviation"
9293
  msgstr "Abréviation de Mardi"
9294
 
9295
+ #: app/libraries/main.php:6358 app/libraries/main.php:6412
9296
  msgid "Wednesday abbreviation"
9297
  msgstr "Abréviation de Mercredi"
9298
 
9299
+ #: app/libraries/main.php:6359 app/libraries/main.php:6413
9300
  msgid "Thursday abbreviation"
9301
  msgstr "Abréviation de Jeudi"
9302
 
9303
+ #: app/libraries/main.php:6360 app/libraries/main.php:6414
9304
  msgid "Friday abbreviation"
9305
  msgstr "Abréviation de Vendredi"
9306
 
9307
+ #: app/libraries/main.php:6361 app/libraries/main.php:6415
9308
  msgid "Saturday abbreviation"
9309
  msgstr "Abréviation de Samedi"
9310
 
9311
+ #: app/libraries/main.php:6365 app/libraries/main.php:6419
9312
  msgid "Others"
9313
  msgstr "Autres"
9314
 
9315
+ #: app/libraries/main.php:6367
9316
  msgid "Booking Success Message"
9317
  msgstr "Message de succès de réservation"
9318
 
9319
+ #: app/libraries/main.php:6367
9320
  #, fuzzy
9321
  #| msgid ""
9322
  #| "Thanks for your booking. Your tickets booked, booking verification might "
9328
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
9329
  "vérification peut être nécessaires, contrôlez votre boite mail."
9330
 
9331
+ #: app/libraries/main.php:6368
9332
  #, fuzzy
9333
  #| msgid "Booking Success Message"
9334
  msgid "Booking Restriction Message 1"
9335
  msgstr "Message de succès de réservation"
9336
 
9337
+ #: app/libraries/main.php:6368
9338
  #, php-format
9339
  msgid ""
9340
  "You selected %s tickets to book but maximum number of tikets per user is %s "
9341
  "tickets."
9342
  msgstr ""
9343
 
9344
+ #: app/libraries/main.php:6369
9345
  #, fuzzy
9346
  #| msgid "Booking Success Message"
9347
  msgid "Booking Restriction Message 2"
9348
  msgstr "Message de succès de réservation"
9349
 
9350
+ #: app/libraries/main.php:6369
9351
  #, php-format
9352
  msgid ""
9353
  "You booked %s tickets till now but maximum number of tickets per user is %s "
9354
  "tickets."
9355
  msgstr ""
9356
 
9357
+ #: app/libraries/main.php:6370
9358
  #, fuzzy
9359
  #| msgid "Booking Success Message"
9360
  msgid "Booking IP Restriction Message"
9361
  msgstr "Message de succès de réservation"
9362
 
9363
+ #: app/libraries/main.php:6370
9364
  #, php-format
9365
  msgid "Maximum allowed number of tickets that you can book is %s."
9366
  msgstr ""
9367
 
9368
+ #: app/libraries/main.php:6371
9369
  #, fuzzy
9370
  #| msgid "Booking Options"
9371
  msgid "Booking Button"
9372
  msgstr "Options de Réservation"
9373
 
9374
+ #: app/libraries/main.php:6371 app/libraries/skins.php:1268
9375
  #: app/modules/booking/steps/tickets.php:102
9376
  msgid "Book Event"
9377
  msgstr "Réservez pour cet événement"
9378
 
9379
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9380
  #: app/widgets/single.php:131
9381
  msgid "Register Button"
9382
  msgstr "Boutons d'inscription"
9383
 
9384
+ #: app/libraries/main.php:6372 app/libraries/main.php:6421
9385
  #: app/skins/available_spot/tpl.php:208 app/skins/carousel/render.php:106
9386
  #: app/skins/carousel/render.php:144 app/skins/grid/render.php:103
9387
  #: app/skins/grid/render.php:161 app/skins/grid/render.php:219
9399
  msgid "REGISTER"
9400
  msgstr "S'INSCRIRE"
9401
 
9402
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9403
  msgid "View Detail Button"
9404
  msgstr "Afficher le boutons de détail"
9405
 
9406
+ #: app/libraries/main.php:6373 app/libraries/main.php:6422
9407
  #: app/skins/carousel/render.php:106 app/skins/carousel/render.php:144
9408
  #: app/skins/grid/render.php:103 app/skins/grid/render.php:161
9409
  #: app/skins/grid/render.php:219 app/skins/grid/render.php:240
9415
  msgid "View Detail"
9416
  msgstr "En savoir plus"
9417
 
9418
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9419
  msgid "Event Detail Button"
9420
  msgstr "Bouton de détail de l'événement"
9421
 
9422
+ #: app/libraries/main.php:6374 app/libraries/main.php:6423
9423
  msgid "Event Detail"
9424
  msgstr "Détails"
9425
 
9426
+ #: app/libraries/main.php:6379
9427
  msgid "Ticket (Singular)"
9428
  msgstr ""
9429
 
9430
+ #: app/libraries/main.php:6380
9431
  msgid "Tickets (Plural)"
9432
  msgstr ""
9433
 
9434
+ #: app/libraries/main.php:6538
9435
  msgid "EventON"
9436
  msgstr ""
9437
 
9438
+ #: app/libraries/main.php:6539
9439
  msgid "The Events Calendar"
9440
  msgstr ""
9441
 
9442
+ #: app/libraries/main.php:6540
9443
  msgid "Events Schedule WP Plugin"
9444
  msgstr ""
9445
 
9446
+ #: app/libraries/main.php:6541
9447
  msgid "Calendarize It"
9448
  msgstr ""
9449
 
9450
+ #: app/libraries/main.php:6542
9451
  msgid "Event Espresso"
9452
  msgstr "Labels d'événement"
9453
 
9454
+ #: app/libraries/main.php:6543
9455
  msgid "Events Manager (Recurring)"
9456
  msgstr "Événement récurrent"
9457
 
9458
+ #: app/libraries/main.php:6544
9459
  msgid "Events Manager (Single)"
9460
  msgstr "Modern Events Calendar"
9461
 
9462
+ #: app/libraries/main.php:6545
9463
  #, fuzzy
9464
  #| msgid "Events Manager (Single)"
9465
  msgid "WP Event Manager"
9466
  msgstr "Modern Events Calendar"
9467
 
9468
+ #: app/libraries/main.php:6677
9469
  msgid "Waiting"
9470
  msgstr "En attente"
9471
 
9472
+ #: app/libraries/main.php:6720
9473
  #, fuzzy
9474
  #| msgid "Sunday"
9475
  msgid "Sun"
9476
  msgstr "Dimanche"
9477
 
9478
+ #: app/libraries/main.php:6720
9479
  #, fuzzy
9480
  #| msgid "Month"
9481
  msgid "Mon"
9482
  msgstr "Mois"
9483
 
9484
+ #: app/libraries/main.php:6720
9485
  #, fuzzy
9486
  #| msgid "Tel"
9487
  msgid "Tue"
9488
  msgstr "Téléphone"
9489
 
9490
+ #: app/libraries/main.php:6720
9491
  msgid "Wed"
9492
  msgstr ""
9493
 
9494
+ #: app/libraries/main.php:6720
9495
  msgid "Thu"
9496
  msgstr ""
9497
 
9498
+ #: app/libraries/main.php:6720
9499
  #, fuzzy
9500
  #| msgid "Friday"
9501
  msgid "Fri"
9502
  msgstr "Vendredi"
9503
 
9504
+ #: app/libraries/main.php:6720
9505
  #, fuzzy
9506
  #| msgid "Start"
9507
  msgid "Sat"
9508
  msgstr "Démarrer"
9509
 
9510
+ #: app/libraries/main.php:6886 app/libraries/render.php:80
9511
  #: app/libraries/render.php:445
9512
  msgid "Skin controller does not exist."
9513
  msgstr "Le contrôleur de Skin n'existe pas."
9514
 
9515
+ #: app/libraries/main.php:7101
9516
  msgid "Sold Out"
9517
  msgstr "Épuisé!"
9518
 
9519
+ #: app/libraries/main.php:7112
9520
  msgid "Last Few Tickets"
9521
  msgstr "Bientôt complet"
9522
 
9523
+ #: app/libraries/main.php:7443 app/libraries/main.php:7460
9524
  #, fuzzy
9525
  #| msgid "minutes"
9526
  msgid "Minutes"
9527
  msgstr "minutes"
9528
 
9529
+ #: app/libraries/main.php:7465
9530
  msgid "AM / PM"
9531
  msgstr ""
9532
 
9533
+ #: app/libraries/main.php:7466
9534
  msgid "AM"
9535
  msgstr "du matin"
9536
 
9537
+ #: app/libraries/main.php:7467
9538
  msgid "PM"
9539
  msgstr "de l'après midi"
9540
 
9541
+ #: app/libraries/main.php:7475
9542
  msgid "Ongoing..."
9543
  msgstr ""
9544
 
9545
+ #: app/libraries/main.php:7476
9546
  #, fuzzy
9547
  #| msgid "Expired Events"
9548
  msgid "Expired!"
9574
  msgid "A new booking is received."
9575
  msgstr "Une nouvelle réservation est enregistrée."
9576
 
9577
+ #: app/libraries/notifications.php:858
9578
  msgid "A new event is added."
9579
  msgstr "Un nouvel événement est ajouté."
9580
 
9581
+ #: app/libraries/notifications.php:974
9582
  msgid "Your event is published."
9583
  msgstr "Événement Publié."
9584
 
9585
+ #: app/libraries/notifications.php:1124
9586
  #, fuzzy
9587
  #| msgid "Event Color"
9588
  msgid "Event is soldout!"
9589
  msgstr "Couleur de l'événement"
9590
 
9591
+ #: app/libraries/notifications.php:1486
9592
  msgid "to"
9593
  msgstr ""
9594
 
9595
+ #: app/libraries/notifications.php:1507 app/modules/export/details.php:63
9596
  msgid "+ Add to Google Calendar"
9597
  msgstr "+ Ajouter à mon Agenda Google"
9598
 
9599
+ #: app/libraries/notifications.php:1508 app/modules/export/details.php:64
9600
  #, fuzzy
9601
  #| msgid "+ iCal export"
9602
  msgid "+ iCal / Outlook export"
9603
  msgstr "+ Exporter vers iCal"
9604
 
9605
+ #: app/libraries/notifications.php:1557
9606
  #, fuzzy, php-format
9607
  #| msgid "+ Add to Google Calendar"
9608
  msgid "+ %s to Google Calendar"
9609
  msgstr "+ Ajouter à mon Agenda Google"
9610
 
9611
+ #: app/libraries/notifications.php:1637
9612
  msgid "Yes"
9613
  msgstr "Oui"
9614
 
9615
+ #: app/libraries/notifications.php:1637
9616
  msgid "No"
9617
  msgstr "Non"
9618
 
languages/modern-events-calendar-lite-hu_HU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-11-10 21:11+0330\n"
5
- "PO-Revision-Date: 2020-11-10 21:12+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -99,8 +99,8 @@ msgstr ""
99
 
100
  #: app/features/contextual.php:62 app/features/events.php:1617
101
  #: app/features/events.php:2513 app/features/mec/booking.php:606
102
- #: app/features/mec/booking.php:854 app/features/mec/support.php:29
103
- #: app/libraries/main.php:572
104
  msgid "Booking Form"
105
  msgstr ""
106
 
@@ -114,7 +114,7 @@ msgid ""
114
  msgstr ""
115
 
116
  #: app/features/contextual.php:70 app/features/events.php:1625
117
- #: app/features/mec/booking.php:798 app/features/mec/support-page.php:115
118
  #: app/features/mec/support.php:36 app/libraries/main.php:573
119
  msgid "Payment Gateways"
120
  msgstr ""
@@ -220,7 +220,7 @@ msgid "Google Recaptcha Options"
220
  msgstr ""
221
 
222
  #: app/features/contextual.php:258 app/features/mec/single.php:248
223
- #: app/libraries/main.php:558
224
  msgid "Countdown Options"
225
  msgstr ""
226
 
@@ -239,20 +239,20 @@ msgid "Frontend Event Submission"
239
  msgstr ""
240
 
241
  #: app/features/contextual.php:298 app/features/events.php:345
242
- #: app/libraries/main.php:559
243
  msgid "Exceptional Days"
244
  msgstr ""
245
 
246
  #: app/features/contextual.php:308 app/features/events.php:315
247
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
248
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
249
- #: app/libraries/main.php:567 app/libraries/main.php:597
250
  #: app/libraries/main.php:684
251
  msgid "Booking"
252
  msgstr ""
253
 
254
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
255
- #: app/features/mec/booking.php:814 app/libraries/main.php:569
256
  msgid "Coupons"
257
  msgstr ""
258
 
@@ -304,8 +304,8 @@ msgid "File uploaded!"
304
  msgstr ""
305
 
306
  #: app/features/events.php:167 app/features/ix/export.php:34
307
- #: app/features/mec/dashboard.php:265 app/libraries/main.php:5551
308
- #: app/libraries/main.php:5571 app/skins/daily_view/tpl.php:82
309
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
310
  #: app/skins/yearly_view/tpl.php:71
311
  msgid "Events"
@@ -329,7 +329,7 @@ msgstr ""
329
  msgid "Add New Event"
330
  msgstr ""
331
 
332
- #: app/features/events.php:171 app/features/ix.php:4391
333
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
334
  #: app/skins/map/tpl.php:88
335
  msgid "No events found!"
@@ -352,7 +352,7 @@ msgstr ""
352
  msgid "No events found in Trash!"
353
  msgstr ""
354
 
355
- #: app/features/events.php:192 app/features/events.php:3597
356
  #: app/features/mec/meta_boxes/display_options.php:1463
357
  #: app/features/mec/meta_boxes/search_form.php:31
358
  #: app/features/mec/meta_boxes/search_form.php:101
@@ -367,19 +367,19 @@ msgstr ""
367
  #: app/features/mec/meta_boxes/search_form.php:760
368
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
369
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
370
- #: app/features/search.php:68 app/libraries/main.php:6350
371
- #: app/libraries/main.php:6404 app/libraries/skins.php:934
372
  #: app/skins/single.php:1016 app/skins/single/default.php:219
373
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
374
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
375
  msgid "Category"
376
  msgstr "kategória"
377
 
378
- #: app/features/events.php:193 app/features/events.php:3552
379
  #: app/features/fes/form.php:865 app/features/mec.php:467
380
  #: app/features/mec/meta_boxes/filter.php:69
381
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6349
382
- #: app/libraries/main.php:6403
383
  msgid "Categories"
384
  msgstr ""
385
 
@@ -484,9 +484,9 @@ msgstr "helyszín"
484
  msgid "Links"
485
  msgstr ""
486
 
487
- #: app/features/events.php:349 app/features/events.php:3599
488
- #: app/features/events.php:3788 app/features/ix.php:3980
489
- #: app/features/ix.php:4022
490
  #: app/features/mec/meta_boxes/display_options.php:1466
491
  #: app/features/mec/meta_boxes/search_form.php:46
492
  #: app/features/mec/meta_boxes/search_form.php:116
@@ -504,8 +504,8 @@ msgstr ""
504
  #: app/features/organizers.php:204 app/features/organizers.php:260
505
  #: app/features/organizers.php:262 app/features/organizers.php:271
506
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
507
- #: app/features/search.php:80 app/libraries/main.php:6356
508
- #: app/libraries/main.php:6410 app/libraries/skins.php:986
509
  #: app/skins/single.php:1264 app/skins/single/default.php:244
510
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
511
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
@@ -514,7 +514,7 @@ msgstr "Szervező"
514
 
515
  #: app/features/events.php:350 app/features/events.php:1165
516
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
517
- #: app/libraries/main.php:6387 app/libraries/main.php:6436
518
  #: app/skins/single.php:1042 app/skins/single/default.php:142
519
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
520
  #: app/skins/single/modern.php:237
@@ -534,17 +534,17 @@ msgid "Guest Data"
534
  msgstr ""
535
 
536
  #: app/features/events.php:511 app/features/events.php:2499
537
- #: app/features/events.php:4111 app/features/fes.php:243
538
  #: app/features/fes/form.php:795 app/features/labels.php:178
539
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
540
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
541
- #: app/libraries/notifications.php:1611 app/modules/booking/steps/form.php:63
542
  msgid "Name"
543
  msgstr "Név"
544
 
545
  #: app/features/events.php:512 app/features/events.php:2508
546
  #: app/features/events.php:2575 app/features/events.php:2664
547
- #: app/features/events.php:4114 app/features/fes.php:243
548
  #: app/features/fes/form.php:791 app/features/login/login.php:5
549
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
550
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
@@ -552,7 +552,7 @@ msgstr "Név"
552
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
553
  #: app/features/speakers.php:204 app/libraries/main.php:1872
554
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
555
- #: app/libraries/notifications.php:1612 app/modules/booking/steps/form.php:72
556
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
557
  #: app/skins/single.php:1340 app/skins/single/default.php:261
558
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
@@ -571,9 +571,9 @@ msgid "Date and Time"
571
  msgstr ""
572
 
573
  #: app/features/events.php:528 app/features/events.php:532
574
- #: app/features/events.php:3600 app/features/events.php:3788
575
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
576
- #: app/features/ix.php:3980 app/features/ix.php:4022
577
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
578
  #: app/features/mec/meta_boxes/display_options.php:52
579
  #: app/features/mec/meta_boxes/display_options.php:295
@@ -595,9 +595,9 @@ msgid "Start Date"
595
  msgstr ""
596
 
597
  #: app/features/events.php:547 app/features/events.php:551
598
- #: app/features/events.php:3601 app/features/events.php:3788
599
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
600
- #: app/features/ix.php:3980 app/features/ix.php:4022
601
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
602
  #: app/features/popup/event.php:92
603
  msgid "End Date"
@@ -643,7 +643,7 @@ msgstr ""
643
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
644
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
645
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
646
- #: app/features/mec/booking.php:830 app/features/mec/booking.php:856
647
  #: app/features/mec/dashboard.php:71
648
  #: app/features/mec/meta_boxes/display_options.php:85
649
  #: app/features/mec/meta_boxes/display_options.php:98
@@ -908,10 +908,10 @@ msgstr ""
908
  msgid "Show only one occurrence of this event"
909
  msgstr ""
910
 
911
- #: app/features/events.php:1161 app/features/events.php:3788
912
- #: app/features/fes/form.php:833 app/features/ix.php:3980
913
- #: app/features/ix.php:4022 app/features/mec/settings.php:763
914
- #: app/libraries/main.php:6386 app/libraries/main.php:6435
915
  #: app/widgets/single.php:103
916
  msgid "Event Cost"
917
  msgstr ""
@@ -943,7 +943,7 @@ msgid ""
943
  "multiple day occurrences."
944
  msgstr ""
945
 
946
- #: app/features/events.php:1334 app/libraries/render.php:559
947
  msgid "Day 1"
948
  msgstr ""
949
 
@@ -965,9 +965,9 @@ msgstr ""
965
  #: app/features/events.php:1376 app/features/events.php:1415
966
  #: app/features/events.php:1450 app/features/events.php:1482
967
  #: app/features/events.php:1511 app/features/events.php:2371
968
- #: app/features/events.php:2418 app/features/events.php:3596
969
- #: app/features/events.php:3788 app/features/fes/form.php:256
970
- #: app/features/ix.php:3980 app/features/ix.php:4022
971
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
972
  #: app/features/mec/styling.php:130
973
  msgid "Title"
@@ -1008,7 +1008,7 @@ msgstr ""
1008
 
1009
  #: app/features/events.php:1419 app/features/events.php:1453
1010
  #: app/features/events.php:1514 app/features/events.php:1892
1011
- #: app/features/events.php:2074 app/features/events.php:3788
1012
  msgid "Description"
1013
  msgstr ""
1014
 
@@ -1016,8 +1016,8 @@ msgstr ""
1016
  #: app/features/events.php:1519 app/features/fes/form.php:959
1017
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1018
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1019
- #: app/libraries/main.php:577 app/libraries/main.php:6357
1020
- #: app/libraries/main.php:6411 app/modules/speakers/details.php:18
1021
  msgid "Speakers"
1022
  msgstr ""
1023
 
@@ -1032,7 +1032,7 @@ msgstr ""
1032
 
1033
  #: app/features/events.php:1553 app/features/events.php:1561
1034
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1035
- #: app/libraries/main.php:6384 app/libraries/main.php:6433
1036
  msgid "Event Link"
1037
  msgstr ""
1038
 
@@ -1053,8 +1053,8 @@ msgid "URL Shortener"
1053
  msgstr ""
1054
 
1055
  #: app/features/events.php:1571 app/features/events.php:1584
1056
- #: app/features/fes/form.php:817 app/libraries/main.php:6385
1057
- #: app/libraries/main.php:6434 app/skins/single.php:1126
1058
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1059
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1060
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
@@ -1092,7 +1092,7 @@ msgid "Total User Booking Limits"
1092
  msgstr "Foglalások"
1093
 
1094
  #: app/features/events.php:1610 app/features/events.php:1835
1095
- #: app/libraries/book.php:63 app/libraries/main.php:6389
1096
  #: app/modules/booking/steps/tickets.php:137
1097
  #: app/modules/booking/steps/tickets.php:143
1098
  msgid "Tickets"
@@ -1107,7 +1107,7 @@ msgstr ""
1107
  msgid "Ticket Variations / Options"
1108
  msgstr ""
1109
 
1110
- #: app/features/events.php:1619 app/features/mec/booking.php:885
1111
  #: app/features/mec/support-page.php:118
1112
  #, fuzzy
1113
  #| msgid "Organizer"
@@ -1195,8 +1195,8 @@ msgstr ""
1195
 
1196
  #: app/features/events.php:1763 app/features/events.php:1773
1197
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1198
- #: app/features/mec/booking.php:253 app/features/mec/booking.php:824
1199
- #: app/features/mec/booking.php:849
1200
  #: app/features/mec/meta_boxes/search_form.php:33
1201
  #: app/features/mec/meta_boxes/search_form.php:40
1202
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1302,8 +1302,8 @@ msgstr ""
1302
 
1303
  #: app/features/events.php:1764 app/features/events.php:1774
1304
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1305
- #: app/features/mec/booking.php:254 app/features/mec/booking.php:823
1306
- #: app/features/mec/booking.php:850 app/features/mec/settings.php:106
1307
  msgid "Enabled"
1308
  msgstr ""
1309
 
@@ -1351,8 +1351,8 @@ msgid "Ticket ID"
1351
  msgstr "Keresztnév"
1352
 
1353
  #: app/features/events.php:1855 app/features/events.php:2039
1354
- #: app/features/events.php:3788 app/features/fes.php:243
1355
- #: app/features/ix.php:3980 app/features/ix.php:4022
1356
  #: app/features/labels.php:177 app/features/locations.php:262
1357
  #: app/features/organizers.php:203 app/features/speakers.php:282
1358
  msgid "ID"
@@ -1363,14 +1363,14 @@ msgid "Ticket Name"
1363
  msgstr ""
1364
 
1365
  #: app/features/events.php:1863 app/features/events.php:2046
1366
- #: app/features/events.php:3788 app/features/ix.php:3980
1367
- #: app/features/ix.php:4022
1368
  msgid "Start Time"
1369
  msgstr ""
1370
 
1371
  #: app/features/events.php:1876 app/features/events.php:2059
1372
- #: app/features/events.php:3788 app/features/ix.php:3980
1373
- #: app/features/ix.php:4022
1374
  msgid "End Time"
1375
  msgstr ""
1376
 
@@ -1671,32 +1671,32 @@ msgstr ""
1671
  msgid "Fixed Fields"
1672
  msgstr "Töltse ki az adatokat!"
1673
 
1674
- #: app/features/events.php:3498 app/features/events.php:3516
1675
- #: app/features/events.php:3534 app/features/events.php:3552
1676
  #, php-format
1677
  msgid "Show all %s"
1678
  msgstr ""
1679
 
1680
- #: app/features/events.php:3498
1681
  msgid "labels"
1682
  msgstr ""
1683
 
1684
- #: app/features/events.php:3516
1685
  msgid "locations"
1686
  msgstr ""
1687
 
1688
- #: app/features/events.php:3534
1689
  msgid "organizers"
1690
  msgstr ""
1691
 
1692
- #: app/features/events.php:3568
1693
  #, fuzzy
1694
  #| msgid "Attendees Form"
1695
  msgid "Attendees List"
1696
  msgstr "Jelentkezési lap"
1697
 
1698
- #: app/features/events.php:3598 app/features/events.php:3788
1699
- #: app/features/ix.php:3980 app/features/ix.php:4022
1700
  #: app/features/locations.php:58 app/features/locations.php:263
1701
  #: app/features/locations.php:324 app/features/locations.php:326
1702
  #: app/features/locations.php:335
@@ -1715,8 +1715,8 @@ msgstr "Jelentkezési lap"
1715
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1716
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1717
  #: app/features/popup/event.php:125 app/features/search.php:74
1718
- #: app/libraries/main.php:2641 app/libraries/main.php:6354
1719
- #: app/libraries/main.php:6408 app/libraries/skins.php:960
1720
  #: app/skins/single.php:943 app/skins/single.php:1386
1721
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1722
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
@@ -1724,48 +1724,48 @@ msgstr "Jelentkezési lap"
1724
  msgid "Location"
1725
  msgstr "helyszín"
1726
 
1727
- #: app/features/events.php:3603
1728
  msgid "Repeat"
1729
  msgstr ""
1730
 
1731
- #: app/features/events.php:3604
1732
  msgid "Author"
1733
  msgstr ""
1734
 
1735
- #: app/features/events.php:3725 app/features/events.php:3726
1736
  #, fuzzy
1737
  #| msgid "iCal Export"
1738
  msgid "iCal / Outlook Export"
1739
  msgstr "iCal naptárba mentés"
1740
 
1741
- #: app/features/events.php:3728 app/features/events.php:3729
1742
  msgid "CSV Export"
1743
  msgstr ""
1744
 
1745
- #: app/features/events.php:3731 app/features/events.php:3732
1746
  msgid "MS Excel Export"
1747
  msgstr ""
1748
 
1749
- #: app/features/events.php:3734 app/features/events.php:3735
1750
  msgid "XML Export"
1751
  msgstr ""
1752
 
1753
- #: app/features/events.php:3737 app/features/events.php:3738
1754
  msgid "JSON Export"
1755
  msgstr ""
1756
 
1757
- #: app/features/events.php:3740 app/features/events.php:3741
1758
- #: app/features/events.php:3897
1759
  msgid "Duplicate"
1760
  msgstr ""
1761
 
1762
- #: app/features/events.php:3788 app/features/ix.php:3980
1763
- #: app/features/ix.php:4022
1764
  msgid "Link"
1765
  msgstr ""
1766
 
1767
- #: app/features/events.php:3788 app/features/ix.php:3980
1768
- #: app/features/ix.php:4022 app/features/locations.php:110
1769
  #: app/features/locations.php:180 app/features/locations.php:264
1770
  #: app/features/mec/meta_boxes/search_form.php:74
1771
  #: app/features/mec/meta_boxes/search_form.php:144
@@ -1781,46 +1781,46 @@ msgstr ""
1781
  msgid "Address"
1782
  msgstr ""
1783
 
1784
- #: app/features/events.php:3788
1785
  #, php-format
1786
  msgid "%s Tel"
1787
  msgstr ""
1788
 
1789
- #: app/features/events.php:3788
1790
  #, php-format
1791
  msgid "%s Email"
1792
  msgstr ""
1793
 
1794
- #: app/features/events.php:3788 app/features/fes/form.php:850
1795
  #: app/features/mec/settings.php:769
1796
  msgid "Featured Image"
1797
  msgstr ""
1798
 
1799
- #: app/features/events.php:4117 app/features/fes.php:243
1800
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1801
- #: app/libraries/main.php:6388
1802
  msgid "Ticket"
1803
  msgstr ""
1804
 
1805
- #: app/features/events.php:4120 app/features/profile/profile.php:186
1806
  msgid "Variations"
1807
  msgstr ""
1808
 
1809
- #: app/features/events.php:4135 app/features/fes.php:316
1810
  msgid "Unknown"
1811
  msgstr ""
1812
 
1813
- #: app/features/events.php:4161
1814
  msgid ""
1815
  "If you want to send an email, first select your attendees and then click in "
1816
  "the button below, please."
1817
  msgstr ""
1818
 
1819
- #: app/features/events.php:4161 app/features/mec/report.php:58
1820
  msgid "Send Email"
1821
  msgstr ""
1822
 
1823
- #: app/features/events.php:4165
1824
  #, fuzzy
1825
  #| msgid "Attendees Form"
1826
  msgid "No Attendees Found!"
@@ -2037,8 +2037,8 @@ msgstr ""
2037
  #: app/features/fes/form.php:891 app/features/labels.php:61
2038
  #: app/features/labels.php:221 app/features/mec.php:468
2039
  #: app/features/mec/meta_boxes/filter.php:72
2040
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6351
2041
- #: app/libraries/main.php:6405 app/skins/single.php:1156
2042
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2043
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2044
  msgid "Labels"
@@ -2118,27 +2118,27 @@ msgstr ""
2118
  msgid "An error occurred during the file upload! Please check permissions!"
2119
  msgstr ""
2120
 
2121
- #: app/features/ix.php:265 app/libraries/main.php:6636
2122
- #: app/libraries/main.php:6656
2123
  msgid "Confirmed"
2124
  msgstr ""
2125
 
2126
- #: app/features/ix.php:266 app/libraries/main.php:6637
2127
- #: app/libraries/main.php:6664
2128
  msgid "Rejected"
2129
  msgstr ""
2130
 
2131
- #: app/features/ix.php:270 app/features/mec/booking.php:992
2132
- #: app/features/mec/booking.php:1014 app/features/mec/modules.php:431
2133
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2134
- #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1313
2135
- #: app/features/mec/settings.php:1335 app/features/mec/single.php:446
2136
- #: app/features/mec/single.php:468 app/libraries/main.php:6684
2137
  msgid "Verified"
2138
  msgstr ""
2139
 
2140
  #: app/features/ix.php:271 app/features/labels.php:118
2141
- #: app/features/labels.php:143 app/libraries/main.php:6685
2142
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2143
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2144
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
@@ -2172,84 +2172,84 @@ msgstr ""
2172
  msgid "The events are imported successfully!"
2173
  msgstr ""
2174
 
2175
- #: app/features/ix.php:1166
2176
  msgid "Third Party plugin is not installed and activated!"
2177
  msgstr ""
2178
 
2179
- #: app/features/ix.php:1190
2180
  msgid "Third Party plugin is invalid!"
2181
  msgstr ""
2182
 
2183
- #: app/features/ix.php:3165 app/features/ix.php:3223
2184
  msgid "API key and Calendar ID are required!"
2185
  msgstr ""
2186
 
2187
- #: app/features/ix.php:3218 app/features/ix.php:3663 app/features/ix.php:4398
2188
  #, fuzzy
2189
  #| msgid "Please select some tickets!"
2190
  msgid "Please select events to import!"
2191
  msgstr "Kérjük, válasszon néhány jegyet!"
2192
 
2193
- #: app/features/ix.php:3605 app/features/ix.php:3668
2194
  msgid "API key and Group URL are required!"
2195
  msgstr ""
2196
 
2197
- #: app/features/ix.php:3907
2198
  msgid "Check at Meetup"
2199
  msgstr ""
2200
 
2201
- #: app/features/ix.php:3980 app/features/ix.php:4022
2202
  msgid "Organizer Tel"
2203
  msgstr ""
2204
 
2205
- #: app/features/ix.php:3980 app/features/ix.php:4022
2206
  msgid "Organizer Email"
2207
  msgstr ""
2208
 
2209
- #: app/features/ix.php:4098
2210
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2211
  msgstr ""
2212
 
2213
- #: app/features/ix.php:4121
2214
  #, php-format
2215
  msgid "All seems good! Please click %s to authenticate your app."
2216
  msgstr ""
2217
 
2218
- #: app/features/ix.php:4121 app/features/mec/settings.php:1236
2219
  msgid "here"
2220
  msgstr ""
2221
 
2222
- #: app/features/ix.php:4175
2223
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2224
  msgstr ""
2225
 
2226
- #: app/features/ix.php:4320
2227
  #, fuzzy, php-format
2228
  #| msgid "+ Add to Google Calendar"
2229
  msgid "%s events added to Google Calendar with success."
2230
  msgstr "+ Google Naptárba mentés"
2231
 
2232
- #: app/features/ix.php:4321
2233
  #, php-format
2234
  msgid "%s Updated previously added events."
2235
  msgstr ""
2236
 
2237
- #: app/features/ix.php:4322
2238
  #, php-format
2239
  msgid "%s events failed to add for following reasons: %s"
2240
  msgstr ""
2241
 
2242
- #: app/features/ix.php:4354
2243
  msgid "Please insert your Facebook page's link."
2244
  msgstr ""
2245
 
2246
- #: app/features/ix.php:4365 app/features/ix.php:4407
2247
  msgid ""
2248
  "We were not able to recognize your Facebook page. Please check again and "
2249
  "provide a valid link."
2250
  msgstr ""
2251
 
2252
- #: app/features/ix.php:4402
2253
  msgid "Please insert your facebook page's link."
2254
  msgstr ""
2255
 
@@ -2414,9 +2414,9 @@ msgstr ""
2414
  msgid "Add to Google Calendar"
2415
  msgstr "Google Naptárba mentés"
2416
 
2417
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:994
2418
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2419
- #: app/features/mec/settings.php:1315 app/features/mec/single.php:448
2420
  msgid "Checking ..."
2421
  msgstr ""
2422
 
@@ -2880,8 +2880,8 @@ msgstr ""
2880
 
2881
  #: app/features/locations.php:59 app/features/mec.php:469
2882
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
2883
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6353
2884
- #: app/libraries/main.php:6407
2885
  msgid "Locations"
2886
  msgstr ""
2887
 
@@ -2993,8 +2993,8 @@ msgstr ""
2993
  msgid "Don't show map in single event page"
2994
  msgstr ""
2995
 
2996
- #: app/features/locations.php:398 app/libraries/main.php:6391
2997
- #: app/libraries/main.php:6438
2998
  #, fuzzy
2999
  #| msgid "Location"
3000
  msgid "Other Locations"
@@ -3071,7 +3071,7 @@ msgstr ""
3071
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3072
  #: app/features/mec/meta_boxes/filter.php:71
3073
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3074
- #: app/libraries/main.php:6355 app/libraries/main.php:6409
3075
  msgid "Organizers"
3076
  msgstr ""
3077
 
@@ -3258,9 +3258,9 @@ msgid "Search..."
3258
  msgstr ""
3259
 
3260
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3261
- #: app/features/mec/booking.php:910 app/features/mec/booking.php:919
3262
- #: app/features/mec/booking.php:929 app/features/mec/booking.php:1011
3263
- #: app/features/mec/booking.php:1025 app/features/mec/messages.php:15
3264
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3265
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3266
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
@@ -3270,8 +3270,8 @@ msgstr ""
3270
  #: app/features/mec/notifications.php:1218
3271
  #: app/features/mec/notifications.php:1324
3272
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3273
- #: app/features/mec/settings.php:1264 app/features/mec/settings.php:1274
3274
- #: app/features/mec/settings.php:1332 app/features/mec/settings.php:1346
3275
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3276
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3277
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
@@ -3555,7 +3555,7 @@ msgstr ""
3555
  msgid "Send confirmation email in auto confirmation mode"
3556
  msgstr ""
3557
 
3558
- #: app/features/mec/booking.php:412 app/libraries/main.php:568
3559
  #, fuzzy
3560
  #| msgid "Bookings"
3561
  msgid "Booking Shortcode"
@@ -3588,8 +3588,8 @@ msgid ""
3588
  "new menu on the Dashboard > Booking"
3589
  msgstr ""
3590
 
3591
- #: app/features/mec/booking.php:446 app/features/mec/booking.php:816
3592
- #: app/libraries/main.php:570
3593
  msgid "Taxes / Fees"
3594
  msgstr ""
3595
 
@@ -3601,7 +3601,7 @@ msgstr ""
3601
  msgid "Add Fee"
3602
  msgstr ""
3603
 
3604
- #: app/features/mec/booking.php:523 app/libraries/main.php:571
3605
  msgid "Ticket Variations & Options"
3606
  msgstr ""
3607
 
@@ -3613,11 +3613,35 @@ msgstr ""
3613
  msgid "Add Variation / Option"
3614
  msgstr ""
3615
 
3616
- #: app/features/mec/booking.php:806
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3617
  msgid "Use WooCommerce as Payment System"
3618
  msgstr ""
3619
 
3620
- #: app/features/mec/booking.php:808
3621
  msgid ""
3622
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3623
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -3625,108 +3649,108 @@ msgid ""
3625
  "fields etc, you need to configure WooCommerce on your website."
3626
  msgstr ""
3627
 
3628
- #: app/features/mec/booking.php:810
3629
  msgid ""
3630
  "You cannot use following MEC features so you should use WooCommerc and its "
3631
  "addons if you need them."
3632
  msgstr ""
3633
 
3634
- #: app/features/mec/booking.php:812
3635
  msgid "Payment gateways"
3636
  msgstr ""
3637
 
3638
- #: app/features/mec/booking.php:813
3639
  msgid "Price per dates of tickets"
3640
  msgstr ""
3641
 
3642
- #: app/features/mec/booking.php:815
3643
  #, fuzzy
3644
  #| msgid "Tickets Price"
3645
  msgid "Ticket variations"
3646
  msgstr "Jegy(ek) ára"
3647
 
3648
- #: app/features/mec/booking.php:820
3649
  msgid "Automatically complete WooCommerce orders"
3650
  msgstr ""
3651
 
3652
- #: app/features/mec/booking.php:828
3653
  msgid "Auto WooCommerce orders"
3654
  msgstr ""
3655
 
3656
- #: app/features/mec/booking.php:829
3657
  msgid "It applies only to the orders that are related to MEC."
3658
  msgstr ""
3659
 
3660
- #: app/features/mec/booking.php:837
3661
  msgid "After Add to Cart"
3662
  msgstr ""
3663
 
3664
- #: app/features/mec/booking.php:840
3665
  #, fuzzy
3666
  #| msgid "Get Direction"
3667
  msgid "Redirect to Cart"
3668
  msgstr "Útvonaltervezés"
3669
 
3670
- #: app/features/mec/booking.php:841
3671
  #, fuzzy
3672
  #| msgid "Get Direction"
3673
  msgid "Redirect to Checkout"
3674
  msgstr "Útvonaltervezés"
3675
 
3676
- #: app/features/mec/booking.php:846
3677
  #, fuzzy
3678
  #| msgid "Bookings"
3679
  msgid "MEC Booking Form"
3680
  msgstr "Foglalások"
3681
 
3682
- #: app/features/mec/booking.php:855
3683
  msgid ""
3684
  "If enabled then users should fill the booking form in MEC and then they will "
3685
  "be redirected to checkout."
3686
  msgstr ""
3687
 
3688
- #: app/features/mec/booking.php:881
3689
  msgid "Enable Organizer Payment Module"
3690
  msgstr ""
3691
 
3692
- #: app/features/mec/booking.php:886
3693
  msgid ""
3694
  "By enabling this module, organizers are able to insert their own payment "
3695
  "credentials for enabled gateways per event and receive the payments directly!"
3696
  msgstr ""
3697
 
3698
- #: app/features/mec/booking.php:896
3699
  msgid "Disable / Enable payment gateways per event"
3700
  msgstr ""
3701
 
3702
- #: app/features/mec/booking.php:900
3703
  #, fuzzy
3704
  #| msgid "Facebook Events"
3705
  msgid "Payment Gateways Per Event"
3706
  msgstr "Facebook események"
3707
 
3708
- #: app/features/mec/booking.php:901
3709
  msgid ""
3710
  "By enabling this module, users are able to disable / enable payment gateways "
3711
  "per event"
3712
  msgstr ""
3713
 
3714
- #: app/features/mec/booking.php:989 app/features/mec/messages.php:78
3715
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3716
- #: app/features/mec/settings.php:1310 app/features/mec/single.php:443
3717
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3718
  msgid "Saved"
3719
  msgstr ""
3720
 
3721
- #: app/features/mec/booking.php:990 app/features/mec/messages.php:79
3722
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3723
- #: app/features/mec/settings.php:1311 app/features/mec/single.php:444
3724
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3725
  msgid "Settings Saved!"
3726
  msgstr ""
3727
 
3728
- #: app/features/mec/booking.php:1016 app/features/mec/modules.php:455
3729
- #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1337
3730
  #: app/features/mec/single.php:470
3731
  msgid "Please Refresh Page"
3732
  msgstr ""
@@ -4891,7 +4915,7 @@ msgstr ""
4891
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
4892
  #: app/features/mec/single.php:386 app/features/search.php:86
4893
  #: app/features/speakers.php:60 app/features/speakers.php:283
4894
- #: app/libraries/main.php:6358 app/libraries/main.php:6412
4895
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
4896
  msgid "Speaker"
4897
  msgstr ""
@@ -6008,8 +6032,8 @@ msgstr ""
6008
  msgid "only once per hour"
6009
  msgstr ""
6010
 
6011
- #: app/features/mec/notifications.php:950 app/libraries/main.php:7446
6012
- #: app/libraries/main.php:7463
6013
  #, fuzzy
6014
  #| msgid "hours"
6015
  msgid "Hours"
@@ -6254,7 +6278,7 @@ msgid "You can enable/disable Schema scripts"
6254
  msgstr ""
6255
 
6256
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6257
- #: app/libraries/main.php:6362 app/libraries/main.php:6416
6258
  msgid "Weekdays"
6259
  msgstr ""
6260
 
@@ -6559,8 +6583,8 @@ msgstr "Név"
6559
  msgid "Let WordPress decide"
6560
  msgstr ""
6561
 
6562
- #: app/features/mec/settings.php:660 app/libraries/main.php:6638
6563
- #: app/libraries/main.php:6660
6564
  msgid "Pending"
6565
  msgstr ""
6566
 
@@ -6691,8 +6715,8 @@ msgstr "Töltse ki az adatokat!"
6691
  msgid "Event Description"
6692
  msgstr "Szervező"
6693
 
6694
- #: app/features/mec/settings.php:930 app/libraries/main.php:6385
6695
- #: app/libraries/main.php:6434
6696
  msgid "More Info Link"
6697
  msgstr ""
6698
 
@@ -6855,31 +6879,7 @@ msgstr ""
6855
  msgid "More information about the list ID can be found %s."
6856
  msgstr ""
6857
 
6858
- #: app/features/mec/settings.php:1241
6859
- msgid "Upload Field Options"
6860
- msgstr ""
6861
-
6862
- #: app/features/mec/settings.php:1243
6863
- msgid "Mime types"
6864
- msgstr ""
6865
-
6866
- #: app/features/mec/settings.php:1247
6867
- msgid "Split mime types with \",\"."
6868
- msgstr ""
6869
-
6870
- #: app/features/mec/settings.php:1247
6871
- msgid "Default: jpeg,jpg,png,pdf"
6872
- msgstr ""
6873
-
6874
- #: app/features/mec/settings.php:1250
6875
- msgid "Maximum file size"
6876
- msgstr ""
6877
-
6878
- #: app/features/mec/settings.php:1254
6879
- msgid "The unit is Megabyte \"MB\""
6880
- msgstr ""
6881
-
6882
- #: app/features/mec/single.php:38 app/libraries/main.php:556
6883
  msgid "Single Event Page"
6884
  msgstr ""
6885
 
@@ -6989,7 +6989,7 @@ msgid ""
6989
  "the settings page.' tab"
6990
  msgstr ""
6991
 
6992
- #: app/features/mec/single.php:162 app/libraries/main.php:557
6993
  msgid "Custom Fields"
6994
  msgstr ""
6995
 
@@ -7030,7 +7030,7 @@ msgid ""
7030
  "Using this option you can exclude certain days from event occurrence dates."
7031
  msgstr ""
7032
 
7033
- #: app/features/mec/single.php:286 app/libraries/main.php:560
7034
  msgid "Additional Organizers"
7035
  msgstr ""
7036
 
@@ -7054,7 +7054,7 @@ msgid ""
7054
  "page."
7055
  msgstr ""
7056
 
7057
- #: app/features/mec/single.php:318 app/libraries/main.php:562
7058
  #: app/skins/single.php:170 app/skins/single.php:435
7059
  #, fuzzy
7060
  #| msgid "Facebook Events"
@@ -7069,7 +7069,7 @@ msgstr ""
7069
  msgid "Select Taxonomies:"
7070
  msgstr ""
7071
 
7072
- #: app/features/mec/single.php:360 app/libraries/main.php:563
7073
  msgid "Next / Previous Events"
7074
  msgstr ""
7075
 
@@ -7797,8 +7797,8 @@ msgstr "például john@smith.com"
7797
  msgid "eg. https://webnus.net"
7798
  msgstr ""
7799
 
7800
- #: app/features/organizers.php:312 app/libraries/main.php:6390
7801
- #: app/libraries/main.php:6437 app/skins/single.php:1314
7802
  msgid "Other Organizers"
7803
  msgstr ""
7804
 
@@ -8028,9 +8028,9 @@ msgstr ""
8028
  msgid "No search result."
8029
  msgstr ""
8030
 
8031
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6392
8032
- #: app/libraries/main.php:6439 app/libraries/notifications.php:1256
8033
- #: app/libraries/render.php:531 app/libraries/render.php:853
8034
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8035
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8036
  #: app/modules/next-event/details.php:154
@@ -8119,9 +8119,9 @@ msgid ""
8119
  "section and speaker widget section!"
8120
  msgstr ""
8121
 
8122
- #: app/features/wc.php:103 app/libraries/notifications.php:1241
8123
- #: app/libraries/notifications.php:1256 app/libraries/notifications.php:1267
8124
- #: app/libraries/notifications.php:1536 app/libraries/notifications.php:1537
8125
  #, php-format
8126
  msgid "%s to %s"
8127
  msgstr ""
@@ -8141,11 +8141,11 @@ msgstr ""
8141
  msgid "%s Price"
8142
  msgstr ""
8143
 
8144
- #: app/libraries/book.php:703 app/libraries/book.php:794
8145
  msgid "Discount"
8146
  msgstr ""
8147
 
8148
- #: app/libraries/book.php:881 app/modules/booking/default.php:426
8149
  #: app/modules/booking/default.php:531
8150
  msgid "Download Invoice"
8151
  msgstr ""
@@ -8275,47 +8275,47 @@ msgstr ""
8275
  msgid "Timeline View"
8276
  msgstr ""
8277
 
8278
- #: app/libraries/main.php:391 app/libraries/main.php:6364
8279
- #: app/libraries/main.php:6418
8280
  msgid "SU"
8281
  msgstr ""
8282
 
8283
- #: app/libraries/main.php:392 app/libraries/main.php:6365
8284
- #: app/libraries/main.php:6419
8285
  msgid "MO"
8286
  msgstr ""
8287
 
8288
- #: app/libraries/main.php:393 app/libraries/main.php:6366
8289
- #: app/libraries/main.php:6420
8290
  msgid "TU"
8291
  msgstr ""
8292
 
8293
- #: app/libraries/main.php:394 app/libraries/main.php:6367
8294
- #: app/libraries/main.php:6421
8295
  msgid "WE"
8296
  msgstr ""
8297
 
8298
- #: app/libraries/main.php:395 app/libraries/main.php:6368
8299
- #: app/libraries/main.php:6422
8300
  msgid "TH"
8301
  msgstr ""
8302
 
8303
- #: app/libraries/main.php:396 app/libraries/main.php:6369
8304
- #: app/libraries/main.php:6423
8305
  msgid "FR"
8306
  msgstr ""
8307
 
8308
- #: app/libraries/main.php:397 app/libraries/main.php:6370
8309
- #: app/libraries/main.php:6424
8310
  msgid "SA"
8311
  msgstr ""
8312
 
8313
- #: app/libraries/main.php:552
8314
- msgid "Upload Field"
8315
  msgstr ""
8316
 
8317
- #: app/libraries/main.php:561
8318
- msgid
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-11-18 11:01+0330\n"
5
+ "PO-Revision-Date: 2020-11-18 11:02+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
99
 
100
  #: app/features/contextual.php:62 app/features/events.php:1617
101
  #: app/features/events.php:2513 app/features/mec/booking.php:606
102
+ #: app/features/mec/booking.php:872 app/features/mec/support.php:29
103
+ #: app/libraries/main.php:571
104
  msgid "Booking Form"
105
  msgstr ""
106
 
114
  msgstr ""
115
 
116
  #: app/features/contextual.php:70 app/features/events.php:1625
117
+ #: app/features/mec/booking.php:816 app/features/mec/support-page.php:115
118
  #: app/features/mec/support.php:36 app/libraries/main.php:573
119
  msgid "Payment Gateways"
120
  msgstr ""
220
  msgstr ""
221
 
222
  #: app/features/contextual.php:258 app/features/mec/single.php:248
223
+ #: app/libraries/main.php:557
224
  msgid "Countdown Options"
225
  msgstr ""
226
 
239
  msgstr ""
240
 
241
  #: app/features/contextual.php:298 app/features/events.php:345
242
+ #: app/libraries/main.php:558
243
  msgid "Exceptional Days"
244
  msgstr ""
245
 
246
  #: app/features/contextual.php:308 app/features/events.php:315
247
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:36
248
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
249
+ #: app/libraries/main.php:566 app/libraries/main.php:597
250
  #: app/libraries/main.php:684
251
  msgid "Booking"
252
  msgstr ""
253
 
254
  #: app/features/contextual.php:318 app/features/mec/booking.php:428
255
+ #: app/features/mec/booking.php:832 app/libraries/main.php:568
256
  msgid "Coupons"
257
  msgstr ""
258
 
304
  msgstr ""
305
 
306
  #: app/features/events.php:167 app/features/ix/export.php:34
307
+ #: app/features/mec/dashboard.php:265 app/libraries/main.php:5542
308
+ #: app/libraries/main.php:5562 app/skins/daily_view/tpl.php:82
309
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
310
  #: app/skins/yearly_view/tpl.php:71
311
  msgid "Events"
329
  msgid "Add New Event"
330
  msgstr ""
331
 
332
+ #: app/features/events.php:171 app/features/ix.php:4401
333
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:68
334
  #: app/skins/map/tpl.php:88
335
  msgid "No events found!"
352
  msgid "No events found in Trash!"
353
  msgstr ""
354
 
355
+ #: app/features/events.php:192 app/features/events.php:3599
356
  #: app/features/mec/meta_boxes/display_options.php:1463
357
  #: app/features/mec/meta_boxes/search_form.php:31
358
  #: app/features/mec/meta_boxes/search_form.php:101
367
  #: app/features/mec/meta_boxes/search_form.php:760
368
  #: app/features/mec/settings.php:931 app/features/mec/settings.php:977
369
  #: app/features/mec/single.php:331 app/features/mec/single.php:373
370
+ #: app/features/search.php:68 app/libraries/main.php:6341
371
+ #: app/libraries/main.php:6395 app/libraries/skins.php:934
372
  #: app/skins/single.php:1016 app/skins/single/default.php:219
373
  #: app/skins/single/default.php:452 app/skins/single/m1.php:196
374
  #: app/skins/single/m2.php:119 app/skins/single/modern.php:140
375
  msgid "Category"
376
  msgstr "kategória"
377
 
378
+ #: app/features/events.php:193 app/features/events.php:3554
379
  #: app/features/fes/form.php:865 app/features/mec.php:467
380
  #: app/features/mec/meta_boxes/filter.php:69
381
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:6340
382
+ #: app/libraries/main.php:6394
383
  msgid "Categories"
384
  msgstr ""
385
 
484
  msgid "Links"
485
  msgstr ""
486
 
487
+ #: app/features/events.php:349 app/features/events.php:3601
488
+ #: app/features/events.php:3790 app/features/ix.php:3990
489
+ #: app/features/ix.php:4032
490
  #: app/features/mec/meta_boxes/display_options.php:1466
491
  #: app/features/mec/meta_boxes/search_form.php:46
492
  #: app/features/mec/meta_boxes/search_form.php:116
504
  #: app/features/organizers.php:204 app/features/organizers.php:260
505
  #: app/features/organizers.php:262 app/features/organizers.php:271
506
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
507
+ #: app/features/search.php:80 app/libraries/main.php:6347
508
+ #: app/libraries/main.php:6401 app/libraries/skins.php:986
509
  #: app/skins/single.php:1264 app/skins/single/default.php:244
510
  #: app/skins/single/default.php:477 app/skins/single/m1.php:102
511
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:48
514
 
515
  #: app/features/events.php:350 app/features/events.php:1165
516
  #: app/features/fes/form.php:836 app/features/mec/settings.php:928
517
+ #: app/libraries/main.php:6378 app/libraries/main.php:6427
518
  #: app/skins/single.php:1042 app/skins/single/default.php:142
519
  #: app/skins/single/default.php:376 app/skins/single/m1.php:61
520
  #: app/skins/single/modern.php:237
534
  msgstr ""
535
 
536
  #: app/features/events.php:511 app/features/events.php:2499
537
+ #: app/features/events.php:4113 app/features/fes.php:243
538
  #: app/features/fes/form.php:795 app/features/labels.php:178
539
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
540
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
541
+ #: app/libraries/notifications.php:1617 app/modules/booking/steps/form.php:63
542
  msgid "Name"
543
  msgstr "Név"
544
 
545
  #: app/features/events.php:512 app/features/events.php:2508
546
  #: app/features/events.php:2575 app/features/events.php:2664
547
+ #: app/features/events.php:4116 app/features/fes.php:243
548
  #: app/features/fes/form.php:791 app/features/login/login.php:5
549
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:644
550
  #: app/features/mec/booking.php:740 app/features/mec/single.php:191
552
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
553
  #: app/features/speakers.php:204 app/libraries/main.php:1872
554
  #: app/libraries/main.php:1941 app/libraries/main.php:3377
555
+ #: app/libraries/notifications.php:1618 app/modules/booking/steps/form.php:72
556
  #: app/modules/booking/steps/form.php:210 app/skins/single.php:1281
557
  #: app/skins/single.php:1340 app/skins/single/default.php:261
558
  #: app/skins/single/default.php:494 app/skins/single/m1.php:119
571
  msgstr ""
572
 
573
  #: app/features/events.php:528 app/features/events.php:532
574
+ #: app/features/events.php:3602 app/features/events.php:3790
575
  #: app/features/fes/form.php:282 app/features/fes/form.php:286
576
+ #: app/features/ix.php:3990 app/features/ix.php:4032
577
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1349
578
  #: app/features/mec/meta_boxes/display_options.php:52
579
  #: app/features/mec/meta_boxes/display_options.php:295
595
  msgstr ""
596
 
597
  #: app/features/events.php:547 app/features/events.php:551
598
+ #: app/features/events.php:3603 app/features/events.php:3790
599
  #: app/features/fes/form.php:301 app/features/fes/form.php:305
600
+ #: app/features/ix.php:3990 app/features/ix.php:4032
601
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1350
602
  #: app/features/popup/event.php:92
603
  msgid "End Date"
643
  #: app/features/mec/booking.php:473 app/features/mec/booking.php:502
644
  #: app/features/mec/booking.php:550 app/features/mec/booking.php:560
645
  #: app/features/mec/booking.php:582 app/features/mec/booking.php:592
646
+ #: app/features/mec/booking.php:848 app/features/mec/booking.php:874
647
  #: app/features/mec/dashboard.php:71
648
  #: app/features/mec/meta_boxes/display_options.php:85
649
  #: app/features/mec/meta_boxes/display_options.php:98
908
  msgid "Show only one occurrence of this event"
909
  msgstr ""
910
 
911
+ #: app/features/events.php:1161 app/features/events.php:3790
912
+ #: app/features/fes/form.php:833 app/features/ix.php:3990
913
+ #: app/features/ix.php:4032 app/features/mec/settings.php:763
914
+ #: app/libraries/main.php:6377 app/libraries/main.php:6426
915
  #: app/widgets/single.php:103
916
  msgid "Event Cost"
917
  msgstr ""
943
  "multiple day occurrences."
944
  msgstr ""
945
 
946
+ #: app/features/events.php:1334 app/libraries/render.php:560
947
  msgid "Day 1"
948
  msgstr ""
949
 
965
  #: app/features/events.php:1376 app/features/events.php:1415
966
  #: app/features/events.php:1450 app/features/events.php:1482
967
  #: app/features/events.php:1511 app/features/events.php:2371
968
+ #: app/features/events.php:2418 app/features/events.php:3598
969
+ #: app/features/events.php:3790 app/features/fes/form.php:256
970
+ #: app/features/ix.php:3990 app/features/ix.php:4032
971
  #: app/features/mec/booking.php:542 app/features/mec/booking.php:574
972
  #: app/features/mec/styling.php:130
973
  msgid "Title"
1008
 
1009
  #: app/features/events.php:1419 app/features/events.php:1453
1010
  #: app/features/events.php:1514 app/features/events.php:1892
1011
+ #: app/features/events.php:2074 app/features/events.php:3790
1012
  msgid "Description"
1013
  msgstr ""
1014
 
1016
  #: app/features/events.php:1519 app/features/fes/form.php:959
1017
  #: app/features/mec.php:475 app/features/mec/modules.php:51
1018
  #: app/features/mec/settings.php:811 app/features/speakers.php:61
1019
+ #: app/libraries/main.php:577 app/libraries/main.php:6348
1020
+ #: app/libraries/main.php:6402 app/modules/speakers/details.php:18
1021
  msgid "Speakers"
1022
  msgstr ""
1023
 
1032
 
1033
  #: app/features/events.php:1553 app/features/events.php:1561
1034
  #: app/features/fes/form.php:812 app/features/mec/settings.php:929
1035
+ #: app/libraries/main.php:6375 app/libraries/main.php:6424
1036
  msgid "Event Link"
1037
  msgstr ""
1038
 
1053
  msgstr ""
1054
 
1055
  #: app/features/events.php:1571 app/features/events.php:1584
1056
+ #: app/features/fes/form.php:817 app/libraries/main.php:6376
1057
+ #: app/libraries/main.php:6425 app/skins/single.php:1126
1058
  #: app/skins/single/default.php:158 app/skins/single/default.php:390
1059
  #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
1060
  #: app/skins/single/modern.php:162 app/widgets/single.php:107
1092
  msgstr "Foglalások"
1093
 
1094
  #: app/features/events.php:1610 app/features/events.php:1835
1095
+ #: app/libraries/book.php:63 app/libraries/main.php:6380
1096
  #: app/modules/booking/steps/tickets.php:137
1097
  #: app/modules/booking/steps/tickets.php:143
1098
  msgid "Tickets"
1107
  msgid "Ticket Variations / Options"
1108
  msgstr ""
1109
 
1110
+ #: app/features/events.php:1619 app/features/mec/booking.php:903
1111
  #: app/features/mec/support-page.php:118
1112
  #, fuzzy
1113
  #| msgid "Organizer"
1195
 
1196
  #: app/features/events.php:1763 app/features/events.php:1773
1197
  #: app/features/mec/booking.php:171 app/features/mec/booking.php:238
1198
+ #: app/features/mec/booking.php:253 app/features/mec/booking.php:842
1199
+ #: app/features/mec/booking.php:867
1200
  #: app/features/mec/meta_boxes/search_form.php:33
1201
  #: app/features/mec/meta_boxes/search_form.php:40
1202
  #: app/features/mec/meta_boxes/search_form.php:48
1302
 
1303
  #: app/features/events.php:1764 app/features/events.php:1774
1304
  #: app/features/mec/booking.php:170 app/features/mec/booking.php:237
1305
+ #: app/features/mec/booking.php:254 app/features/mec/booking.php:841
1306
+ #: app/features/mec/booking.php:868 app/features/mec/settings.php:106
1307
  msgid "Enabled"
1308
  msgstr ""
1309
 
1351
  msgstr "Keresztnév"
1352
 
1353
  #: app/features/events.php:1855 app/features/events.php:2039
1354
+ #: app/features/events.php:3790 app/features/fes.php:243
1355
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1356
  #: app/features/labels.php:177 app/features/locations.php:262
1357
  #: app/features/organizers.php:203 app/features/speakers.php:282
1358
  msgid "ID"
1363
  msgstr ""
1364
 
1365
  #: app/features/events.php:1863 app/features/events.php:2046
1366
+ #: app/features/events.php:3790 app/features/ix.php:3990
1367
+ #: app/features/ix.php:4032
1368
  msgid "Start Time"
1369
  msgstr ""
1370
 
1371
  #: app/features/events.php:1876 app/features/events.php:2059
1372
+ #: app/features/events.php:3790 app/features/ix.php:3990
1373
+ #: app/features/ix.php:4032
1374
  msgid "End Time"
1375
  msgstr ""
1376
 
1671
  msgid "Fixed Fields"
1672
  msgstr "Töltse ki az adatokat!"
1673
 
1674
+ #: app/features/events.php:3500 app/features/events.php:3518
1675
+ #: app/features/events.php:3536 app/features/events.php:3554
1676
  #, php-format
1677
  msgid "Show all %s"
1678
  msgstr ""
1679
 
1680
+ #: app/features/events.php:3500
1681
  msgid "labels"
1682
  msgstr ""
1683
 
1684
+ #: app/features/events.php:3518
1685
  msgid "locations"
1686
  msgstr ""
1687
 
1688
+ #: app/features/events.php:3536
1689
  msgid "organizers"
1690
  msgstr ""
1691
 
1692
+ #: app/features/events.php:3570
1693
  #, fuzzy
1694
  #| msgid "Attendees Form"
1695
  msgid "Attendees List"
1696
  msgstr "Jelentkezési lap"
1697
 
1698
+ #: app/features/events.php:3600 app/features/events.php:3790
1699
+ #: app/features/ix.php:3990 app/features/ix.php:4032
1700
  #: app/features/locations.php:58 app/features/locations.php:263
1701
  #: app/features/locations.php:324 app/features/locations.php:326
1702
  #: app/features/locations.php:335
1715
  #: app/features/mec/settings.php:983 app/features/mec/single.php:339
1716
  #: app/features/mec/single.php:381 app/features/popup/event.php:116
1717
  #: app/features/popup/event.php:125 app/features/search.php:74
1718
+ #: app/libraries/main.php:2641 app/libraries/main.php:6345
1719
+ #: app/libraries/main.php:6399 app/libraries/skins.php:960
1720
  #: app/skins/single.php:943 app/skins/single.php:1386
1721
  #: app/skins/single/default.php:195 app/skins/single/default.php:428
1722
  #: app/skins/single/m1.php:173 app/skins/single/m2.php:96
1724
  msgid "Location"
1725
  msgstr "helyszín"
1726
 
1727
+ #: app/features/events.php:3605
1728
  msgid "Repeat"
1729
  msgstr ""
1730
 
1731
+ #: app/features/events.php:3606
1732
  msgid "Author"
1733
  msgstr ""
1734
 
1735
+ #: app/features/events.php:3727 app/features/events.php:3728
1736
  #, fuzzy
1737
  #| msgid "iCal Export"
1738
  msgid "iCal / Outlook Export"
1739
  msgstr "iCal naptárba mentés"
1740
 
1741
+ #: app/features/events.php:3730 app/features/events.php:3731
1742
  msgid "CSV Export"
1743
  msgstr ""
1744
 
1745
+ #: app/features/events.php:3733 app/features/events.php:3734
1746
  msgid "MS Excel Export"
1747
  msgstr ""
1748
 
1749
+ #: app/features/events.php:3736 app/features/events.php:3737
1750
  msgid "XML Export"
1751
  msgstr ""
1752
 
1753
+ #: app/features/events.php:3739 app/features/events.php:3740
1754
  msgid "JSON Export"
1755
  msgstr ""
1756
 
1757
+ #: app/features/events.php:3742 app/features/events.php:3743
1758
+ #: app/features/events.php:3899
1759
  msgid "Duplicate"
1760
  msgstr ""
1761
 
1762
+ #: app/features/events.php:3790 app/features/ix.php:3990
1763
+ #: app/features/ix.php:4032
1764
  msgid "Link"
1765
  msgstr ""
1766
 
1767
+ #: app/features/events.php:3790 app/features/ix.php:3990
1768
+ #: app/features/ix.php:4032 app/features/locations.php:110
1769
  #: app/features/locations.php:180 app/features/locations.php:264
1770
  #: app/features/mec/meta_boxes/search_form.php:74
1771
  #: app/features/mec/meta_boxes/search_form.php:144
1781
  msgid "Address"
1782
  msgstr ""
1783
 
1784
+ #: app/features/events.php:3790
1785
  #, php-format
1786
  msgid "%s Tel"
1787
  msgstr ""
1788
 
1789
+ #: app/features/events.php:3790
1790
  #, php-format
1791
  msgid "%s Email"
1792
  msgstr ""
1793
 
1794
+ #: app/features/events.php:3790 app/features/fes/form.php:850
1795
  #: app/features/mec/settings.php:769
1796
  msgid "Featured Image"
1797
  msgstr ""
1798
 
1799
+ #: app/features/events.php:4119 app/features/fes.php:243
1800
  #: app/features/profile/profile.php:183 app/libraries/main.php:2725
1801
+ #: app/libraries/main.php:6379
1802
  msgid "Ticket"
1803
  msgstr ""
1804
 
1805
+ #: app/features/events.php:4122 app/features/profile/profile.php:186
1806
  msgid "Variations"
1807
  msgstr ""
1808
 
1809
+ #: app/features/events.php:4137 app/features/fes.php:316
1810
  msgid "Unknown"
1811
  msgstr ""
1812
 
1813
+ #: app/features/events.php:4163
1814
  msgid ""
1815
  "If you want to send an email, first select your attendees and then click in "
1816
  "the button below, please."
1817
  msgstr ""
1818
 
1819
+ #: app/features/events.php:4163 app/features/mec/report.php:58
1820
  msgid "Send Email"
1821
  msgstr ""
1822
 
1823
+ #: app/features/events.php:4167
1824
  #, fuzzy
1825
  #| msgid "Attendees Form"
1826
  msgid "No Attendees Found!"
2037
  #: app/features/fes/form.php:891 app/features/labels.php:61
2038
  #: app/features/labels.php:221 app/features/mec.php:468
2039
  #: app/features/mec/meta_boxes/filter.php:72
2040
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:6342
2041
+ #: app/libraries/main.php:6396 app/skins/single.php:1156
2042
  #: app/skins/single/default.php:173 app/skins/single/default.php:405
2043
  #: app/skins/single/m1.php:76 app/skins/single/modern.php:252
2044
  msgid "Labels"
2118
  msgid "An error occurred during the file upload! Please check permissions!"
2119
  msgstr ""
2120
 
2121
+ #: app/features/ix.php:265 app/libraries/main.php:6627
2122
+ #: app/libraries/main.php:6647
2123
  msgid "Confirmed"
2124
  msgstr ""
2125
 
2126
+ #: app/features/ix.php:266 app/libraries/main.php:6628
2127
+ #: app/libraries/main.php:6655
2128
  msgid "Rejected"
2129
  msgstr ""
2130
 
2131
+ #: app/features/ix.php:270 app/features/mec/booking.php:1010
2132
+ #: app/features/mec/booking.php:1032 app/features/mec/modules.php:431
2133
  #: app/features/mec/modules.php:453 app/features/mec/notifications.php:1305
2134
+ #: app/features/mec/notifications.php:1327 app/features/mec/settings.php:1295
2135
+ #: app/features/mec/settings.php:1317 app/features/mec/single.php:446
2136
+ #: app/features/mec/single.php:468 app/libraries/main.php:6675
2137
  msgid "Verified"
2138
  msgstr ""
2139
 
2140
  #: app/features/ix.php:271 app/features/labels.php:118
2141
+ #: app/features/labels.php:143 app/libraries/main.php:6676
2142
  #: app/skins/agenda/render.php:43 app/skins/available_spot/tpl.php:56
2143
  #: app/skins/carousel/render.php:38 app/skins/countdown/tpl.php:40
2144
  #: app/skins/cover/tpl.php:36 app/skins/daily_view/render.php:28
2172
  msgid "The events are imported successfully!"
2173
  msgstr ""
2174
 
2175
+ #: app/features/ix.php:1176
2176
  msgid "Third Party plugin is not installed and activated!"
2177
  msgstr ""
2178
 
2179
+ #: app/features/ix.php:1200
2180
  msgid "Third Party plugin is invalid!"
2181
  msgstr ""
2182
 
2183
+ #: app/features/ix.php:3175 app/features/ix.php:3233
2184
  msgid "API key and Calendar ID are required!"
2185
  msgstr ""
2186
 
2187
+ #: app/features/ix.php:3228 app/features/ix.php:3673 app/features/ix.php:4408
2188
  #, fuzzy
2189
  #| msgid "Please select some tickets!"
2190
  msgid "Please select events to import!"
2191
  msgstr "Kérjük, válasszon néhány jegyet!"
2192
 
2193
+ #: app/features/ix.php:3615 app/features/ix.php:3678
2194
  msgid "API key and Group URL are required!"
2195
  msgstr ""
2196
 
2197
+ #: app/features/ix.php:3917
2198
  msgid "Check at Meetup"
2199
  msgstr ""
2200
 
2201
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2202
  msgid "Organizer Tel"
2203
  msgstr ""
2204
 
2205
+ #: app/features/ix.php:3990 app/features/ix.php:4032
2206
  msgid "Organizer Email"
2207
  msgstr ""
2208
 
2209
+ #: app/features/ix.php:4108
2210
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2211
  msgstr ""
2212
 
2213
+ #: app/features/ix.php:4131
2214
  #, php-format
2215
  msgid "All seems good! Please click %s to authenticate your app."
2216
  msgstr ""
2217
 
2218
+ #: app/features/ix.php:4131 app/features/mec/settings.php:1236
2219
  msgid "here"
2220
  msgstr ""
2221
 
2222
+ #: app/features/ix.php:4185
2223
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2224
  msgstr ""
2225
 
2226
+ #: app/features/ix.php:4330
2227
  #, fuzzy, php-format
2228
  #| msgid "+ Add to Google Calendar"
2229
  msgid "%s events added to Google Calendar with success."
2230
  msgstr "+ Google Naptárba mentés"
2231
 
2232
+ #: app/features/ix.php:4331
2233
  #, php-format
2234
  msgid "%s Updated previously added events."
2235
  msgstr ""
2236
 
2237
+ #: app/features/ix.php:4332
2238
  #, php-format
2239
  msgid "%s events failed to add for following reasons: %s"
2240
  msgstr ""
2241
 
2242
+ #: app/features/ix.php:4364
2243
  msgid "Please insert your Facebook page's link."
2244
  msgstr ""
2245
 
2246
+ #: app/features/ix.php:4375 app/features/ix.php:4417
2247
  msgid ""
2248
  "We were not able to recognize your Facebook page. Please check again and "
2249
  "provide a valid link."
2250
  msgstr ""
2251
 
2252
+ #: app/features/ix.php:4412
2253
  msgid "Please insert your facebook page's link."
2254
  msgstr ""
2255
 
2414
  msgid "Add to Google Calendar"
2415
  msgstr "Google Naptárba mentés"
2416
 
2417
+ #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1012
2418
  #: app/features/mec/modules.php:433 app/features/mec/notifications.php:1307
2419
+ #: app/features/mec/settings.php:1297 app/features/mec/single.php:448
2420
  msgid "Checking ..."
2421
  msgstr ""
2422
 
2880
 
2881
  #: app/features/locations.php:59 app/features/mec.php:469
2882
  #: app/features/mec/dashboard.php:279 app/features/mec/meta_boxes/filter.php:70
2883
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:6344
2884
+ #: app/libraries/main.php:6398
2885
  msgid "Locations"
2886
  msgstr ""
2887
 
2993
  msgid "Don't show map in single event page"
2994
  msgstr ""
2995
 
2996
+ #: app/features/locations.php:398 app/libraries/main.php:6382
2997
+ #: app/libraries/main.php:6429
2998
  #, fuzzy
2999
  #| msgid "Location"
3000
  msgid "Other Locations"
3071
  #: app/features/mec.php:470 app/features/mec/dashboard.php:286
3072
  #: app/features/mec/meta_boxes/filter.php:71
3073
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
3074
+ #: app/libraries/main.php:6346 app/libraries/main.php:6400
3075
  msgid "Organizers"
3076
  msgstr ""
3077
 
3258
  msgstr ""
3259
 
3260
  #: app/features/mec/booking.php:80 app/features/mec/booking.php:754
3261
+ #: app/features/mec/booking.php:928 app/features/mec/booking.php:937
3262
+ #: app/features/mec/booking.php:947 app/features/mec/booking.php:1029
3263
+ #: app/features/mec/booking.php:1043 app/features/mec/messages.php:15
3264
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3265
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3266
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:389
3270
  #: app/features/mec/notifications.php:1218
3271
  #: app/features/mec/notifications.php:1324
3272
  #: app/features/mec/notifications.php:1338 app/features/mec/settings.php:42
3273
+ #: app/features/mec/settings.php:1246 app/features/mec/settings.php:1256
3274
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1328
3275
  #: app/features/mec/single.php:21 app/features/mec/single.php:413
3276
  #: app/features/mec/single.php:423 app/features/mec/single.php:465
3277
  #: app/features/mec/single.php:479 app/features/mec/styles.php:11
3555
  msgid "Send confirmation email in auto confirmation mode"
3556
  msgstr ""
3557
 
3558
+ #: app/features/mec/booking.php:412 app/libraries/main.php:567
3559
  #, fuzzy
3560
  #| msgid "Bookings"
3561
  msgid "Booking Shortcode"
3588
  "new menu on the Dashboard > Booking"
3589
  msgstr ""
3590
 
3591
+ #: app/features/mec/booking.php:446 app/features/mec/booking.php:834
3592
+ #: app/libraries/main.php:569
3593
  msgid "Taxes / Fees"
3594
  msgstr ""
3595
 
3601
  msgid "Add Fee"
3602
  msgstr ""
3603
 
3604
+ #: app/features/mec/booking.php:523 app/libraries/main.php:570
3605
  msgid "Ticket Variations & Options"
3606
  msgstr ""
3607
 
3613
  msgid "Add Variation / Option"
3614
  msgstr ""
3615
 
3616
+ #: app/features/mec/booking.php:798
3617
+ msgid "Upload Field Options"
3618
+ msgstr ""
3619
+
3620
+ #: app/features/mec/booking.php:800
3621
+ msgid "Mime types"
3622
+ msgstr ""
3623
+
3624
+ #: app/features/mec/booking.php:804
3625
+ msgid "Split mime types with \",\"."
3626
+ msgstr ""
3627
+
3628
+ #: app/features/mec/booking.php:804
3629
+ msgid "Default: jpeg,jpg,png,pdf"
3630
+ msgstr ""
3631
+
3632
+ #: app/features/mec/booking.php:807
3633
+ msgid "Maximum file size"
3634
+ msgstr ""
3635
+
3636
+ #: app/features/mec/booking.php:811
3637
+ msgid "The unit is Megabyte \"MB\""
3638
+ msgstr ""
3639
+
3640
+ #: app/features/mec/booking.php:824
3641
  msgid "Use WooCommerce as Payment System"
3642
  msgstr ""
3643
 
3644
+ #: app/features/mec/booking.php:826
3645
  msgid ""
3646
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
3647
  "payment process would be done by WooCommerce so all of MEC payment related "
3649
  "fields etc, you need to configure WooCommerce on your website."
3650
  msgstr ""
3651
 
3652
+ #: app/features/mec/booking.php:828
3653
  msgid ""
3654
  "You cannot use following MEC features so you should use WooCommerc and its "
3655
  "addons if you need them."
3656
  msgstr ""
3657
 
3658
+ #: app/features/mec/booking.php:830
3659
  msgid "Payment gateways"
3660
  msgstr ""
3661
 
3662
+ #: app/features/mec/booking.php:831
3663
  msgid "Price per dates of tickets"
3664
  msgstr ""
3665
 
3666
+ #: app/features/mec/booking.php:833
3667
  #, fuzzy
3668
  #| msgid "Tickets Price"
3669
  msgid "Ticket variations"
3670
  msgstr "Jegy(ek) ára"
3671
 
3672
+ #: app/features/mec/booking.php:838
3673
  msgid "Automatically complete WooCommerce orders"
3674
  msgstr ""
3675
 
3676
+ #: app/features/mec/booking.php:846
3677
  msgid "Auto WooCommerce orders"
3678
  msgstr ""
3679
 
3680
+ #: app/features/mec/booking.php:847
3681
  msgid "It applies only to the orders that are related to MEC."
3682
  msgstr ""
3683
 
3684
+ #: app/features/mec/booking.php:855
3685
  msgid "After Add to Cart"
3686
  msgstr ""
3687
 
3688
+ #: app/features/mec/booking.php:858
3689
  #, fuzzy
3690
  #| msgid "Get Direction"
3691
  msgid "Redirect to Cart"
3692
  msgstr "Útvonaltervezés"
3693
 
3694
+ #: app/features/mec/booking.php:859
3695
  #, fuzzy
3696
  #| msgid "Get Direction"
3697
  msgid "Redirect to Checkout"
3698
  msgstr "Útvonaltervezés"
3699
 
3700
+ #: app/features/mec/booking.php:864
3701
  #, fuzzy
3702
  #| msgid "Bookings"
3703
  msgid "MEC Booking Form"
3704
  msgstr "Foglalások"
3705
 
3706
+ #: app/features/mec/booking.php:873
3707
  msgid ""
3708
  "If enabled then users should fill the booking form in MEC and then they will "
3709
  "be redirected to checkout."
3710
  msgstr ""
3711
 
3712
+ #: app/features/mec/booking.php:899
3713
  msgid "Enable Organizer Payment Module"
3714
  msgstr ""
3715
 
3716
+ #: app/features/mec/booking.php:904
3717
  msgid ""
3718
  "By enabling this module, organizers are able to insert their own payment "
3719
  "credentials for enabled gateways per event and receive the payments directly!"
3720
  msgstr ""
3721
 
3722
+ #: app/features/mec/booking.php:914
3723
  msgid "Disable / Enable payment gateways per event"
3724
  msgstr ""
3725
 
3726
+ #: app/features/mec/booking.php:918
3727
  #, fuzzy
3728
  #| msgid "Facebook Events"
3729
  msgid "Payment Gateways Per Event"
3730
  msgstr "Facebook események"
3731
 
3732
+ #: app/features/mec/booking.php:919
3733
  msgid ""
3734
  "By enabling this module, users are able to disable / enable payment gateways "
3735
  "per event"
3736
  msgstr ""
3737
 
3738
+ #: app/features/mec/booking.php:1007 app/features/mec/messages.php:78
3739
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:1302
3740
+ #: app/features/mec/settings.php:1292 app/features/mec/single.php:443
3741
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3742
  msgid "Saved"
3743
  msgstr ""
3744
 
3745
+ #: app/features/mec/booking.php:1008 app/features/mec/messages.php:79
3746
  #: app/features/mec/modules.php:429 app/features/mec/notifications.php:1303
3747
+ #: app/features/mec/settings.php:1293 app/features/mec/single.php:444
3748
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3749
  msgid "Settings Saved!"
3750
  msgstr ""
3751
 
3752
+ #: app/features/mec/booking.php:1034 app/features/mec/modules.php:455
3753
+ #: app/features/mec/notifications.php:1329 app/features/mec/settings.php:1319
3754
  #: app/features/mec/single.php:470
3755
  msgid "Please Refresh Page"
3756
  msgstr ""
4915
  #: app/features/mec/settings.php:996 app/features/mec/single.php:344
4916
  #: app/features/mec/single.php:386 app/features/search.php:86
4917
  #: app/features/speakers.php:60 app/features/speakers.php:283
4918
+ #: app/libraries/main.php:6349 app/libraries/main.php:6403
4919
  #: app/libraries/skins.php:1012 app/modules/speakers/details.php:18
4920
  msgid "Speaker"
4921
  msgstr ""
6032
  msgid "only once per hour"
6033
  msgstr ""
6034
 
6035
+ #: app/features/mec/notifications.php:950 app/libraries/main.php:7437
6036
+ #: app/libraries/main.php:7454
6037
  #, fuzzy
6038
  #| msgid "hours"
6039
  msgid "Hours"
6278
  msgstr ""
6279
 
6280
  #: app/features/mec/settings.php:164 app/features/mec/settings.php:174
6281
+ #: app/libraries/main.php:6353 app/libraries/main.php:6407
6282
  msgid "Weekdays"
6283
  msgstr ""
6284
 
6583
  msgid "Let WordPress decide"
6584
  msgstr ""
6585
 
6586
+ #: app/features/mec/settings.php:660 app/libraries/main.php:6629
6587
+ #: app/libraries/main.php:6651
6588
  msgid "Pending"
6589
  msgstr ""
6590
 
6715
  msgid "Event Description"
6716
  msgstr "Szervező"
6717
 
6718
+ #: app/features/mec/settings.php:930 app/libraries/main.php:6376
6719
+ #: app/libraries/main.php:6425
6720
  msgid "More Info Link"
6721
  msgstr ""
6722
 
6879
  msgid "More information about the list ID can be found %s."
6880
  msgstr ""
6881
 
6882
+ #: app/features/mec/single.php:38 app/libraries/main.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6883
  msgid "Single Event Page"
6884
  msgstr ""
6885
 
6989
  "the settings page.' tab"
6990
  msgstr ""
6991
 
6992
+ #: app/features/mec/single.php:162 app/libraries/main.php:556
6993
  msgid "Custom Fields"
6994
  msgstr ""
6995
 
7030
  "Using this option you can exclude certain days from event occurrence dates."
7031
  msgstr ""
7032
 
7033
+ #: app/features/mec/single.php:286 app/libraries/main.php:559
7034
  msgid "Additional Organizers"
7035
  msgstr ""
7036
 
7054
  "page."
7055
  msgstr ""
7056
 
7057
+ #: app/features/mec/single.php:318 app/libraries/main.php:561
7058
  #: app/skins/single.php:170 app/skins/single.php:435
7059
  #, fuzzy
7060
  #| msgid "Facebook Events"
7069
  msgid "Select Taxonomies:"
7070
  msgstr ""
7071
 
7072
+ #: app/features/mec/single.php:360 app/libraries/main.php:562
7073
  msgid "Next / Previous Events"
7074
  msgstr ""
7075
 
7797
  msgid "eg. https://webnus.net"
7798
  msgstr ""
7799
 
7800
+ #: app/features/organizers.php:312 app/libraries/main.php:6381
7801
+ #: app/libraries/main.php:6428 app/skins/single.php:1314
7802
  msgid "Other Organizers"
7803
  msgstr ""
7804
 
8028
  msgid "No search result."
8029
  msgstr ""
8030
 
8031
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6383
8032
+ #: app/libraries/main.php:6430 app/libraries/notifications.php:1262
8033
+ #: app/libraries/render.php:532 app/libraries/render.php:854
8034
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:45
8035
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
8036
  #: app/modules/next-event/details.php:154
8119
  "section and speaker widget section!"
8120
  msgstr ""
8121
 
8122
+ #: app/features/wc.php:103 app/libraries/notifications.php:1247
8123
+ #: app/libraries/notifications.php:1262 app/libraries/notifications.php:1273
8124
+ #: app/libraries/notifications.php:1542 app/libraries/notifications.php:1543
8125
  #, php-format
8126
  msgid "%s to %s"
8127
  msgstr ""
8141
  msgid "%s Price"
8142
  msgstr ""
8143
 
8144
+ #: app/libraries/book.php:706 app/libraries/book.php:797
8145
  msgid "Discount"
8146
  msgstr ""
8147
 
8148
+ #: app/libraries/book.php:884 app/modules/booking/default.php:426
8149
  #: app/modules/booking/default.php:531
8150
  msgid "Download Invoice"
8151
  msgstr ""
8275
  msgid "Timeline View"
8276
  msgstr ""
8277
 
8278
+ #: app/libraries/main.php:391 app/libraries/main.php:6355
8279
+ #: app/libraries/main.php:6409
8280
  msgid "SU"
8281
  msgstr ""
8282
 
8283
+ #: app/libraries/main.php:392 app/libraries/main.php:6356
8284
+ #: app/libraries/main.php:6410
8285
  msgid "MO"
8286
  msgstr ""
8287
 
8288
+ #: app/libraries/main.php:393 app/libraries/main.php:6357
8289
+ #: app/libraries/main.php:6411
8290
  msgid "TU"
8291
  msgstr ""
8292
 
8293
+ #: app/libraries/main.php:394 app/libraries/main.php:6358
8294
+ #: app/libraries/main.php:6412
8295
  msgid "WE"
8296
  msgstr ""
8297
 
8298
+ #: app/libraries/main.php:395 app/libraries/main.php:6359
8299
+ #: app/libraries/main.php:6413
8300
  msgid "TH"
8301
  msgstr ""
8302
 
8303
+ #: app/libraries/main.php:396 app/libraries/main.php:6360
8304
+ #: app/libraries/main.php:6414
8305
  msgid "FR"
8306
  msgstr ""
8307
 
8308
+ #: app/libraries/main.php:397 app/libraries/main.php:6361
8309
+ #: app/libraries/main.php:6415
8310
  msgid "SA"
8311
  msgstr ""
8312
 
8313
+ #: app/libraries/main.php:560
8314
+ msgid "Additional Locations"
8315
  msgstr ""
8316