Modern Events Calendar Lite - Version 4.8.0

Version Description

  • 12 November 2019 =
  • Added: Import events from Event Espresso Plugin
  • Added: Importevents from Events Manager Plugin
  • Added: An option to show event start/end time in list skin
  • Added: Thank you page for Front-end Event Submission
  • Added: Event start/end date to notifications (pro)
  • Added: Newsletter box in MEC dashboard and support page for subscription to MEC news
  • Added: Premium support box in support page
  • Added: etina (translated by Michal Spielmann)
  • Added: French (translated by Jean Ghislain)
  • Improved: MS Excel export (pro)
  • Fixed: Week start in repeating tab for "Certain Weekdays" repeat
  • Fixed: Multi-booking through multiple clicks on the Booking button (pro)
  • Fixed: An empty page issue in category archive page
  • Fixed: Event name in profile shortcode (pro)
  • Fixed: Book date and Google Calendar link in notifications (pro)
  • Fixed: Some PHP notices
  • Fixed: Some minor issues
Download this release

Release Info

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

Code changes from version 4.7.7 to 4.8.0

app/features/events.php CHANGED
@@ -316,19 +316,31 @@ class MEC_feature_events extends MEC_base
316
  ?>
317
  <div class="mec-add-event-tabs-wrap">
318
  <div class="mec-add-event-tabs-left">
319
- <?php if ( ($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name)) ) : ?>
320
- <a class="mec-add-event-tabs-link" data-href="mec_meta_box_fes_form" href="#"><?php echo esc_html('FES Details' ,'modern-events-calendar-lite'); ?></a>
321
- <?php endif; ?>
322
- <a class="mec-add-event-tabs-link" data-href="mec_meta_box_date_form" href="#"><?php echo esc_html('Date And Time' ,'modern-events-calendar-lite'); ?></a>
323
- <a class="mec-add-event-tabs-link" data-href="mec_meta_box_repeat_form" href="#"><?php echo esc_html('Event Repeating' ,'modern-events-calendar-lite'); ?></a>
324
- <?php if(isset($this->settings['exceptional_days']) and $this->settings['exceptional_days']) : ?>
325
- <a class="mec-add-event-tabs-link" data-href="mec-exceptional-days" href="#"><?php echo esc_html('Exceptional Days' ,'modern-events-calendar-lite'); ?></a>
326
- <?php endif; ?>
327
- <a class="mec-add-event-tabs-link" data-href="mec-hourly-schedule" href="#"><?php echo esc_html('Hourly Schedule' ,'modern-events-calendar-lite'); ?></a>
328
- <a class="mec-add-event-tabs-link" data-href="mec-location" href="#"><?php echo esc_html('Location/Venue' ,'modern-events-calendar-lite'); ?></a>
329
- <a class="mec-add-event-tabs-link" data-href="mec-read-more" href="#"><?php echo esc_html('Links' ,'modern-events-calendar-lite'); ?></a>
330
- <a class="mec-add-event-tabs-link" data-href="mec-organizer" href="#"><?php echo esc_html('Organizer' ,'modern-events-calendar-lite'); ?></a>
331
- <a class="mec-add-event-tabs-link" data-href="mec-cost" href="#"><?php echo esc_html('Cost' ,'modern-events-calendar-lite'); ?></a>
 
 
 
 
 
 
 
 
 
 
 
 
332
  </div>
333
  <div class="mec-add-event-tabs-right">
334
  <?php do_action('mec_metabox_details', $post); ?>
@@ -791,27 +803,15 @@ class MEC_feature_events extends MEC_base
791
  </div>
792
  <div class="mec-form-row" id="mec_repeat_certain_weekdays_container">
793
  <label class="mec-col-3"><?php _e('Week Days', 'modern-events-calendar-lite'); ?></label>
794
- <label> <input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
795
- value="1" <?php echo(in_array(1, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Monday', 'modern-events-calendar-lite'); ?>
796
- </label>
797
- <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
798
- value="2" <?php echo(in_array(2, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Tuesday', 'modern-events-calendar-lite'); ?>
799
- </label>
800
- <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
801
- value="3" <?php echo(in_array(3, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Wednesday', 'modern-events-calendar-lite'); ?>
802
- </label>
803
- <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
804
- value="4" <?php echo(in_array(4, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Thursday', 'modern-events-calendar-lite'); ?>
805
- </label>
806
- <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
807
- value="5" <?php echo(in_array(5, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Friday', 'modern-events-calendar-lite'); ?>
808
- </label>
809
- <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
810
- value="6" <?php echo(in_array(6, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Saturday', 'modern-events-calendar-lite'); ?>
811
- </label>
812
- <label>&nbsp;<input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
813
- value="7" <?php echo(in_array(7, $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php _e('Sunday', 'modern-events-calendar-lite'); ?>
814
  </label>
 
815
  </div>
816
  <div class="mec-form-row" id="mec_exceptions_in_days_container">
817
  <div class="mec-form-row">
316
  ?>
317
  <div class="mec-add-event-tabs-wrap">
318
  <div class="mec-add-event-tabs-left">
319
+ <?php
320
+ $activated = '';
321
+ $single_event_meta_title = apply_filters('mec-single-event-meta-title', array(
322
+ __('FES Details', 'modern-events-calendar-lite') => 'mec_meta_box_fes_form',
323
+ __('Date And Time', 'modern-events-calendar-lite') => 'mec_meta_box_date_form',
324
+ __('Event Repeating', 'modern-events-calendar-lite') => 'mec_meta_box_repeat_form',
325
+ __('Exceptional Days', 'modern-events-calendar-lite') => 'mec-exceptional-days',
326
+ __('Hourly Schedule', 'modern-events-calendar-lite') => 'mec-hourly-schedule',
327
+ __('Location/Venue', 'modern-events-calendar-lite') => 'mec-location',
328
+ __('Links', 'modern-events-calendar-lite') => 'mec-read-more',
329
+ __('Organizer', 'modern-events-calendar-lite') => 'mec-organizer',
330
+ __('Cost', 'modern-events-calendar-lite') => 'mec-cost',
331
+ ),$activated);
332
+ foreach ($single_event_meta_title as $link_name => $link_address) {
333
+ if ( $link_address == 'mec_meta_box_fes_form' ) {
334
+ if ( ($note_visibility and trim($note)) || (trim($fes_guest_email) and trim($fes_guest_name)) )
335
+ echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
336
+ } elseif ( $link_address == 'mec-exceptional-days' ) {
337
+ if(isset($this->settings['exceptional_days']) and $this->settings['exceptional_days'])
338
+ echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
339
+ } else {
340
+ echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
341
+ }
342
+ }
343
+ ?>
344
  </div>
345
  <div class="mec-add-event-tabs-right">
346
  <?php do_action('mec_metabox_details', $post); ?>
803
  </div>
804
  <div class="mec-form-row" id="mec_repeat_certain_weekdays_container">
805
  <label class="mec-col-3"><?php _e('Week Days', 'modern-events-calendar-lite'); ?></label>
806
+ <?php
807
+ $weekdays = $this->main->get_weekday_i18n_labels();
808
+ foreach($weekdays as $weekday) :
809
+ ?>
810
+ <label>
811
+ <input type="checkbox" name="mec[date][repeat][certain_weekdays][]"
812
+ value="<?php echo intval($weekday[0]); ?>" <?php echo(in_array($weekday[0], $certain_weekdays) ? 'checked="checked"' : ''); ?> /><?php echo $weekday[1]; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
813
  </label>
814
+ <?php endforeach; ?>
815
  </div>
816
  <div class="mec-form-row" id="mec_exceptions_in_days_container">
817
  <div class="mec-form-row">
app/features/fes.php CHANGED
@@ -59,7 +59,6 @@ class MEC_feature_fes extends MEC_base
59
 
60
  // Export the event
61
  $this->factory->action('wp_ajax_mec_fes_csv_export', array($this, 'mec_fes_csv_export'));
62
- $this->factory->action('wp_ajax_mec_fes_msexcel_export', array($this, 'mec_fes_msexcel_export'));
63
 
64
  // Remove the event
65
  $this->factory->action('wp_ajax_mec_fes_remove', array($this, 'fes_remove'));
@@ -303,115 +302,7 @@ class MEC_feature_fes extends MEC_base
303
 
304
  die(json_encode(array('name' => md5(time().mt_rand(100, 999)), 'ex' => "data:text/csv; charset=utf-8;base64,".base64_encode(ob_get_clean()))));
305
  }
306
-
307
- public function mec_fes_msexcel_export()
308
- {
309
- if((!isset($_POST['mec_event_id'])) or (!isset($_POST['booking_ids'])) or (!isset($_POST['fes_nonce'])) or (!wp_verify_nonce($_POST['fes_nonce'], 'mec_fes_nonce'))) die(json_encode(array('ex' => "error")));
310
-
311
- $event_id = intval($_POST['mec_event_id']);
312
- $booking_ids = sanitize_text_field($_POST['booking_ids']);
313
-
314
- ob_start();
315
- header('Content-Type: application/vnd.ms-excel; charset=utf-8');
316
-
317
- $post_ids = trim($booking_ids) ? explode(',', $booking_ids) : array();
318
-
319
- if(!count($post_ids))
320
- {
321
- $books = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_key`='mec_event_id' AND `meta_value`={$event_id}", 'loadAssocList');
322
- foreach ($books as $book) if(isset($book['post_id'])) $post_ids[] = $book['post_id'];
323
- }
324
-
325
- $event_ids = array();
326
- foreach($post_ids as $post_id) $event_ids[] = get_post_meta($post_id, 'mec_event_id', true);
327
- $event_ids = array_unique($event_ids);
328
-
329
- $main_event_id = NULL;
330
- if(count($event_ids) == 1) $main_event_id = $event_ids[0];
331
-
332
- $columns = array(__('ID', 'modern-events-calendar-lite'), __('Event', 'modern-events-calendar-lite'), __('Date', 'modern-events-calendar-lite'), $this->main->m('ticket', __('Ticket', 'modern-events-calendar-lite')), __('Transaction ID', 'modern-events-calendar-lite'), __('Total Price', 'modern-events-calendar-lite'), __('Name', 'modern-events-calendar-lite'), __('Email', 'modern-events-calendar-lite'), __('Confirmation', 'modern-events-calendar-lite'), __('Verification', 'modern-events-calendar-lite'));
333
- $columns = apply_filters('mec_excel_export_columns', $columns);
334
- $reg_fields = $this->main->get_reg_fields($main_event_id);
335
- foreach($reg_fields as $reg_field_key=>$reg_field)
336
- {
337
- // Placeholder Keys
338
- if(!is_numeric($reg_field_key)) continue;
339
-
340
- $type = isset($reg_field['type']) ? $reg_field['type'] : '';
341
-
342
- $label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
343
- if(trim($label) == '') continue;
344
-
345
- if($type == 'agreement') $label = sprintf($label, get_the_title($reg_field['page']));
346
-
347
- $columns[] = $label;
348
- }
349
- $columns[] = 'Attachments';
350
- $output = fopen('php://output', 'w');
351
- fprintf($output, chr(0xEF).chr(0xBB).chr(0xBF));
352
- fputcsv($output, $columns, "\t");
353
-
354
- foreach($post_ids as $post_id)
355
- {
356
- $post_id = (int) $post_id;
357
-
358
- $event_id = get_post_meta($post_id, 'mec_event_id', true);
359
- $booker_id = get_post_field('post_author', $post_id);
360
- $transaction_id = get_post_meta($post_id, 'mec_transaction_id', true);
361
-
362
- $tickets = get_post_meta($event_id, 'mec_tickets', true);
363
-
364
- $attendees = get_post_meta($post_id, 'mec_attendees', true);
365
- if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($post_id, 'mec_attendee', true));
366
-
367
- $price = get_post_meta($post_id, 'mec_price', true);
368
- $booker = get_userdata($booker_id);
369
-
370
- $confirmed = $this->main->get_confirmation_label(get_post_meta($post_id, 'mec_confirmed', true));
371
- $verified = $this->main->get_verification_label(get_post_meta($post_id, 'mec_verified', true));
372
-
373
- $attachments = '';
374
- if( isset( $attendees['attachments'] ) )
375
- {
376
- foreach ($attendees['attachments'] as $attachment) {
377
- $attachments .= @$attachment['url'] . " - ";
378
- }
379
- }
380
-
381
- foreach($attendees as $key => $attendee)
382
- {
383
- if ($key === 'attachments') {
384
- continue;
385
- }
386
- if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
387
- continue;
388
- }
389
- $ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
390
- $booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0)), (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : $booker->user_email), $confirmed, $verified,$attachments);
391
- $booking = apply_filters('mec_excel_export_booking', $booking, $post_id, $event_id);
392
-
393
- $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
394
- foreach($reg_fields as $field_id=>$reg_field)
395
- {
396
- // Placeholder Keys
397
- if(!is_numeric($field_id)) continue;
398
-
399
- $label = isset($reg_field['label']) ? __($reg_field['label'], 'modern-events-calendar-lite') : '';
400
- if(trim($label) == '') continue;
401
-
402
- $booking[] = isset($reg_form[$field_id]) ? ((is_string($reg_form[$field_id]) and trim($reg_form[$field_id])) ? $reg_form[$field_id] : (is_array($reg_form[$field_id]) ? implode(' | ', $reg_form[$field_id]) : '---')) : '';
403
- }
404
- if ($attachments) {
405
- $booking[] = $attachments;
406
- $attachments = '';
407
- }
408
- fputcsv($output, $booking, "\t");
409
- }
410
- }
411
-
412
- die(json_encode(array('name' => md5(time().mt_rand(100, 999)), 'ex' => "data:application/vnd.ms-excel; charset=utf-8;base64,".base64_encode(ob_get_clean()))));
413
- }
414
-
415
  public function fes_upload()
416
  {
417
  // Check if our nonce is set.
@@ -1124,7 +1015,14 @@ class MEC_feature_fes extends MEC_base
1124
  if($method == 'updated') do_action('mec_fes_updated', $post_id , 'update');
1125
  else do_action('mec_fes_added', $post_id , '');
1126
 
1127
- $this->main->response(array('success'=>1, 'message'=>$message, 'data'=>array('post_id'=>$post_id)));
 
 
 
 
 
 
 
1128
  }
1129
 
1130
  public function link_add_event()
59
 
60
  // Export the event
61
  $this->factory->action('wp_ajax_mec_fes_csv_export', array($this, 'mec_fes_csv_export'));
 
62
 
63
  // Remove the event
64
  $this->factory->action('wp_ajax_mec_fes_remove', array($this, 'fes_remove'));
302
 
303
  die(json_encode(array('name' => md5(time().mt_rand(100, 999)), 'ex' => "data:text/csv; charset=utf-8;base64,".base64_encode(ob_get_clean()))));
304
  }
305
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  public function fes_upload()
307
  {
308
  // Check if our nonce is set.
1015
  if($method == 'updated') do_action('mec_fes_updated', $post_id , 'update');
1016
  else do_action('mec_fes_added', $post_id , '');
1017
 
1018
+ $this->main->response(array(
1019
+ 'success' => 1,
1020
+ 'message' => $message,
1021
+ 'data'=> array(
1022
+ 'post_id' => $post_id,
1023
+ 'redirect_to' => isset($this->settings['fes_thankyou_page']) and trim($this->settings['fes_thankyou_page']) ? get_permalink(intval($this->settings['fes_thankyou_page'])) : '',
1024
+ ),
1025
+ ));
1026
  }
1027
 
1028
  public function link_add_event()
app/features/fes/form.php CHANGED
@@ -50,6 +50,15 @@ jQuery(document).ready(function()
50
 
51
  // Set the event id
52
  jQuery(".mec-fes-post-id").val(response.data.post_id);
 
 
 
 
 
 
 
 
 
53
  }
54
  else
55
  {
50
 
51
  // Set the event id
52
  jQuery(".mec-fes-post-id").val(response.data.post_id);
53
+
54
+ // Redirect Currnet Page
55
+ if(response.data.redirect_to != "")
56
+ {
57
+ setTimeout(function()
58
+ {
59
+ window.location.href = response.data.redirect_to;
60
+ },' . ((isset($this->settings['fes_thankyou_page_time']) and trim($this->settings['fes_thankyou_page_time']) != '') ? (int) $this->settings['fes_thankyou_page_time'] : 2000) . ');
61
+ }
62
  }
63
  else
64
  {
app/features/fes/list.php CHANGED
@@ -157,10 +157,6 @@ $this->factory->params('footer', $javascript);
157
  endforeach;
158
  ?>
159
  </ul>
160
- <?php else: ?>
161
- <div class="date-messgae">
162
- <?php _e('Event is not repeating. No dates exist for this event!', 'modern-events-calendar-lite'); ?>
163
- </div>
164
  <?php endif; ?>
165
  <input type="hidden" class="mec-certain-user-booking-ids" value="<?php echo $ids_text_field; ?>">
166
  </div>
157
  endforeach;
158
  ?>
159
  </ul>
 
 
 
 
160
  <?php endif; ?>
161
  <input type="hidden" class="mec-certain-user-booking-ids" value="<?php echo $ids_text_field; ?>">
162
  </div>
app/features/ix.php CHANGED
@@ -780,6 +780,29 @@ class MEC_feature_ix extends MEC_base
780
  'post_type' => 'events',
781
  ));
782
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
  else return array('success'=>0, 'message'=>__("Third Party plugin is not installed and activated!", 'modern-events-calendar-lite'));
784
 
785
  return array(
@@ -799,6 +822,9 @@ class MEC_feature_ix extends MEC_base
799
  elseif($third_party == 'the-events-calendar') return $this->thirdparty_tec_import_do();
800
  elseif($third_party == 'weekly-class') return $this->thirdparty_weekly_class_import_do();
801
  elseif($third_party == 'calendarize-it') return $this->thirdparty_calendarize_it_import_do();
 
 
 
802
 
803
  return array('success'=>0, 'message'=>__('Third Party plugin is invalid!', 'modern-events-calendar-lite'));
804
  }
@@ -1564,7 +1590,7 @@ class MEC_feature_ix extends MEC_base
1564
  'days'=>$days,
1565
  'meta'=>array
1566
  (
1567
- 'mec_source'=>'eventon',
1568
  'mec_weekly_class_id'=>$third_party_id,
1569
  'mec_allday'=>$allday,
1570
  'hide_end_time'=>$hide_end_time,
@@ -1864,8 +1890,8 @@ class MEC_feature_ix extends MEC_base
1864
  'days'=>$days,
1865
  'meta'=>array
1866
  (
1867
- 'mec_source'=>'eventon',
1868
- 'mec_weekly_class_id'=>$third_party_id,
1869
  'mec_allday'=>$allday,
1870
  'hide_end_time'=>$hide_end_time,
1871
  'mec_repeat_end'=>($finish ? 'date' : 'never'),
@@ -1901,6 +1927,610 @@ class MEC_feature_ix extends MEC_base
1901
  return array('success'=>1, 'data'=>$count);
1902
  }
1903
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1904
  /**
1905
  * Show content of export tab
1906
  * @author Webnus <info@webnus.biz>
780
  'post_type' => 'events',
781
  ));
782
  }
783
+ elseif($third_party == 'event-espresso' and function_exists('bootstrap_espresso'))
784
+ {
785
+ $events = get_posts(array(
786
+ 'posts_per_page' => -1,
787
+ 'post_type' => 'espresso_events',
788
+ ));
789
+ }
790
+ elseif($third_party == 'events-manager-recurring' and class_exists('EM_Formats'))
791
+ {
792
+ $events = get_posts(array(
793
+ 'posts_per_page' => -1,
794
+ 'post_type' => 'event-recurring',
795
+ ));
796
+ }
797
+ elseif($third_party == 'events-manager-single' and class_exists('EM_Formats'))
798
+ {
799
+ $events = get_posts(array(
800
+ 'posts_per_page' => -1,
801
+ 'post_type' => 'event',
802
+ 'meta_key' => '_recurrence_id',
803
+ 'meta_compare' => 'NOT EXISTS'
804
+ ));
805
+ }
806
  else return array('success'=>0, 'message'=>__("Third Party plugin is not installed and activated!", 'modern-events-calendar-lite'));
807
 
808
  return array(
822
  elseif($third_party == 'the-events-calendar') return $this->thirdparty_tec_import_do();
823
  elseif($third_party == 'weekly-class') return $this->thirdparty_weekly_class_import_do();
824
  elseif($third_party == 'calendarize-it') return $this->thirdparty_calendarize_it_import_do();
825
+ elseif($third_party == 'event-espresso') return $this->thirdparty_es_import_do();
826
+ elseif($third_party == 'events-manager-recurring') return $this->thirdparty_emr_import_do();
827
+ elseif($third_party == 'events-manager-single') return $this->thirdparty_ems_import_do();
828
 
829
  return array('success'=>0, 'message'=>__('Third Party plugin is invalid!', 'modern-events-calendar-lite'));
830
  }
1590
  'days'=>$days,
1591
  'meta'=>array
1592
  (
1593
+ 'mec_source'=>'weekly_class',
1594
  'mec_weekly_class_id'=>$third_party_id,
1595
  'mec_allday'=>$allday,
1596
  'hide_end_time'=>$hide_end_time,
1890
  'days'=>$days,
1891
  'meta'=>array
1892
  (
1893
+ 'mec_source'=>'calendarize_it',
1894
+ 'mec_calendarize_it_id'=>$third_party_id,
1895
  'mec_allday'=>$allday,
1896
  'hide_end_time'=>$hide_end_time,
1897
  'mec_repeat_end'=>($finish ? 'date' : 'never'),
1927
  return array('success'=>1, 'data'=>$count);
1928
  }
1929
 
1930
+ public function thirdparty_es_import_do()
1931
+ {
1932
+ $IDs = isset($_POST['tp-events']) ? $_POST['tp-events'] : array();
1933
+ $count = 0;
1934
+
1935
+ // Timezone
1936
+ $timezone = $this->main->get_timezone();
1937
+
1938
+ foreach($IDs as $ID)
1939
+ {
1940
+ $post = get_post($ID);
1941
+
1942
+ // Event Title and Content
1943
+ $title = $post->post_title;
1944
+ $description = $post->post_content;
1945
+ $third_party_id = $ID;
1946
+
1947
+ // Event location
1948
+ $venue_id = $this->db->select("SELECT `VNU_ID` FROM `#__esp_event_venue` WHERE `EVT_ID`='".$ID."' ORDER BY `EVV_ID` ASC LIMIT 1", 'loadResult');
1949
+ $location_id = 1;
1950
+
1951
+ // Import Event Locations into MEC locations
1952
+ if(isset($this->ix['import_locations']) and $this->ix['import_locations'] and $venue_id)
1953
+ {
1954
+ $v_meta = $this->db->select("SELECT * FROM `#__esp_venue_meta` WHERE `VNU_ID`='".$venue_id."'", 'loadAssoc');
1955
+ $location_id = $this->main->save_location(array
1956
+ (
1957
+ 'name'=>get_the_title($venue_id),
1958
+ 'address'=>trim($v_meta['VNU_address'].' '.$v_meta['VNU_address2']),
1959
+ 'latitude'=>'',
1960
+ 'longitude'=>'',
1961
+ ));
1962
+ }
1963
+
1964
+ // Event Categories
1965
+ $categories = wp_get_post_terms($ID, 'espresso_event_categories');
1966
+ $category_ids = array();
1967
+
1968
+ // Import Event Categories into MEC categories
1969
+ if(isset($this->ix['import_categories']) and $this->ix['import_categories'] and count($categories))
1970
+ {
1971
+ foreach($categories as $category)
1972
+ {
1973
+ $category_id = $this->main->save_category(array
1974
+ (
1975
+ 'name'=>trim($category->name),
1976
+ ));
1977
+
1978
+ if($category_id) $category_ids[] = $category_id;
1979
+ }
1980
+ }
1981
+
1982
+ $datetimes = $venue_id = $this->db->select("SELECT * FROM `#__esp_datetime` WHERE `EVT_ID`='".$ID."' ORDER BY `DTT_EVT_start` ASC", 'loadAssocList');
1983
+
1984
+ $dt_start = NULL;
1985
+ $dt_end = NULL;
1986
+ $custom_days = array();
1987
+
1988
+ $i = 1;
1989
+ foreach($datetimes as $datetime)
1990
+ {
1991
+ if(!$dt_start) $dt_start = $datetime['DTT_EVT_start'];
1992
+ if(!$dt_end) $dt_end = $datetime['DTT_EVT_end'];
1993
+
1994
+ // Add to Custom Days
1995
+ if($i > 1) $custom_days[] = array(date('Y-m-d', strtotime($datetime['DTT_EVT_start'])), date('Y-m-d', strtotime($datetime['DTT_EVT_end'])));
1996
+
1997
+ $i++;
1998
+ }
1999
+
2000
+ // Event Start Date and Time
2001
+ $date_start = new DateTime(date('Y-m-d G:i', strtotime($dt_start)), new DateTimeZone('UTC'));
2002
+ $date_start->setTimezone(new DateTimeZone($timezone));
2003
+
2004
+ $start_date = $date_start->format('Y-m-d');
2005
+ $start_hour = $date_start->format('g');
2006
+ $start_minutes = $date_start->format('i');
2007
+ $start_ampm = $date_start->format('A');
2008
+
2009
+ // Event End Date and Time
2010
+ $date_end = new DateTime(date('Y-m-d G:i', strtotime($dt_end)), new DateTimeZone('UTC'));
2011
+ $date_end->setTimezone(new DateTimeZone($timezone));
2012
+
2013
+ $end_date = $date_end->format('Y-m-d');
2014
+ $end_hour = $date_end->format('g');
2015
+ $end_minutes = $date_end->format('i');
2016
+ $end_ampm = $date_end->format('A');
2017
+
2018
+ // Event Time Options
2019
+ $hide_end_time = 0;
2020
+ $allday = 0;
2021
+
2022
+ // Custom Days
2023
+ if(count($custom_days))
2024
+ {
2025
+ $str_days = '';
2026
+ foreach($custom_days as $custom_day) $str_days .= date('Y-m-d', strtotime($custom_day[0])).':'.date('Y-m-d', strtotime($custom_day[1])).',';
2027
+
2028
+ $repeat_status = 1;
2029
+ $repeat_type = 'custom_days';
2030
+ $interval = NULL;
2031
+ $finish = $end_date;
2032
+ $year = NULL;
2033
+ $month = NULL;
2034
+ $day = NULL;
2035
+ $week = NULL;
2036
+ $weekday = NULL;
2037
+ $weekdays = NULL;
2038
+ $days = trim($str_days, ', ');
2039
+ }
2040
+ // Single Event
2041
+ else
2042
+ {
2043
+ $repeat_status = 0;
2044
+ $repeat_type = '';
2045
+ $interval = NULL;
2046
+ $finish = $end_date;
2047
+ $year = NULL;
2048
+ $month = NULL;
2049
+ $day = NULL;
2050
+ $week = NULL;
2051
+ $weekday = NULL;
2052
+ $weekdays = NULL;
2053
+ $days = NULL;
2054
+ }
2055
+
2056
+ $args = array
2057
+ (
2058
+ 'title'=>$title,
2059
+ 'content'=>$description,
2060
+ 'location_id'=>$location_id,
2061
+ 'organizer_id'=>1,
2062
+ 'date'=>array
2063
+ (
2064
+ 'start'=>array(
2065
+ 'date'=>$start_date,
2066
+ 'hour'=>$start_hour,
2067
+ 'minutes'=>$start_minutes,
2068
+ 'ampm'=>$start_ampm,
2069
+ ),
2070
+ 'end'=>array(
2071
+ 'date'=>$end_date,
2072
+ 'hour'=>$end_hour,
2073
+ 'minutes'=>$end_minutes,
2074
+ 'ampm'=>$end_ampm,
2075
+ ),
2076
+ 'repeat'=>array(
2077
+ 'end'=>'date',
2078
+ 'end_at_date'=>$finish,
2079
+ 'end_at_occurrences'=>10,
2080
+ ),
2081
+ 'allday'=>$allday,
2082
+ 'comment'=>'',
2083
+ 'hide_time'=>0,
2084
+ 'hide_end_time'=>$hide_end_time,
2085
+ ),
2086
+ 'start'=>$start_date,
2087
+ 'start_time_hour'=>$start_hour,
2088
+ 'start_time_minutes'=>$start_minutes,
2089
+ 'start_time_ampm'=>$start_ampm,
2090
+ 'end'=>$end_date,
2091
+ 'end_time_hour'=>$end_hour,
2092
+ 'end_time_minutes'=>$end_minutes,
2093
+ 'end_time_ampm'=>$end_ampm,
2094
+ 'repeat_status'=>$repeat_status,
2095
+ 'repeat_type'=>$repeat_type,
2096
+ 'interval'=>$interval,
2097
+ 'finish'=>$finish,
2098
+ 'year'=>$year,
2099
+ 'month'=>$month,
2100
+ 'day'=>$day,
2101
+ 'week'=>$week,
2102
+ 'weekday'=>$weekday,
2103
+ 'weekdays'=>$weekdays,
2104
+ 'days'=>$days,
2105
+ 'meta'=>array
2106
+ (
2107
+ 'mec_source'=>'eventespresso',
2108
+ 'mec_eventespresso_id'=>$third_party_id,
2109
+ 'mec_allday'=>$allday,
2110
+ 'hide_end_time'=>$hide_end_time,
2111
+ 'mec_repeat_end'=>($finish ? 'date' : 'never'),
2112
+ 'mec_repeat_end_at_occurrences'=>9,
2113
+ 'mec_repeat_end_at_date'=>$finish,
2114
+ 'mec_in_days'=>$days,
2115
+ )
2116
+ );
2117
+
2118
+ $post_id = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='$third_party_id' AND `meta_key`='mec_eventespresso_id'", 'loadResult');
2119
+
2120
+ // Insert the event into MEC
2121
+ $post_id = $this->main->save_event($args, $post_id);
2122
+
2123
+ // Set location to the post
2124
+ if($location_id) wp_set_object_terms($post_id, (int) $location_id, 'mec_location');
2125
+
2126
+ // Set categories to the post
2127
+ if(count($category_ids)) foreach($category_ids as $category_id) wp_set_object_terms($post_id, (int) $category_id, 'mec_category', true);
2128
+
2129
+ // Set Features Image
2130
+ if(isset($this->ix['import_featured_image']) and $this->ix['import_featured_image'] and $thumbnail_id = get_post_thumbnail_id($ID))
2131
+ {
2132
+ set_post_thumbnail($post_id, $thumbnail_id);
2133
+ }
2134
+
2135
+ $count++;
2136
+ }
2137
+
2138
+ return array('success'=>1, 'data'=>$count);
2139
+ }
2140
+
2141
+ public function thirdparty_emr_import_do()
2142
+ {
2143
+ $IDs = isset($_POST['tp-events']) ? $_POST['tp-events'] : array();
2144
+ $count = 0;
2145
+
2146
+ foreach($IDs as $ID)
2147
+ {
2148
+ $post = get_post($ID);
2149
+ $metas = $this->main->get_post_meta($ID);
2150
+
2151
+ // Event Title and Content
2152
+ $title = $post->post_title;
2153
+ $description = $post->post_content;
2154
+ $third_party_id = $ID;
2155
+
2156
+ // Event location
2157
+ $location = $this->db->select("SELECT * FROM `#__em_locations` WHERE `location_id`='".(isset($metas['_location_id']) ? $metas['_location_id'] : 0)."'", 'loadAssoc');
2158
+ $location_id = 1;
2159
+
2160
+ // Import Event Locations into MEC locations
2161
+ if(isset($this->ix['import_locations']) and $this->ix['import_locations'] and isset($location['post_id']))
2162
+ {
2163
+ $address = $location['location_address'].' '.$location['location_region'].' '.$location['location_town'].' '.$location['location_state'].' '.$location['location_country'];
2164
+ $location_id = $this->main->save_location(array
2165
+ (
2166
+ 'name'=>trim($location['location_name']),
2167
+ 'address'=>trim($address),
2168
+ 'latitude'=>trim($location['location_latitude']),
2169
+ 'longitude'=>trim($location['location_longitude']),
2170
+ ));
2171
+ }
2172
+
2173
+ // Event Categories
2174
+ $categories = wp_get_post_terms($ID, 'event-categories');
2175
+ $category_ids = array();
2176
+
2177
+ // Import Event Categories into MEC categories
2178
+ if(isset($this->ix['import_categories']) and $this->ix['import_categories'] and count($categories))
2179
+ {
2180
+ foreach($categories as $category)
2181
+ {
2182
+ $category_id = $this->main->save_category(array
2183
+ (
2184
+ 'name'=>trim($category->name),
2185
+ ));
2186
+
2187
+ if($category_id) $category_ids[] = $category_id;
2188
+ }
2189
+ }
2190
+
2191
+ // Event Start Date and Time
2192
+ $date_start = new DateTime(date('Y-m-d G:i', strtotime($metas['_event_start_local'])));
2193
+
2194
+ $start_date = $date_start->format('Y-m-d');
2195
+ $start_hour = $date_start->format('g');
2196
+ $start_minutes = $date_start->format('i');
2197
+ $start_ampm = $date_start->format('A');
2198
+
2199
+ // Event End Date and Time
2200
+ $date_end = new DateTime(date('Y-m-d', strtotime('+'.(isset($metas['_recurrence_days']) ? $metas['_recurrence_days'] : 0).' days', strtotime($metas['_event_start_local']))).' '.$metas['_event_end_time']);
2201
+
2202
+ $end_date = $date_end->format('Y-m-d');
2203
+ $end_hour = $date_end->format('g');
2204
+ $end_minutes = $date_end->format('i');
2205
+ $end_ampm = $date_end->format('A');
2206
+
2207
+ // Event Time Options
2208
+ $hide_end_time = 0;
2209
+ $allday = isset($metas['_event_all_day']) ? $metas['_event_all_day'] : 0;
2210
+
2211
+ $repeat_status = 1;
2212
+ $interval = NULL;
2213
+ $year = NULL;
2214
+ $month = NULL;
2215
+ $day = NULL;
2216
+ $week = NULL;
2217
+ $weekday = NULL;
2218
+ $weekdays = NULL;
2219
+ $days = NULL;
2220
+ $finish = date('Y-m-d', strtotime($metas['_event_end_local']));
2221
+ $repeat_type = '';
2222
+ $advanced_days = NULL;
2223
+
2224
+ if($metas['_recurrence_freq'] == 'daily')
2225
+ {
2226
+ $repeat_type = 'daily';
2227
+ $interval = isset($metas['_recurrence_interval']) ? $metas['_recurrence_interval'] : 1;
2228
+ }
2229
+ elseif($metas['_recurrence_freq'] == 'weekly')
2230
+ {
2231
+ $repeat_type = 'certain_weekdays';
2232
+ $interval = 1;
2233
+ $weekdays = ',' . str_replace('0', '7', $metas['_recurrence_byday']) . ',';
2234
+ }
2235
+ elseif($metas['_recurrence_freq'] == 'monthly')
2236
+ {
2237
+ $repeat_type = 'advanced';
2238
+
2239
+ $week_no = $metas['_recurrence_byweekno'];
2240
+ if($week_no == '-1' or $week_no == '5') $week_no = 'l';
2241
+
2242
+ $week_day = $metas['_recurrence_byday'];
2243
+
2244
+ if($week_day == '0') $week_day = 'Sun';
2245
+ elseif($week_day == '1') $week_day = 'Mon';
2246
+ elseif($week_day == '2') $week_day = 'Tue';
2247
+ elseif($week_day == '3') $week_day = 'Wed';
2248
+ elseif($week_day == '4') $week_day = 'Thu';
2249
+ elseif($week_day == '5') $week_day = 'Fri';
2250
+ else $week_day = 'Sat';
2251
+
2252
+ $advanced_days = array($week_day.'.'.$week_no);
2253
+ }
2254
+ elseif($metas['_recurrence_freq'] == 'yearly')
2255
+ {
2256
+ $repeat_type = 'yearly';
2257
+
2258
+ $year = '*';
2259
+
2260
+ $s = $start_date;
2261
+ $e = $end_date;
2262
+
2263
+ $_months = array();
2264
+ $_days = array();
2265
+ while(strtotime($s) <= strtotime($e))
2266
+ {
2267
+ $_months[] = date('m', strtotime($s));
2268
+ $_days[] = date('d', strtotime($s));
2269
+
2270
+ $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
2271
+ }
2272
+
2273
+ $month = ','.implode(',', array_unique($_months)).',';
2274
+ $day = ','.implode(',', array_unique($_days)).',';
2275
+
2276
+ $week = '*';
2277
+ $weekday = '*';
2278
+ }
2279
+
2280
+ $args = array
2281
+ (
2282
+ 'title'=>$title,
2283
+ 'content'=>$description,
2284
+ 'location_id'=>$location_id,
2285
+ 'organizer_id'=>1,
2286
+ 'date'=>array
2287
+ (
2288
+ 'start'=>array(
2289
+ 'date'=>$start_date,
2290
+ 'hour'=>$start_hour,
2291
+ 'minutes'=>$start_minutes,
2292
+ 'ampm'=>$start_ampm,
2293
+ ),
2294
+ 'end'=>array(
2295
+ 'date'=>$end_date,
2296
+ 'hour'=>$end_hour,
2297
+ 'minutes'=>$end_minutes,
2298
+ 'ampm'=>$end_ampm,
2299
+ ),
2300
+ 'repeat'=>array(
2301
+ 'end'=>'date',
2302
+ 'end_at_date'=>$finish,
2303
+ 'end_at_occurrences'=>10,
2304
+ ),
2305
+ 'allday'=>$allday,
2306
+ 'comment'=>'',
2307
+ 'hide_time'=>0,
2308
+ 'hide_end_time'=>$hide_end_time,
2309
+ ),
2310
+ 'start'=>$start_date,
2311
+ 'start_time_hour'=>$start_hour,
2312
+ 'start_time_minutes'=>$start_minutes,
2313
+ 'start_time_ampm'=>$start_ampm,
2314
+ 'end'=>$end_date,
2315
+ 'end_time_hour'=>$end_hour,
2316
+ 'end_time_minutes'=>$end_minutes,
2317
+ 'end_time_ampm'=>$end_ampm,
2318
+ 'repeat_status'=>$repeat_status,
2319
+ 'repeat_type'=>$repeat_type,
2320
+ 'interval'=>$interval,
2321
+ 'finish'=>$finish,
2322
+ 'year'=>$year,
2323
+ 'month'=>$month,
2324
+ 'day'=>$day,
2325
+ 'week'=>$week,
2326
+ 'weekday'=>$weekday,
2327
+ 'weekdays'=>$weekdays,
2328
+ 'days'=>$days,
2329
+ 'meta'=>array
2330
+ (
2331
+ 'mec_source'=>'event_manager_recurring',
2332
+ 'mec_emr_id'=>$third_party_id,
2333
+ 'mec_allday'=>$allday,
2334
+ 'hide_end_time'=>$hide_end_time,
2335
+ 'mec_repeat_end'=>($finish ? 'date' : 'never'),
2336
+ 'mec_repeat_end_at_occurrences'=>9,
2337
+ 'mec_repeat_end_at_date'=>$finish,
2338
+ 'mec_in_days'=>$days,
2339
+ 'mec_advanced_days'=>$advanced_days,
2340
+ )
2341
+ );
2342
+
2343
+ $post_id = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='$third_party_id' AND `meta_key`='mec_emr_id'", 'loadResult');
2344
+
2345
+ // Insert the event into MEC
2346
+ $post_id = $this->main->save_event($args, $post_id);
2347
+
2348
+ // Set location to the post
2349
+ if($location_id) wp_set_object_terms($post_id, (int) $location_id, 'mec_location');
2350
+
2351
+ // Set categories to the post
2352
+ if(count($category_ids)) foreach($category_ids as $category_id) wp_set_object_terms($post_id, (int) $category_id, 'mec_category', true);
2353
+
2354
+ // Set Features Image
2355
+ if(isset($this->ix['import_featured_image']) and $this->ix['import_featured_image'] and $thumbnail_id = get_post_thumbnail_id($ID))
2356
+ {
2357
+ set_post_thumbnail($post_id, $thumbnail_id);
2358
+ }
2359
+
2360
+ $count++;
2361
+ }
2362
+
2363
+ return array('success'=>1, 'data'=>$count);
2364
+ }
2365
+
2366
+ public function thirdparty_ems_import_do()
2367
+ {
2368
+ $IDs = isset($_POST['tp-events']) ? $_POST['tp-events'] : array();
2369
+ $count = 0;
2370
+
2371
+ foreach($IDs as $ID)
2372
+ {
2373
+ $post = get_post($ID);
2374
+ $metas = $this->main->get_post_meta($ID);
2375
+
2376
+ // Event Title and Content
2377
+ $title = $post->post_title;
2378
+ $description = $post->post_content;
2379
+ $third_party_id = $ID;
2380
+
2381
+ // Event location
2382
+ $location = $this->db->select("SELECT * FROM `#__em_locations` WHERE `location_id`='".(isset($metas['_location_id']) ? $metas['_location_id'] : 0)."'", 'loadAssoc');
2383
+ $location_id = 1;
2384
+
2385
+ // Import Event Locations into MEC locations
2386
+ if(isset($this->ix['import_locations']) and $this->ix['import_locations'] and isset($location['post_id']))
2387
+ {
2388
+ $address = $location['location_address'].' '.$location['location_region'].' '.$location['location_town'].' '.$location['location_state'].' '.$location['location_country'];
2389
+ $location_id = $this->main->save_location(array
2390
+ (
2391
+ 'name'=>trim($location['location_name']),
2392
+ 'address'=>trim($address),
2393
+ 'latitude'=>trim($location['location_latitude']),
2394
+ 'longitude'=>trim($location['location_longitude']),
2395
+ ));
2396
+ }
2397
+
2398
+ // Event Categories
2399
+ $categories = wp_get_post_terms($ID, 'event-categories');
2400
+ $category_ids = array();
2401
+
2402
+ // Import Event Categories into MEC categories
2403
+ if(isset($this->ix['import_categories']) and $this->ix['import_categories'] and count($categories))
2404
+ {
2405
+ foreach($categories as $category)
2406
+ {
2407
+ $category_id = $this->main->save_category(array
2408
+ (
2409
+ 'name'=>trim($category->name),
2410
+ ));
2411
+
2412
+ if($category_id) $category_ids[] = $category_id;
2413
+ }
2414
+ }
2415
+
2416
+ // Event Start Date and Time
2417
+ $date_start = new DateTime(date('Y-m-d G:i', strtotime($metas['_event_start_local'])));
2418
+
2419
+ $start_date = $date_start->format('Y-m-d');
2420
+ $start_hour = $date_start->format('g');
2421
+ $start_minutes = $date_start->format('i');
2422
+ $start_ampm = $date_start->format('A');
2423
+
2424
+ // Event End Date and Time
2425
+ $date_end = new DateTime(date('Y-m-d G:i', strtotime($metas['_event_end_local'])));
2426
+
2427
+ $end_date = $date_end->format('Y-m-d');
2428
+ $end_hour = $date_end->format('g');
2429
+ $end_minutes = $date_end->format('i');
2430
+ $end_ampm = $date_end->format('A');
2431
+
2432
+ // Event Time Options
2433
+ $hide_end_time = 0;
2434
+ $allday = isset($metas['_event_all_day']) ? $metas['_event_all_day'] : 0;
2435
+
2436
+ // Single Event
2437
+ $repeat_status = 0;
2438
+ $repeat_type = '';
2439
+ $interval = NULL;
2440
+ $finish = $end_date;
2441
+ $year = NULL;
2442
+ $month = NULL;
2443
+ $day = NULL;
2444
+ $week = NULL;
2445
+ $weekday = NULL;
2446
+ $weekdays = NULL;
2447
+ $days = NULL;
2448
+
2449
+ $args = array
2450
+ (
2451
+ 'title'=>$title,
2452
+ 'content'=>$description,
2453
+ 'location_id'=>$location_id,
2454
+ 'organizer_id'=>1,
2455
+ 'date'=>array
2456
+ (
2457
+ 'start'=>array(
2458
+ 'date'=>$start_date,
2459
+ 'hour'=>$start_hour,
2460
+ 'minutes'=>$start_minutes,
2461
+ 'ampm'=>$start_ampm,
2462
+ ),
2463
+ 'end'=>array(
2464
+ 'date'=>$end_date,
2465
+ 'hour'=>$end_hour,
2466
+ 'minutes'=>$end_minutes,
2467
+ 'ampm'=>$end_ampm,
2468
+ ),
2469
+ 'repeat'=>array(
2470
+ 'end'=>'date',
2471
+ 'end_at_date'=>$finish,
2472
+ 'end_at_occurrences'=>10,
2473
+ ),
2474
+ 'allday'=>$allday,
2475
+ 'comment'=>'',
2476
+ 'hide_time'=>0,
2477
+ 'hide_end_time'=>$hide_end_time,
2478
+ ),
2479
+ 'start'=>$start_date,
2480
+ 'start_time_hour'=>$start_hour,
2481
+ 'start_time_minutes'=>$start_minutes,
2482
+ 'start_time_ampm'=>$start_ampm,
2483
+ 'end'=>$end_date,
2484
+ 'end_time_hour'=>$end_hour,
2485
+ 'end_time_minutes'=>$end_minutes,
2486
+ 'end_time_ampm'=>$end_ampm,
2487
+ 'repeat_status'=>$repeat_status,
2488
+ 'repeat_type'=>$repeat_type,
2489
+ 'interval'=>$interval,
2490
+ 'finish'=>$finish,
2491
+ 'year'=>$year,
2492
+ 'month'=>$month,
2493
+ 'day'=>$day,
2494
+ 'week'=>$week,
2495
+ 'weekday'=>$weekday,
2496
+ 'weekdays'=>$weekdays,
2497
+ 'days'=>$days,
2498
+ 'meta'=>array
2499
+ (
2500
+ 'mec_source'=>'event_manager_single',
2501
+ 'mec_ems_id'=>$third_party_id,
2502
+ 'mec_allday'=>$allday,
2503
+ 'hide_end_time'=>$hide_end_time,
2504
+ 'mec_repeat_end'=>($finish ? 'date' : 'never'),
2505
+ 'mec_repeat_end_at_occurrences'=>9,
2506
+ 'mec_repeat_end_at_date'=>$finish,
2507
+ 'mec_in_days'=>$days,
2508
+ )
2509
+ );
2510
+
2511
+ $post_id = $this->db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='$third_party_id' AND `meta_key`='mec_ems_id'", 'loadResult');
2512
+
2513
+ // Insert the event into MEC
2514
+ $post_id = $this->main->save_event($args, $post_id);
2515
+
2516
+ // Set location to the post
2517
+ if($location_id) wp_set_object_terms($post_id, (int) $location_id, 'mec_location');
2518
+
2519
+ // Set categories to the post
2520
+ if(count($category_ids)) foreach($category_ids as $category_id) wp_set_object_terms($post_id, (int) $category_id, 'mec_category', true);
2521
+
2522
+ // Set Features Image
2523
+ if(isset($this->ix['import_featured_image']) and $this->ix['import_featured_image'] and $thumbnail_id = get_post_thumbnail_id($ID))
2524
+ {
2525
+ set_post_thumbnail($post_id, $thumbnail_id);
2526
+ }
2527
+
2528
+ $count++;
2529
+ }
2530
+
2531
+ return array('success'=>1, 'data'=>$count);
2532
+ }
2533
+
2534
  /**
2535
  * Show content of export tab
2536
  * @author Webnus <info@webnus.biz>
app/features/ix/import.php CHANGED
@@ -26,7 +26,7 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
26
  <div class="mec-form-row">
27
  <input type="file" name="feed" id="feed" title="<?php esc_attr_e('XML Feed', 'modern-events-calendar-lite'); ?>">
28
  <input type="hidden" name="mec-ix-action" value="import-start">
29
- <button class="button button-primary"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
30
  </div>
31
  </form>
32
 
@@ -39,7 +39,7 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
39
  <div class="mec-form-row">
40
  <input type="file" name="feed" id="feed" title="<?php esc_attr_e('ICS Feed', 'modern-events-calendar-lite'); ?>">
41
  <input type="hidden" name="mec-ix-action" value="import-start">
42
- <button class="button button-primary"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
43
  </div>
44
  </form>
45
  <?php else: ?>
26
  <div class="mec-form-row">
27
  <input type="file" name="feed" id="feed" title="<?php esc_attr_e('XML Feed', 'modern-events-calendar-lite'); ?>">
28
  <input type="hidden" name="mec-ix-action" value="import-start">
29
+ <button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
30
  </div>
31
  </form>
32
 
39
  <div class="mec-form-row">
40
  <input type="file" name="feed" id="feed" title="<?php esc_attr_e('ICS Feed', 'modern-events-calendar-lite'); ?>">
41
  <input type="hidden" name="mec-ix-action" value="import-start">
42
+ <button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Upload & Import', 'modern-events-calendar-lite'); ?></button>
43
  </div>
44
  </form>
45
  <?php else: ?>
app/features/ix/thirdparty.php CHANGED
@@ -30,7 +30,7 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
30
  <?php endforeach; ?>
31
  </select>
32
  <input type="hidden" name="mec-ix-action" value="thirdparty-import-start" />
33
- <button class="button button-primary"><?php _e('Start', 'modern-events-calendar-lite'); ?></button>
34
  </div>
35
  </form>
36
 
@@ -63,6 +63,8 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
63
  </div>
64
  <div class="mec-options-fields">
65
  <h4><?php _e('Import Options', 'modern-events-calendar-lite'); ?></h4>
 
 
66
  <div class="mec-form-row">
67
  <label>
68
  <input type="checkbox" name="ix[import_organizers]" value="1" checked="checked" />
@@ -72,6 +74,8 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
72
  ?>
73
  </label>
74
  </div>
 
 
75
  <div class="mec-form-row">
76
  <label>
77
  <input type="checkbox" name="ix[import_locations]" value="1" checked="checked" />
@@ -82,8 +86,8 @@ $third_parties = $this->main->get_integrated_plugins_for_import();
82
  <label>
83
  <input type="checkbox" name="ix[import_categories]" value="1" checked="checked" />
84
  <?php
85
- if($this->ix['third-party'] == 'weekly-class') _e('Import Class Types', 'modern-events-calendar-lite');
86
- else _e('Import Categories', 'modern-events-calendar-lite');
87
  ?>
88
  </label>
89
  </div>
30
  <?php endforeach; ?>
31
  </select>
32
  <input type="hidden" name="mec-ix-action" value="thirdparty-import-start" />
33
+ <button class="button button-primary mec-button-primary mec-btn-2"><?php _e('Start', 'modern-events-calendar-lite'); ?></button>
34
  </div>
35
  </form>
36
 
63
  </div>
64
  <div class="mec-options-fields">
65
  <h4><?php _e('Import Options', 'modern-events-calendar-lite'); ?></h4>
66
+
67
+ <?php if(!in_array($this->ix['third-party'], array('event-espresso', 'events-manager-single', 'events-manager-recurring'))): ?>
68
  <div class="mec-form-row">
69
  <label>
70
  <input type="checkbox" name="ix[import_organizers]" value="1" checked="checked" />
74
  ?>
75
  </label>
76
  </div>
77
+ <?php endif; ?>
78
+
79
  <div class="mec-form-row">
80
  <label>
81
  <input type="checkbox" name="ix[import_locations]" value="1" checked="checked" />
86
  <label>
87
  <input type="checkbox" name="ix[import_categories]" value="1" checked="checked" />
88
  <?php
89
+ if($this->ix['third-party'] == 'weekly-class') _e('Import Class Types', 'modern-events-calendar-lite');
90
+ else _e('Import Categories', 'modern-events-calendar-lite');
91
  ?>
92
  </label>
93
  </div>
app/features/mec/dashboard.php CHANGED
@@ -119,7 +119,6 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
119
  </div>
120
  <?php endif; ?>
121
  <?php echo $this->addons_msg(); ?>
122
-
123
  <div class="w-row">
124
  <div class="w-col-sm-12">
125
  <div class="w-box mec-intro-section">
@@ -222,6 +221,9 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
222
  </div>
223
  </div>
224
  <?php endif; ?>
 
 
 
225
  <?php if(current_user_can('read')): ?>
226
  <div class="w-col-sm-3">
227
  <div class="w-box doc">
119
  </div>
120
  <?php endif; ?>
121
  <?php echo $this->addons_msg(); ?>
 
122
  <div class="w-row">
123
  <div class="w-col-sm-12">
124
  <div class="w-box mec-intro-section">
221
  </div>
222
  </div>
223
  <?php endif; ?>
224
+ <div class="w-col-sm-12">
225
+ <script src='https://webnus.freshsales.io/web_forms/8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc/form.js' crossorigin='anonymous' id='fs_8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc'></script>
226
+ </div>
227
  <?php if(current_user_can('read')): ?>
228
  <div class="w-col-sm-3">
229
  <div class="w-box doc">
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -36,7 +36,7 @@ $events = $this->main->get_events();
36
  <?php $sk_options_list = isset($sk_options['list']) ? $sk_options['list'] : array(); ?>
37
  <div class="mec-form-row">
38
  <label class="mec-col-4" for="mec_skin_list_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
39
- <select class="mec-col-4 wn-mec-select" name="mec[sk-options][list][style]" id="mec_skin_list_style" onchange="mec_skin_style_changed('list', this.value); if(this.value == 'accordion'){ jQuery('.mec-sed-methode-container').hide();jQuery('.mec-toggle-month-divider').show(); }else{ jQuery('.mec-sed-methode-container').show();jQuery('.mec-toggle-month-divider').hide()}">
40
  <option value="classic" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'classic') echo 'selected="selected"'; ?>><?php _e('Classic', 'modern-events-calendar-lite'); ?></option>
41
  <option value="minimal" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'minimal') echo 'selected="selected"'; ?>><?php _e('Minimal', 'modern-events-calendar-lite'); ?></option>
42
  <option value="modern" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
@@ -121,6 +121,18 @@ $events = $this->main->get_events();
121
  <label class="mec-col-4" for="mec_skin_list_limit"><?php _e('Limit', 'modern-events-calendar-lite'); ?></label>
122
  <input class="mec-col-4" type="number" name="mec[sk-options][list][limit]" id="mec_skin_list_limit" placeholder="<?php _e('eg. 6', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_list['limit'])) echo $sk_options_list['limit']; ?>" />
123
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
124
  <div class="mec-form-row mec-switcher">
125
  <div class="mec-col-4">
126
  <label for="mec_skin_list_load_more_button"><?php _e('Load More Button', 'modern-events-calendar-lite'); ?></label>
@@ -128,7 +140,7 @@ $events = $this->main->get_events();
128
  <div class="mec-col-4">
129
  <input type="hidden" name="mec[sk-options][list][load_more_button]" value="0" />
130
  <input type="checkbox" name="mec[sk-options][list][load_more_button]" id="mec_skin_list_load_more_button" value="1" <?php if(!isset($sk_options_list['load_more_button']) or (isset($sk_options_list['load_more_button']) and $sk_options_list['load_more_button'])) echo 'checked="checked"'; ?> />
131
- <label for="mec_skin_list_load_more_button"></label>
132
  </div>
133
  </div>
134
  <div class="mec-form-row mec-switcher">
36
  <?php $sk_options_list = isset($sk_options['list']) ? $sk_options['list'] : array(); ?>
37
  <div class="mec-form-row">
38
  <label class="mec-col-4" for="mec_skin_list_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
39
+ <select class="mec-col-4 wn-mec-select" name="mec[sk-options][list][style]" id="mec_skin_list_style" onchange="mec_skin_style_changed('list', this.value, this); if(this.value == 'accordion'){ jQuery('.mec-sed-methode-container').hide();jQuery('.mec-toggle-month-divider').show(); }else{ jQuery('.mec-sed-methode-container').show();jQuery('.mec-toggle-month-divider').hide()}">
40
  <option value="classic" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'classic') echo 'selected="selected"'; ?>><?php _e('Classic', 'modern-events-calendar-lite'); ?></option>
41
  <option value="minimal" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'minimal') echo 'selected="selected"'; ?>><?php _e('Minimal', 'modern-events-calendar-lite'); ?></option>
42
  <option value="modern" <?php if(isset($sk_options_list['style']) and $sk_options_list['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
121
  <label class="mec-col-4" for="mec_skin_list_limit"><?php _e('Limit', 'modern-events-calendar-lite'); ?></label>
122
  <input class="mec-col-4" type="number" name="mec[sk-options][list][limit]" id="mec_skin_list_limit" placeholder="<?php _e('eg. 6', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_list['limit'])) echo $sk_options_list['limit']; ?>" />
123
  </div>
124
+ <!-- Start Include Events Times -->
125
+ <div class="mec-form-row mec-switcher mec-include-events-times">
126
+ <div class="mec-col-4">
127
+ <label for="mec_skin_list_include_events_times"><?php _e('Include Events Times', 'modern-events-calendar-lite'); ?></label>
128
+ </div>
129
+ <div class="mec-col-4">
130
+ <input type="hidden" name="mec[sk-options][list][include_events_times]" value="0" />
131
+ <input type="checkbox" name="mec[sk-options][list][include_events_times]" id="mec_skin_list_include_events_times" value="1" <?php if(isset($sk_options_list['include_events_times']) and trim($sk_options_list['include_events_times'])) echo 'checked="checked"'; ?> />
132
+ <label for="mec_skin_list_include_events_times"></label>
133
+ </div>
134
+ </div>
135
+ <!-- End Include Events Times -->
136
  <div class="mec-form-row mec-switcher">
137
  <div class="mec-col-4">
138
  <label for="mec_skin_list_load_more_button"><?php _e('Load More Button', 'modern-events-calendar-lite'); ?></label>
140
  <div class="mec-col-4">
141
  <input type="hidden" name="mec[sk-options][list][load_more_button]" value="0" />
142
  <input type="checkbox" name="mec[sk-options][list][load_more_button]" id="mec_skin_list_load_more_button" value="1" <?php if(!isset($sk_options_list['load_more_button']) or (isset($sk_options_list['load_more_button']) and $sk_options_list['load_more_button'])) echo 'checked="checked"'; ?> />
143
+ <label for="mec_skin_list_load_more_button"></label>
144
  </div>
145
  </div>
146
  <div class="mec-form-row mec-switcher">
app/features/mec/notifications.php CHANGED
@@ -77,6 +77,8 @@ $notifications = $this->main->get_notifications();
77
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
78
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
79
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
 
 
80
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
81
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
82
  <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -130,6 +132,8 @@ $notifications = $this->main->get_notifications();
130
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
131
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
132
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
 
 
133
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
134
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
135
  <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -182,6 +186,8 @@ $notifications = $this->main->get_notifications();
182
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
183
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
184
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
 
 
185
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
186
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
187
  <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -437,6 +443,8 @@ $notifications = $this->main->get_notifications();
437
  <ul>
438
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
439
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
 
 
440
  <li><span>%%event_status%%</span>: <?php _e('Status of event', 'modern-events-calendar-lite'); ?></li>
441
  <li><span>%%event_note%%</span>: <?php _e('Event Note', 'modern-events-calendar-lite'); ?></li>
442
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -483,6 +491,8 @@ $notifications = $this->main->get_notifications();
483
  <ul>
484
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
485
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
 
 
486
  <li><span>%%event_status%%</span>: <?php _e('Status of event', 'modern-events-calendar-lite'); ?></li>
487
  <li><span>%%event_note%%</span>: <?php _e('Event Note', 'modern-events-calendar-lite'); ?></li>
488
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
77
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
78
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
79
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
80
+ <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
81
+ <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
82
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
83
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
84
  <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
132
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
133
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
134
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
135
+ <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
136
+ <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
137
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
138
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
139
  <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
186
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
187
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
188
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
189
+ <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
190
+ <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
191
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
192
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
193
  <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
443
  <ul>
444
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
445
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
446
+ <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
447
+ <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
448
  <li><span>%%event_status%%</span>: <?php _e('Status of event', 'modern-events-calendar-lite'); ?></li>
449
  <li><span>%%event_note%%</span>: <?php _e('Event Note', 'modern-events-calendar-lite'); ?></li>
450
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
491
  <ul>
492
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
493
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
494
+ <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
495
+ <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
496
  <li><span>%%event_status%%</span>: <?php _e('Status of event', 'modern-events-calendar-lite'); ?></li>
497
  <li><span>%%event_note%%</span>: <?php _e('Event Note', 'modern-events-calendar-lite'); ?></li>
498
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
app/features/mec/settings.php CHANGED
@@ -18,9 +18,30 @@ if($this->getPRO())
18
  $envato = $this->getEnvato();
19
  $verify = $envato->get_MEC_info('dl');
20
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  $get_n_option = get_option('mec_addons_notification_option');
 
22
  ?>
23
- <?php if ( $get_n_option != 'open' ) : ?>
24
  <div class="wns-be-container mec-addons-notification-set-box extra">
25
  <?php echo $this->main->addons_msg(); ?>
26
  </div>
@@ -549,6 +570,41 @@ $get_n_option = get_option('mec_addons_notification_option');
549
  </div>
550
  <p class="description"><?php echo sprintf(__('Put %s shortcode into the page.', 'modern-events-calendar-lite'), '<code>[MEC_fes_form]</code>'); ?></p>
551
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552
  <div class="mec-form-row">
553
  <label>
554
  <input type="hidden" name="mec[settings][fes_guest_status]" value="0" />
18
  $envato = $this->getEnvato();
19
  $verify = $envato->get_MEC_info('dl');
20
  }
21
+
22
+
23
+ $data_url = 'https://webnus.net/modern-events-calendar/addons-api/mec-get-extra.html';
24
+ if( function_exists('file_get_contents') && ini_get('allow_url_fopen') )
25
+ {
26
+ $get_data = file_get_contents($data_url);
27
+ }
28
+ elseif ( function_exists('curl_version') )
29
+ {
30
+ $ch = curl_init();
31
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
32
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
33
+ curl_setopt($ch, CURLOPT_URL, $data_url);
34
+ $get_data = curl_exec($ch);
35
+ curl_close($ch);
36
+
37
+ } else {
38
+ $get_data = '';
39
+ }
40
+ if (!empty($get_data)) echo $get_data;
41
+
42
  $get_n_option = get_option('mec_addons_notification_option');
43
+ if ( $get_n_option != 'open' ) :
44
  ?>
 
45
  <div class="wns-be-container mec-addons-notification-set-box extra">
46
  <?php echo $this->main->addons_msg(); ?>
47
  </div>
570
  </div>
571
  <p class="description"><?php echo sprintf(__('Put %s shortcode into the page.', 'modern-events-calendar-lite'), '<code>[MEC_fes_form]</code>'); ?></p>
572
  </div>
573
+ <!-- Start FES Thank You Page -->
574
+ <div class="mec-form-row">
575
+ <label class="mec-col-3" for="mec_settings_fes_thankyou_page"><?php _e('Thank You Page', 'modern-events-calendar-lite'); ?></label>
576
+ <div class="mec-col-4">
577
+ <select id="mec_settings_fes_thankyou_page" name="mec[settings][fes_thankyou_page]">
578
+ <option value="">----</option>
579
+ <?php foreach($pages as $page): ?>
580
+ <option <?php echo ((isset($settings['fes_thankyou_page']) and $settings['fes_thankyou_page'] == $page->ID) ? 'selected="selected"' : ''); ?> value="<?php echo intval($page->ID); ?>"><?php echo $page->post_title; ?></option>
581
+ <?php endforeach; ?>
582
+ </select>
583
+ <span class="mec-tooltip">
584
+ <div class="box top">
585
+ <h5 class="title"><?php _e('Thank You Page', 'modern-events-calendar-lite'); ?></h5>
586
+ <div class="content"><p><?php esc_attr_e("User redirects to this page after new event submission. Leave it empty if you want to disable it.", 'modern-events-calendar-lite'); ?></p></div>
587
+ </div>
588
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
589
+ </span>
590
+ </div>
591
+ </div>
592
+ <!-- End FES Thank You Page -->
593
+ <!-- Start FES Thank You Page Time -->
594
+ <div class="mec-form-row">
595
+ <label class="mec-col-3" for="mec_settings_fes_thankyou_page_time"><?php _e('Thank You Page Time Interval', 'modern-events-calendar-lite'); ?></label>
596
+ <div class="mec-col-4">
597
+ <input type="number" id="mec_settings_fes_thankyou_page_time" name="mec[settings][fes_thankyou_page_time]" value="<?php echo ((isset($settings['fes_thankyou_page_time']) and trim($settings['fes_thankyou_page_time']) != '0') ? intval($settings['fes_thankyou_page_time']) : '2000'); ?>" placeholder="<?php esc_attr_e('2000 mean 2 seconds', 'modern-events-calendar-lite'); ?>" />
598
+ <span class="mec-tooltip">
599
+ <div class="box top">
600
+ <h5 class="title"><?php _e('Thank You Page Time Interval', 'modern-events-calendar-lite'); ?></h5>
601
+ <div class="content"><p><?php esc_attr_e("Waiting time before redirecting to thank you page. It's in miliseconds so 2000 means 2 seconds.", 'modern-events-calendar-lite'); ?></p></div>
602
+ </div>
603
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
604
+ </span>
605
+ </div>
606
+ </div>
607
+ <!-- End FES Thank You Page Time -->
608
  <div class="mec-form-row">
609
  <label>
610
  <input type="hidden" name="mec[settings][fes_guest_status]" value="0" />
app/features/mec/support-page.php CHANGED
@@ -23,7 +23,33 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
23
  </div>
24
  </div>
25
  <div class="welcome-content w-clearfix extra">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  <?php if(current_user_can('read')): ?>
 
27
  <div class="w-row">
28
  <div class="w-col-sm-12">
29
  <div class="w-box support-page searchbox">
@@ -280,5 +306,13 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
280
  })(jQuery);
281
  </script>
282
  <?php if($this->getPRO()) : ?>
283
- <script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="4c1b818f-12d2-4b87-a045-d843628eb07c";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
 
 
 
 
 
 
 
 
284
  <?php endif; ?>
23
  </div>
24
  </div>
25
  <div class="welcome-content w-clearfix extra">
26
+
27
+ <?php if(!$this->getPRO()): ?>
28
+ <div class="w-row mec-pro-notice">
29
+ <div class="w-col-sm-12">
30
+ <div class="info-msg support-box">
31
+ <p><?php echo sprintf(__("%s, if you need support, you can purchase our Extra Support feature through links below:", 'modern-events-calendar-lite'), '<strong>'.__('Dear user', 'modern-events-calendar-lite').'</strong>'); ?></p>
32
+ <a target="_blank" href="https://webnus.net/checkout?edd_action=add_to_cart&download_id=960896"> Get 12 Month Premium Support </a>
33
+ <a target="_blank" href="https://webnus.net/checkout?edd_action=add_to_cart&download_id=960724"> Get 6 Month Premium Support </a>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ <?php endif; ?>
38
+
39
+ <?php if($this->getPRO()): ?>
40
+ <div class="w-row mec-pro-notice">
41
+ <div class="w-col-sm-12">
42
+ <div class="info-msg support-box">
43
+ <p><?php echo sprintf(__("%s, we won't charge you for any extra price after a year for using MEC or receiving updates, but you will need to renew your license if you needed support by then. You can use links below in order to do that:", 'modern-events-calendar-lite'), '<strong>'.__('Dear user', 'modern-events-calendar-lite').'</strong>'); ?></p>
44
+ <a target="_blank" href="https://webnus.net/checkout?edd_action=add_to_cart&download_id=960896"> Get 12 Month Premium Support </a>
45
+ <a target="_blank" href="https://webnus.net/checkout?edd_action=add_to_cart&download_id=960724"> Get 6 Month Premium Support </a>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ <?php endif; ?>
50
+
51
  <?php if(current_user_can('read')): ?>
52
+ <script src='https://webnus.freshsales.io/web_forms/8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc/form.js' crossorigin='anonymous' id='fs_8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc'></script>
53
  <div class="w-row">
54
  <div class="w-col-sm-12">
55
  <div class="w-box support-page searchbox">
306
  })(jQuery);
307
  </script>
308
  <?php if($this->getPRO()) : ?>
309
+ <script>
310
+ function initFreshChat() {
311
+ window.fcWidget.init({
312
+ token: "1be9e2ea-febf-4835-b290-5bd097dc2e02",
313
+ host: "https://wchat.freshchat.com"
314
+ });
315
+ }
316
+ function initialize(i,t){var e;i.getElementById(t)?initFreshChat():((e=i.createElement("script")).id=t,e.async=!0,e.src="https://wchat.freshchat.com/js/widget.js",e.onload=initFreshChat,i.head.appendChild(e))}function initiateCall(){initialize(document,"freshchat-js-sdk")}window.addEventListener?window.addEventListener("load",initiateCall,!1):window.attachEvent("load",initiateCall,!1);
317
+ </script>
318
  <?php endif; ?>
app/features/profile/profile.php CHANGED
@@ -80,14 +80,23 @@ $id = 1;
80
  else $status_class = 'mec-book-pending';
81
  $transaction = $this->book->get_transaction($transaction_id);
82
  $dates = isset($transaction['date']) ? explode(':', $transaction['date']) : array(date('Y-m-d'), date('Y-m-d'));
83
- $event = $render->data($event_id);
 
 
 
 
 
84
  ?>
85
  <tr id="mec_profile_booking_<?php echo $ID; ?>">
86
  <td>
87
  <span class="mec-event-id"><?php echo $id; ?></span>
88
  </td>
89
  <td>
 
 
 
90
  <a class="mec-event-title" href="<?php echo get_the_permalink($event->ID); ?>"><?php echo $event->title; ?></a>
 
91
  </td>
92
  <td>
93
  <span class="mec-event-date">
@@ -119,17 +128,20 @@ $id = 1;
119
  </td>
120
  <td>
121
  <?php
 
 
122
  $location_id = get_post_meta($event->ID, 'mec_location_id', true);
123
  $location_latitude = isset($event->locations[$location_id]['latitude']) ? $event->locations[$location_id]['latitude'] : NULL;
124
  $location_longitude = isset($event->locations[$location_id]['longitude']) ? $event->locations[$location_id]['longitude'] : NULL;
 
125
  ?>
126
  <span class="mec-profile-bookings-view-google-map">
127
  <?php
128
- if($location_latitude and $location_longitude):
129
  ?>
130
  <a target="_blank" href="<?php echo "https://www.google.com/maps?q={$location_latitude},{$location_longitude}"; ?>"><i class="mec-sl-map"></i></a>
131
  <?php
132
- else:
133
  ?>
134
  <i class="mec-sl-question mec-profile-no-location"></i>
135
  <?php
@@ -193,7 +205,7 @@ $id = 1;
193
  echo '<span class="mec-booking-attendee-ticket-variations">';
194
  if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
195
  {
196
- $ticket_variations = $this->main->ticket_variations($event_id);
197
  foreach($attendee['variations'] as $variation_id=>$variation_count)
198
  {
199
  if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
80
  else $status_class = 'mec-book-pending';
81
  $transaction = $this->book->get_transaction($transaction_id);
82
  $dates = isset($transaction['date']) ? explode(':', $transaction['date']) : array(date('Y-m-d'), date('Y-m-d'));
83
+
84
+ // Check If Event Exist
85
+ $db = $this->getDB();
86
+ $check_event_exist = $db->select("SELECT `ID` FROM `#__posts` WHERE `ID`={$event_id}", 'loadResult');
87
+
88
+ $event = trim($check_event_exist) ? $render->data($event_id) : array();
89
  ?>
90
  <tr id="mec_profile_booking_<?php echo $ID; ?>">
91
  <td>
92
  <span class="mec-event-id"><?php echo $id; ?></span>
93
  </td>
94
  <td>
95
+ <?php if(!isset($event->ID) or !isset($event->title)) : ?>
96
+ <span class="mec-event-title"><?php _e('N/A', 'modern-events-calendar-lite'); ?></span>
97
+ <?php else : ?>
98
  <a class="mec-event-title" href="<?php echo get_the_permalink($event->ID); ?>"><?php echo $event->title; ?></a>
99
+ <?php endif; ?>
100
  </td>
101
  <td>
102
  <span class="mec-event-date">
128
  </td>
129
  <td>
130
  <?php
131
+ if(isset($event->ID))
132
+ {
133
  $location_id = get_post_meta($event->ID, 'mec_location_id', true);
134
  $location_latitude = isset($event->locations[$location_id]['latitude']) ? $event->locations[$location_id]['latitude'] : NULL;
135
  $location_longitude = isset($event->locations[$location_id]['longitude']) ? $event->locations[$location_id]['longitude'] : NULL;
136
+ }
137
  ?>
138
  <span class="mec-profile-bookings-view-google-map">
139
  <?php
140
+ if((isset($location_latitude) and $location_latitude) and (isset($location_longitude) and $location_longitude)) :
141
  ?>
142
  <a target="_blank" href="<?php echo "https://www.google.com/maps?q={$location_latitude},{$location_longitude}"; ?>"><i class="mec-sl-map"></i></a>
143
  <?php
144
+ else :
145
  ?>
146
  <i class="mec-sl-question mec-profile-no-location"></i>
147
  <?php
205
  echo '<span class="mec-booking-attendee-ticket-variations">';
206
  if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
207
  {
208
+ $ticket_variations = $this->main->ticket_variations(trim($check_event_exist) ? $event_id : NULL);
209
  foreach($attendee['variations'] as $variation_id=>$variation_count)
210
  {
211
  if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
app/libraries/factory.php CHANGED
@@ -882,7 +882,7 @@ class MEC_factory extends MEC_base
882
  foreach($calendars as $calendar)
883
  {
884
  // Calendar exists
885
- if(post_exists($calendar['title'], 'MEC')) continue;
886
 
887
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
888
  $post_id = wp_insert_post($post);
882
  foreach($calendars as $calendar)
883
  {
884
  // Calendar exists
885
+ if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
886
 
887
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
888
  $post_id = wp_insert_post($post);
app/libraries/main.php CHANGED
@@ -1986,7 +1986,7 @@ class MEC_main extends MEC_base
1986
  $settings = $this->get_settings();
1987
  if(isset($settings['booking_invoice']) and !$settings['booking_invoice'])
1988
  {
1989
- wp_die(__('Cannot find the invoice!', 'modern-events-calendar-lite'), __('Invoice is invalid.', 'modern-events-calendar-lite'), array('back_link'=>true));
1990
  exit;
1991
  }
1992
 
@@ -2004,15 +2004,15 @@ class MEC_main extends MEC_base
2004
  $book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='".$transaction_id."' AND `meta_key`='mec_transaction_id'", 'loadResult');
2005
  $mec_confirmed = get_post_meta($book_id, 'mec_confirmed', true);
2006
 
2007
- if(!$mec_confirmed)
2008
  {
2009
- wp_die(__('Your booking still is not confirmed. You able download it after confirmation!', 'modern-events-calendar-lite'), __('Booking Not Confirmed.', 'modern-events-calendar-lite'), array('back_link'=>true));
2010
  exit;
2011
  }
2012
 
2013
  if(!$event_id)
2014
  {
2015
- wp_die(__('Cannot find the booking!', 'modern-events-calendar-lite'), __('Booking is invalid.', 'modern-events-calendar-lite'), array('back_link'=>true));
2016
  exit;
2017
  }
2018
 
@@ -3810,6 +3810,26 @@ class MEC_main extends MEC_base
3810
  }
3811
  }
3812
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3813
  /**
3814
  * Returns end date of an event based on start date
3815
  * @author Webnus <info@webnus.biz>
@@ -4129,11 +4149,11 @@ class MEC_main extends MEC_base
4129
  $db->q("UPDATE `#__mec_events` SET ".trim($q, ', ')." WHERE `id`='$mec_event_id'");
4130
  }
4131
 
 
 
4132
  // Update Schedule
4133
  $schedule = $this->getSchedule();
4134
  $schedule->reschedule($post_id, $schedule->get_reschedule_maximum($event['repeat_type']));
4135
-
4136
- if(isset($event['meta']) and is_array($event['meta'])) foreach($event['meta'] as $key=>$value) update_post_meta($post_id, $key, $value);
4137
 
4138
  return $post_id;
4139
  }
@@ -5019,6 +5039,9 @@ class MEC_main extends MEC_base
5019
  'the-events-calendar' => __('The Events Calendar', 'modern-events-calendar-lite'),
5020
  'weekly-class' => __('Events Schedule WP Plugin', 'modern-events-calendar-lite'),
5021
  'calendarize-it' => __('Calendarize It', 'modern-events-calendar-lite'),
 
 
 
5022
  );
5023
  }
5024
 
1986
  $settings = $this->get_settings();
1987
  if(isset($settings['booking_invoice']) and !$settings['booking_invoice'])
1988
  {
1989
+ wp_die(__('Cannot find the invoice!', 'modern-events-calendar-lite'), __('Invoice is invalid.', 'modern-events-calendar-lite'));
1990
  exit;
1991
  }
1992
 
2004
  $book_id = $db->select("SELECT `post_id` FROM `#__postmeta` WHERE `meta_value`='".$transaction_id."' AND `meta_key`='mec_transaction_id'", 'loadResult');
2005
  $mec_confirmed = get_post_meta($book_id, 'mec_confirmed', true);
2006
 
2007
+ if(!$mec_confirmed and (!current_user_can('administrator') and !current_user_can('editor')))
2008
  {
2009
+ wp_die(__('Your booking still is not confirmed. You able download it after confirmation!', 'modern-events-calendar-lite'), __('Booking Not Confirmed.', 'modern-events-calendar-lite'));
2010
  exit;
2011
  }
2012
 
2013
  if(!$event_id)
2014
  {
2015
+ wp_die(__('Cannot find the booking!', 'modern-events-calendar-lite'), __('Booking is invalid.', 'modern-events-calendar-lite'));
2016
  exit;
2017
  }
2018
 
3810
  }
3811
  }
3812
 
3813
+ /**
3814
+ * Returns start/end time labels
3815
+ * @author Webnus <info@webnus.biz>
3816
+ * @param string $start
3817
+ * @param string $end
3818
+ * @param array $args
3819
+ * @return string
3820
+ */
3821
+ public function mec_include_time_labels($start = '', $end = '', $args = array())
3822
+ {
3823
+ $class = isset($args['class']) ? esc_attr($args['class']) : 'mec-time-details';
3824
+
3825
+ $return = "<div class='{$class}'>";
3826
+ if(trim($start)) $return .= '<span class="mec-start-time">' . $start . '</span>';
3827
+ if(trim($end)) $return .= ' - <span class="mec-end-time">' . $end . '</span>';
3828
+ $return .= '</div>';
3829
+
3830
+ return $return;
3831
+ }
3832
+
3833
  /**
3834
  * Returns end date of an event based on start date
3835
  * @author Webnus <info@webnus.biz>
4149
  $db->q("UPDATE `#__mec_events` SET ".trim($q, ', ')." WHERE `id`='$mec_event_id'");
4150
  }
4151
 
4152
+ if(isset($event['meta']) and is_array($event['meta'])) foreach($event['meta'] as $key=>$value) update_post_meta($post_id, $key, $value);
4153
+
4154
  // Update Schedule
4155
  $schedule = $this->getSchedule();
4156
  $schedule->reschedule($post_id, $schedule->get_reschedule_maximum($event['repeat_type']));
 
 
4157
 
4158
  return $post_id;
4159
  }
5039
  'the-events-calendar' => __('The Events Calendar', 'modern-events-calendar-lite'),
5040
  'weekly-class' => __('Events Schedule WP Plugin', 'modern-events-calendar-lite'),
5041
  'calendarize-it' => __('Calendarize It', 'modern-events-calendar-lite'),
5042
+ 'event-espresso' => __('Event Espresso', 'modern-events-calendar-lite'),
5043
+ 'events-manager-recurring' => __('Events Manager (Recurring)', 'modern-events-calendar-lite'),
5044
+ 'events-manager-single' => __('Events Manager (Single)', 'modern-events-calendar-lite'),
5045
  );
5046
  }
5047
 
app/libraries/notifications.php CHANGED
@@ -583,6 +583,8 @@ class MEC_notifications extends MEC_base
583
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
584
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
585
  $message = str_replace('%%event_link%%', get_post_permalink($event_id), $message);
 
 
586
  $message = str_replace('%%event_status%%', $status, $message);
587
  $message = str_replace('%%event_note%%', get_post_meta($event_id, 'mec_note', true), $message);
588
 
@@ -656,6 +658,8 @@ class MEC_notifications extends MEC_base
656
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
657
  $message = str_replace('%%event_title%%', get_the_title($post->ID), $message);
658
  $message = str_replace('%%event_link%%', get_post_permalink($post->ID), $message);
 
 
659
  $message = str_replace('%%event_status%%', $status, $message);
660
  $message = str_replace('%%event_note%%', get_post_meta($post->ID, 'mec_note', true), $message);
661
 
@@ -736,7 +740,11 @@ class MEC_notifications extends MEC_base
736
  // Book Data
737
  $transaction_id = get_post_meta($book_id, 'mec_transaction_id', true);
738
 
739
- $message = str_replace('%%book_date%%', get_the_date('', $book_id), $message);
 
 
 
 
740
 
741
  // Book Time
742
  $start_seconds = get_post_meta($event_id, 'mec_start_day_seconds', true);
@@ -774,6 +782,8 @@ class MEC_notifications extends MEC_base
774
 
775
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
776
  $message = str_replace('%%event_link%%', get_post_permalink($event_id), $message);
 
 
777
 
778
  $message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
779
  $message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
@@ -828,10 +838,24 @@ class MEC_notifications extends MEC_base
828
 
829
  $message = str_replace('%%ticket_name%%', $ticket_name, $message);
830
  $message = str_replace('%%ticket_time%%', $ticket_time, $message);
 
 
 
 
 
 
831
 
832
- $start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
833
- $end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
834
-
 
 
 
 
 
 
 
 
835
  $gmt_offset_seconds = $this->main->get_gmt_offset_seconds($start_time);
836
  $event_title = get_the_title($event_id);
837
  $event_info = get_post($event_id);
583
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
584
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
585
  $message = str_replace('%%event_link%%', get_post_permalink($event_id), $message);
586
+ $message = str_replace('%%event_start_date%%', get_post_meta($event_id, 'mec_start_date', true), $message);
587
+ $message = str_replace('%%event_end_date%%', get_post_meta($event_id, 'mec_end_date', true), $message);
588
  $message = str_replace('%%event_status%%', $status, $message);
589
  $message = str_replace('%%event_note%%', get_post_meta($event_id, 'mec_note', true), $message);
590
 
658
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
659
  $message = str_replace('%%event_title%%', get_the_title($post->ID), $message);
660
  $message = str_replace('%%event_link%%', get_post_permalink($post->ID), $message);
661
+ $message = str_replace('%%event_start_date%%', get_post_meta($post->ID, 'mec_start_date', true), $message);
662
+ $message = str_replace('%%event_end_date%%', get_post_meta($post->ID, 'mec_end_date', true), $message);
663
  $message = str_replace('%%event_status%%', $status, $message);
664
  $message = str_replace('%%event_note%%', get_post_meta($post->ID, 'mec_note', true), $message);
665
 
740
  // Book Data
741
  $transaction_id = get_post_meta($book_id, 'mec_transaction_id', true);
742
 
743
+ $book_date = get_post_meta($book_id, 'mec_date', true);
744
+ if(trim($book_date) and strpos($book_date, ':') !== false) $book_date = str_replace(':', ' ' . __('to', 'modern-events-calendar-lite') . ' ', $book_date);
745
+ else $book_date = get_the_date('', $book_id);
746
+
747
+ $message = str_replace('%%book_date%%', $book_date, $message);
748
 
749
  // Book Time
750
  $start_seconds = get_post_meta($event_id, 'mec_start_day_seconds', true);
782
 
783
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
784
  $message = str_replace('%%event_link%%', get_post_permalink($event_id), $message);
785
+ $message = str_replace('%%event_start_date%%', get_post_meta($event_id, 'mec_start_date', true), $message);
786
+ $message = str_replace('%%event_end_date%%', get_post_meta($event_id, 'mec_end_date', true), $message);
787
 
788
  $message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
789
  $message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
838
 
839
  $message = str_replace('%%ticket_name%%', $ticket_name, $message);
840
  $message = str_replace('%%ticket_time%%', $ticket_time, $message);
841
+
842
+ $ticket_start_time_info = ' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm;
843
+ $ticket_end_time_info = ' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm;
844
+
845
+ $start_time = strtotime(get_the_date('Y-m-d', $book_id) . $ticket_start_time_info);
846
+ $end_time = strtotime(get_the_date('Y-m-d', $book_id). $ticket_end_time_info);
847
 
848
+ if(isset($book_date) and strpos($book_date, __('to', 'modern-events-calendar-lite')) !== false)
849
+ {
850
+ $explode_time = explode(__('to', 'modern-events-calendar-lite'), $book_date);
851
+
852
+ if(isset($explode_time) and count($explode_time) == 2)
853
+ {
854
+ $start_time = strtotime(trim($explode_time[0]) . $ticket_start_time_info);
855
+ $end_time = strtotime(trim($explode_time[1]) . $ticket_end_time_info);
856
+ }
857
+ }
858
+
859
  $gmt_offset_seconds = $this->main->get_gmt_offset_seconds($start_time);
860
  $event_title = get_the_title($event_id);
861
  $event_info = get_post($event_id);
app/libraries/skins.php CHANGED
@@ -96,6 +96,7 @@ class MEC_skins extends MEC_base
96
  public $toggle_month_divider;
97
  public $image_popup;
98
  public $map_on_top;
 
99
 
100
  /**
101
  * Constructor method
96
  public $toggle_month_divider;
97
  public $image_popup;
98
  public $map_on_top;
99
+ public $include_events_times;
100
 
101
  /**
102
  * Constructor method
app/modules/booking/default.php CHANGED
@@ -163,6 +163,15 @@ function mec_book_form_submit'.$uniqueid.'()
163
  {
164
  var valid = true;
165
 
 
 
 
 
 
 
 
 
 
166
  jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-name.mec-reg-mandatory").filter(":visible").each(function(i)
167
  {
168
  var ticket_id = jQuery(this).data("ticket-id");
163
  {
164
  var valid = true;
165
 
166
+ jQuery("#mec_book_form'.$uniqueid.'").find(\'input[type="date"], input[type="file"]\').each(function(index, context) {
167
+ if(!jQuery(context).val())
168
+ {
169
+ valid = false;
170
+ jQuery(context).parent().addClass("mec-red-notification");
171
+ }
172
+ else jQuery(context).parent().removeClass("mec-red-notification");
173
+ });
174
+
175
  jQuery("#mec_book_form'.$uniqueid.' .mec-book-ticket-container .mec-book-field-name.mec-reg-mandatory").filter(":visible").each(function(i)
176
  {
177
  var ticket_id = jQuery(this).data("ticket-id");
app/modules/countdown/details.php CHANGED
@@ -15,14 +15,18 @@ $start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date[
15
  $end_date = (isset($date['end']) and isset($date['end']['date'])) ? $date['end']['date'] : current_time('Y-m-d H:i:s');
16
 
17
  $s_time = '';
18
- $s_time .= sprintf("%02d", $date['start']['hour']).':';
19
- $s_time .= sprintf("%02d", $date['start']['minutes']);
20
- $s_time .= trim($date['start']['ampm']);
 
 
21
 
22
  $e_time = '';
23
- $e_time .= sprintf("%02d", $date['end']['hour']).':';
24
- $e_time .= sprintf("%02d", $date['end']['minutes']);
25
- $e_time .= trim($date['end']['ampm']);
 
 
26
 
27
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
28
  $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
15
  $end_date = (isset($date['end']) and isset($date['end']['date'])) ? $date['end']['date'] : current_time('Y-m-d H:i:s');
16
 
17
  $s_time = '';
18
+ if ( !empty($date) ):
19
+ $s_time .= sprintf("%02d", $date['start']['hour']).':';
20
+ $s_time .= sprintf("%02d", $date['start']['minutes']);
21
+ $s_time .= trim($date['start']['ampm']);
22
+ endif;
23
 
24
  $e_time = '';
25
+ if ( !empty($date) ):
26
+ $e_time .= sprintf("%02d", $date['end']['hour']).':';
27
+ $e_time .= sprintf("%02d", $date['end']['minutes']);
28
+ $e_time .= trim($date['end']['ampm']);
29
+ endif;
30
 
31
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
32
  $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
app/modules/export/details.php CHANGED
@@ -9,14 +9,32 @@ $settings = $this->get_settings();
9
  if(!isset($settings['export_module_status']) or (isset($settings['export_module_status']) and !$settings['export_module_status'])) return;
10
 
11
  $title = isset($event->data->title) ? $event->data->title : '';
12
- $location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']]['address'] : '';
13
  $content = (isset($event->data->post->post_content) and trim($event->data->post->post_content)) ? strip_shortcodes(strip_tags($event->data->post->post_content)) : $title;
14
 
15
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
16
  $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
17
 
18
- $start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']);
19
- $end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  $gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
22
  ?>
9
  if(!isset($settings['export_module_status']) or (isset($settings['export_module_status']) and !$settings['export_module_status'])) return;
10
 
11
  $title = isset($event->data->title) ? $event->data->title : '';
12
+ $location = isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']]['address'] : '';
13
  $content = (isset($event->data->post->post_content) and trim($event->data->post->post_content)) ? strip_shortcodes(strip_tags($event->data->post->post_content)) : $title;
14
 
15
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
16
  $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
17
 
18
+ $start_date_temp = $start_hour_temp = '';
19
+ if ( !empty($event->date) ):
20
+ $start_date_temp = isset($event->date['start']['date']) ? $event->date['start']['date'] : NULL;
21
+ $start_hour_temp = isset($event->date['start']['hour']) ? $event->date['start']['hour'] : NULL;
22
+ endif;
23
+ $start_minutes_temp = isset($event->date['start']['minutes']) ? $event->date['start']['minutes'] : NULL;
24
+ $start_ampm_temp = isset($event->date['start']['ampm']) ? $event->date['start']['ampm'] : NULL;
25
+
26
+ $end_date_temp = isset($event->date['end']['date']) ? $event->date['end']['date'] : NULL;
27
+ $end_hour_temp = isset($event->date['end']['hour']) ? $event->date['end']['hour'] : NULL;
28
+ $end_minutes_temp = isset($event->date['end']['minutes']) ? $event->date['end']['minutes'] : NULL;
29
+ $end_ampm_temp = isset($event->date['end']['ampm']) ? $event->date['end']['ampm'] : NULL;
30
+
31
+ if((is_null($start_date_temp) or is_null($start_hour_temp) or is_null($start_minutes_temp) or is_null($start_ampm_temp) or is_null($end_date_temp) or is_null($end_hour_temp) or is_null($end_minutes_temp) or is_null($end_ampm_temp)) and !trim($occurrence))
32
+ {
33
+ return;
34
+ }
35
+
36
+ $start_time = strtotime((trim($occurrence) ? $occurrence : $start_date_temp).' '.sprintf("%02d", $start_hour_temp).':'.sprintf("%02d", $start_minutes_temp).' '.$start_ampm_temp);
37
+ $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);
38
 
39
  $gmt_offset_seconds = $this->get_gmt_offset_seconds($start_time);
40
  ?>
app/modules/googlemap/details.php CHANGED
@@ -17,7 +17,7 @@ $uniqueid = (isset($uniqueid) ? $uniqueid : $event->data->ID);
17
  // Map is disabled for this event
18
  if(isset($event->data->meta['mec_dont_show_map']) and $event->data->meta['mec_dont_show_map']) return;
19
 
20
- $location = isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
21
 
22
  // Event location geo point
23
  $latitude = isset($location['latitude']) ? $location['latitude'] : '';
@@ -32,8 +32,11 @@ if(!trim($latitude) or !trim($longitude))
32
  $latitude = $geo_point[0];
33
  $longitude = $geo_point[1];
34
 
35
- update_term_meta($event->data->meta['mec_location_id'], 'latitude', $latitude);
36
- update_term_meta($event->data->meta['mec_location_id'], 'longitude', $longitude);
 
 
 
37
  }
38
 
39
  // Still Latitude and Longitude are wrong!
17
  // Map is disabled for this event
18
  if(isset($event->data->meta['mec_dont_show_map']) and $event->data->meta['mec_dont_show_map']) return;
19
 
20
+ $location = isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']]) ? $event->data->locations[$event->data->meta['mec_location_id']] : array();
21
 
22
  // Event location geo point
23
  $latitude = isset($location['latitude']) ? $location['latitude'] : '';
32
  $latitude = $geo_point[0];
33
  $longitude = $geo_point[1];
34
 
35
+ if(isset($event->data->meta['mec_location_id']))
36
+ {
37
+ update_term_meta($event->data->meta['mec_location_id'], 'latitude', $latitude);
38
+ update_term_meta($event->data->meta['mec_location_id'], 'longitude', $longitude);
39
+ }
40
  }
41
 
42
  // Still Latitude and Longitude are wrong!
app/skins/list/render.php CHANGED
@@ -5,6 +5,7 @@ defined('MECEXEC') or die();
5
  $styling = $this->main->get_styling();
6
  $settings = $this->main->get_settings();
7
  $current_month_divider = $this->request->getVar('current_month_divider', 0);
 
8
 
9
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
10
  ?>
@@ -101,7 +102,9 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
101
  <div class="col-md-6 col-sm-6">
102
  <?php do_action('list_std_title_hook', $event); ?>
103
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
104
- <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
 
 
105
  <ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
106
  </div>
107
  <div class="col-md-4 col-sm-4 mec-btn-wrapper">
@@ -114,12 +117,14 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
114
  <div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
115
  <?php else: ?>
116
  <div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
 
117
  <?php endif; ?>
118
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
119
  <?php if(isset($location['name'])): ?><div class="mec-event-detail"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php endif; ?>
120
  <?php elseif($this->style == 'minimal'): ?>
121
  <div class="col-md-9 col-sm-9">
122
  <div class="mec-event-date mec-bg-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
 
123
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
124
  <div class="mec-event-detail"><?php echo date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?>, <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
125
  </div>
@@ -156,14 +161,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
156
  <span class="mec-event-d"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_standard_1); ?></span>
157
  <?php endif; ?>
158
  </div>
159
- <?php
160
- if(trim($start_time))
161
- {
162
- echo '<div class="mec-time-details"><span class="mec-start-time">'.$start_time.'</span>';
163
- if(trim($end_time)) echo ' - <span class="mec-end-time">'.$end_time.'</span>';
164
- echo '</div>';
165
- }
166
- ?>
167
  <?php if(isset($location['name'])): ?>
168
  <div class="mec-venue-details">
169
  <span><?php echo (isset($location['name']) ? $location['name'] : ''); ?></span><address class="mec-event-address"><span><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
@@ -175,6 +173,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
175
  <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
176
  </div>
177
  <?php endif; ?>
 
178
  </div>
179
  </div>
180
  </div>
@@ -214,14 +213,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
214
  <?php else: ?>
215
  <div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_acc_1.' '.$this->date_format_acc_2); ?></div>
216
  <?php endif; ?>
217
- <?php
218
- if(trim($start_time))
219
- {
220
- echo '<div class="mec-event-detail"><span class="mec-start-time">'.$start_time.'</span>';
221
- if(trim($end_time)) echo ' - <span class="mec-end-time">'.$end_time.'</span>';
222
- echo '</div>';
223
- }
224
- ?>
225
  </div>
226
  <h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $event_color ; ?></h3>
227
  <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?><i class="mec-sl-arrow-down"></i>
5
  $styling = $this->main->get_styling();
6
  $settings = $this->main->get_settings();
7
  $current_month_divider = $this->request->getVar('current_month_divider', 0);
8
+ $this->include_events_times = isset($this->skin_options['include_events_times']) ? $this->skin_options['include_events_times'] : false;
9
 
10
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
11
  ?>
102
  <div class="col-md-6 col-sm-6">
103
  <?php do_action('list_std_title_hook', $event); ?>
104
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
105
+ <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?>
106
+ <?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
107
+ </div>
108
  <ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
109
  </div>
110
  <div class="col-md-4 col-sm-4 mec-btn-wrapper">
117
  <div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo date_i18n($this->date_format_classic_1, strtotime($event->date['start']['date'])); ?></div>
118
  <?php else: ?>
119
  <div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> <?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_classic_1); ?></div>
120
+ <div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->mec_include_time_labels($start_time, $end_time); } ?></div>
121
  <?php endif; ?>
122
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
123
  <?php if(isset($location['name'])): ?><div class="mec-event-detail"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php endif; ?>
124
  <?php elseif($this->style == 'minimal'): ?>
125
  <div class="col-md-9 col-sm-9">
126
  <div class="mec-event-date mec-bg-color"><span><?php echo date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
127
+ <?php if($this->include_events_times) echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
128
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
129
  <div class="mec-event-detail"><?php echo date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?>, <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
130
  </div>
161
  <span class="mec-event-d"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_standard_1); ?></span>
162
  <?php endif; ?>
163
  </div>
164
+ <?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
 
 
 
 
 
 
 
165
  <?php if(isset($location['name'])): ?>
166
  <div class="mec-venue-details">
167
  <span><?php echo (isset($location['name']) ? $location['name'] : ''); ?></span><address class="mec-event-address"><span><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address>
173
  <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
174
  </div>
175
  <?php endif; ?>
176
+ <?php do_action( 'mec_list_standard_right_box', $event); ?>
177
  </div>
178
  </div>
179
  </div>
213
  <?php else: ?>
214
  <div class="mec-event-month"><?php echo $this->main->date_label($event->date['start'], $event->date['end'], $this->date_format_acc_1.' '.$this->date_format_acc_2); ?></div>
215
  <?php endif; ?>
216
+ <?php echo $this->main->mec_include_time_labels($start_time, $end_time); ?>
 
 
 
 
 
 
 
217
  </div>
218
  <h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $event_color ; ?></h3>
219
  <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?><i class="mec-sl-arrow-down"></i>
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -170,6 +170,7 @@ elseif($week_start == 5) // Friday
170
  $sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
171
  $events_str .= '<h4 class="mec-event-title'.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
172
  $events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
 
173
  $events_str .= '</article>';
174
  }
175
 
170
  $sold_out = ($is_soldout) ? ' <span class=soldout>' . __('Sold Out', 'modern-events-calendar-lite') . '</span> ' : '';
171
  $events_str .= '<h4 class="mec-event-title'.$sold_out_css_class.'"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$sold_out.$event_color.'</h4>';
172
  $events_str .= '<div class="mec-event-detail">'.(isset($location['name']) ? $location['name'] : '').'</div>';
173
+ $events_str .= apply_filters('monthly_event_right_box', $events_str, $event);
174
  $events_str .= '</article>';
175
  }
176
 
app/skins/single.php CHANGED
@@ -246,17 +246,19 @@ class MEC_skin_single extends MEC_skins
246
  $end_date = (isset($dates[0]['end']) and isset($dates[0]['end']['date'])) ? $dates[0]['end']['date'] : current_time('Y-m-d H:i:s');
247
 
248
  $s_time = '';
249
- $s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
250
- $s_time .= sprintf("%02d", $dates[0]['start']['minutes']);
251
- $s_time .= trim($dates[0]['start']['ampm']);
252
-
 
253
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
254
 
255
  $e_time = '';
256
- $e_time .= sprintf("%02d", $dates[0]['end']['hour']).':';
257
- $e_time .= sprintf("%02d", $dates[0]['end']['minutes']);
258
- $e_time .= trim($dates[0]['end']['ampm']);
259
-
 
260
  $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
261
 
262
  $d1 = new DateTime($start_time);
246
  $end_date = (isset($dates[0]['end']) and isset($dates[0]['end']['date'])) ? $dates[0]['end']['date'] : current_time('Y-m-d H:i:s');
247
 
248
  $s_time = '';
249
+ if ( !empty($dates) ) :
250
+ $s_time .= sprintf("%02d", $dates[0]['start']['hour']).':';
251
+ $s_time .= sprintf("%02d", $dates[0]['start']['minutes']);
252
+ $s_time .= trim($dates[0]['start']['ampm']);
253
+ endif;
254
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.$s_time));
255
 
256
  $e_time = '';
257
+ if ( !empty($dates) ) :
258
+ $e_time .= sprintf("%02d", $dates[0]['end']['hour']).':';
259
+ $e_time .= sprintf("%02d", $dates[0]['end']['minutes']);
260
+ $e_time .= trim($dates[0]['end']['ampm']);
261
+ endif;
262
  $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.$e_time));
263
 
264
  $d1 = new DateTime($start_time);
app/skins/single/default.php CHANGED
@@ -46,7 +46,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
46
  <?php $this->display_hourly_schedules_widget($event); ?>
47
 
48
  <!-- Booking Module -->
49
- <?php if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
50
  <div class="mec-sold-tickets warning-msg"><?php _e('Sold out!', 'wpl'); ?></div>
51
  <?php elseif($this->main->can_show_booking_module($event)): ?>
52
  <?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
@@ -61,7 +61,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
61
  }
62
  ?>
63
  </div>
64
- <?php endif ?>
65
 
66
  <!-- Tags -->
67
  <div class="mec-events-meta-group mec-events-meta-group-tags">
@@ -81,7 +81,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
81
  <div class="mec-single-event-date">
82
  <i class="mec-sl-calendar"></i>
83
  <h3 class="mec-date"><?php _e('Date', 'modern-events-calendar-lite'); ?></h3>
84
- <dd><abbr class="mec-events-abbr"><?php echo $this->main->date_label((trim($occurrence) ? array('date'=>$occurrence) : $event->date['start']), (trim($occurrence_end_date) ? array('date'=>$occurrence_end_date) : (isset($event->date['end']) ? $event->date['end'] : NULL)), $this->date_format1); ?></abbr></dd>
85
  </div>
86
 
87
  <?php
@@ -157,7 +157,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
157
 
158
  <?php
159
  // Event Location
160
- if(isset($event->data->locations[$event->data->meta['mec_location_id']]) and !empty($event->data->locations[$event->data->meta['mec_location_id']]))
161
  {
162
  $location = $event->data->locations[$event->data->meta['mec_location_id']];
163
  ?>
@@ -196,7 +196,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
196
  <?php
197
  }
198
  ?>
199
-
200
  <?php
201
  // Event Organizer
202
  if(isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) && !empty($event->data->organizers[$event->data->meta['mec_organizer_id']]))
@@ -408,7 +408,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
408
  <?php
409
  }
410
  ?>
411
-
412
  <?php
413
  // Event Organizer
414
  if(isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) && !empty($event->data->organizers[$event->data->meta['mec_organizer_id']]) and $single->found_value('event_orgnizer', $settings) == 'on')
46
  <?php $this->display_hourly_schedules_widget($event); ?>
47
 
48
  <!-- Booking Module -->
49
+ <?php if ( !empty($event->date) ): if($this->main->is_sold($event, (trim($occurrence) ? $occurrence : $event->date['start']['date'])) and count($event->dates) <= 1): ?>
50
  <div class="mec-sold-tickets warning-msg"><?php _e('Sold out!', 'wpl'); ?></div>
51
  <?php elseif($this->main->can_show_booking_module($event)): ?>
52
  <?php $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ) $data_lity_class = 'lity-hide '; ?>
61
  }
62
  ?>
63
  </div>
64
+ <?php endif; endif; ?>
65
 
66
  <!-- Tags -->
67
  <div class="mec-events-meta-group mec-events-meta-group-tags">
81
  <div class="mec-single-event-date">
82
  <i class="mec-sl-calendar"></i>
83
  <h3 class="mec-date"><?php _e('Date', 'modern-events-calendar-lite'); ?></h3>
84
+ <dd><abbr class="mec-events-abbr"><?php if (!empty($event->date)): echo $this->main->date_label((trim($occurrence) ? array('date'=>$occurrence) : $event->date['start']), (trim($occurrence_end_date) ? array('date'=>$occurrence_end_date) : (isset($event->date['end']) ? $event->date['end'] : NULL)), $this->date_format1); endif; ?></abbr></dd>
85
  </div>
86
 
87
  <?php
157
 
158
  <?php
159
  // Event Location
160
+ if(isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']]) and !empty($event->data->locations[$event->data->meta['mec_location_id']]))
161
  {
162
  $location = $event->data->locations[$event->data->meta['mec_location_id']];
163
  ?>
196
  <?php
197
  }
198
  ?>
199
+ <?php do_action('mec_single_event_under_category' , $event); ?>
200
  <?php
201
  // Event Organizer
202
  if(isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) && !empty($event->data->organizers[$event->data->meta['mec_organizer_id']]))
408
  <?php
409
  }
410
  ?>
411
+ <?php do_action('mec_single_event_under_category' , $event); ?>
412
  <?php
413
  // Event Organizer
414
  if(isset($event->data->organizers[$event->data->meta['mec_organizer_id']]) && !empty($event->data->organizers[$event->data->meta['mec_organizer_id']]) and $single->found_value('event_orgnizer', $settings) == 'on')
app/widgets/MEC.php CHANGED
@@ -113,9 +113,9 @@ class MEC_MEC_widget extends WP_Widget
113
  public function update($new_instance, $old_instance)
114
  {
115
  $instance = array();
116
- $instance['title'] = $new_instance['title'];
117
- $instance['calendar_id'] = $new_instance['calendar_id'];
118
- $instance['current_hide'] = $new_instance['current_hide'];
119
 
120
  return $instance;
121
  }
113
  public function update($new_instance, $old_instance)
114
  {
115
  $instance = array();
116
+ $instance['title'] = isset($new_instance['title']) ? strip_tags($new_instance['title']) : '';
117
+ $instance['calendar_id'] = isset($new_instance['calendar_id']) ? intval($new_instance['calendar_id']) : 0;
118
+ $instance['current_hide'] = isset($new_instance['current_hide']) ? strip_tags($new_instance['current_hide']) : '';
119
 
120
  return $instance;
121
  }
app/widgets/single.php CHANGED
@@ -173,23 +173,23 @@ class MEC_single_widget extends WP_Widget
173
  public function update($new_instance, $old_instance)
174
  {
175
  $instance = $old_instance;
176
- $instance['data_time'] = strip_tags($new_instance['data_time']);
177
- $instance['local_time'] = strip_tags($new_instance['local_time']);
178
- $instance['event_cost'] = strip_tags($new_instance['event_cost']);
179
- $instance['more_info'] = strip_tags($new_instance['more_info']);
180
- $instance['event_label'] = strip_tags($new_instance['event_label']);
181
- $instance['event_location'] = strip_tags($new_instance['event_location']);
182
- $instance['event_categories'] = strip_tags($new_instance['event_categories']);
183
- $instance['event_orgnizer'] = strip_tags($new_instance['event_orgnizer']);
184
- $instance['event_speakers'] = strip_tags($new_instance['event_speakers']);
185
- $instance['register_btn'] = strip_tags($new_instance['register_btn']);
186
- $instance['attende_module'] = strip_tags($new_instance['attende_module']);
187
- $instance['next_module'] = strip_tags($new_instance['next_module']);
188
- $instance['links_module'] = strip_tags($new_instance['links_module']);
189
- $instance['weather_module'] = strip_tags($new_instance['weather_module']);
190
- $instance['google_map'] = strip_tags($new_instance['google_map']);
191
- $instance['qrcode_module'] = strip_tags($new_instance['qrcode_module']);
192
-
193
  $this->flush_widget_cache();
194
 
195
  $alloptions = wp_cache_get('alloptions', 'options');
173
  public function update($new_instance, $old_instance)
174
  {
175
  $instance = $old_instance;
176
+ $instance['data_time'] = isset($new_instance['data_time']) ? strip_tags($new_instance['data_time']) : '';
177
+ $instance['local_time'] = isset($new_instance['local_time']) ? strip_tags($new_instance['local_time']) : '';
178
+ $instance['event_cost'] = isset($new_instance['event_cost']) ? strip_tags($new_instance['event_cost']) : '';
179
+ $instance['more_info'] = isset($new_instance['more_info']) ? strip_tags($new_instance['more_info']) : '';
180
+ $instance['event_label'] = isset($new_instance['event_label']) ? strip_tags($new_instance['event_label']) : '';
181
+ $instance['event_location'] = isset($new_instance['event_location']) ? strip_tags($new_instance['event_location']) : '';
182
+ $instance['event_categories'] = isset($new_instance['event_categories']) ? strip_tags($new_instance['event_categories']) : '';
183
+ $instance['event_orgnizer'] = isset($new_instance['event_orgnizer']) ? strip_tags($new_instance['event_orgnizer']) : '';
184
+ $instance['event_speakers'] = isset($new_instance['event_speakers']) ? strip_tags($new_instance['event_speakers']) : '';
185
+ $instance['register_btn'] = isset($new_instance['register_btn']) ? strip_tags($new_instance['register_btn']) : '';
186
+ $instance['attende_module'] = isset($new_instance['attende_module']) ? strip_tags($new_instance['attende_module']) : '';
187
+ $instance['next_module'] = isset($new_instance['next_module']) ? strip_tags($new_instance['next_module']) : '';
188
+ $instance['links_module'] = isset($new_instance['links_module']) ? strip_tags($new_instance['links_module']) : '';
189
+ $instance['weather_module'] = isset($new_instance['weather_module']) ? strip_tags($new_instance['weather_module']) : '';
190
+ $instance['google_map'] = isset($new_instance['google_map']) ? strip_tags($new_instance['google_map']) : '';
191
+ $instance['qrcode_module'] = isset($new_instance['qrcode_module']) ? strip_tags($new_instance['qrcode_module']) : '';
192
+
193
  $this->flush_widget_cache();
194
 
195
  $alloptions = wp_cache_get('alloptions', 'options');
assets/css/backend.css CHANGED
@@ -887,6 +887,15 @@ body.post-type-mec-books th.column-author {
887
  margin-top: 1px
888
  }
889
 
 
 
 
 
 
 
 
 
 
890
  .mec-book-status-form select {
891
  display: block;
892
  width: 99%;
@@ -1358,6 +1367,20 @@ body.post-type-mec-books th.column-author {
1358
  max-height: 100%
1359
  }
1360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
  .mec-image-select-wrap .mec-colorskin-1 {
1362
  background-color: #40d9f1;
1363
  }
@@ -3291,6 +3314,7 @@ textarea.mec-import-settings-content {
3291
  margin-top: 40px
3292
  }
3293
 
 
3294
  #webnus-dashboard .w-box.support-page.mec-ticksy a {
3295
  color: #fff;
3296
  font-weight: 500;
@@ -3307,12 +3331,17 @@ textarea.mec-import-settings-content {
3307
  display: inline-block
3308
  }
3309
 
 
3310
  #webnus-dashboard .w-box.support-page.mec-ticksy a:hover {
3311
  background: #222;
3312
  background: linear-gradient(95deg,#555 0,#222 50%,#000 100%);
3313
  box-shadow: 0 5px 23px -7px rgba(0,0,0,.5)
3314
  }
3315
 
 
 
 
 
3316
  .mec-faq-accordion>.mec-faq-accordion-content {
3317
  display: none
3318
  }
@@ -6056,7 +6085,8 @@ a.mec-create-shortcode-tabs-link {
6056
  /* Select 2 Styles */
6057
  .mec-add-event-tabs-wrap .select2-container,
6058
  .mec-create-shortcode-tab-content .select2-container {
6059
- height: 38px;
 
6060
  box-sizing: border-box;
6061
  margin-bottom: 8px;
6062
  padding: 0 6px;
@@ -6089,4 +6119,126 @@ a.mec-create-shortcode-tabs-link {
6089
  .mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow {
6090
  top: 5px;
6091
  right: 4px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6092
  }
887
  margin-top: 1px
888
  }
889
 
890
+ /* WordPress 3 select */
891
+ .mec-form-row select {
892
+ min-width: 50px;
893
+ }
894
+
895
+ .ui-datepicker select {
896
+ min-width: 60px;
897
+ }
898
+
899
  .mec-book-status-form select {
900
  display: block;
901
  width: 99%;
1367
  max-height: 100%
1368
  }
1369
 
1370
+ /* MEC Import/Export fix CSS */
1371
+ .m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2 {
1372
+ margin: 0 0 0 12px;
1373
+ }
1374
+
1375
+ .m-e-calendar_page_MEC-ix #wpwrap input[type=file] {
1376
+ padding-top: 12px;
1377
+ padding-bottom: 12px;
1378
+ }
1379
+
1380
+ .m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select {
1381
+ min-height: 46px;
1382
+ }
1383
+
1384
  .mec-image-select-wrap .mec-colorskin-1 {
1385
  background-color: #40d9f1;
1386
  }
3314
  margin-top: 40px
3315
  }
3316
 
3317
+ #webnus-dashboard .support-box a,
3318
  #webnus-dashboard .w-box.support-page.mec-ticksy a {
3319
  color: #fff;
3320
  font-weight: 500;
3331
  display: inline-block
3332
  }
3333
 
3334
+ #webnus-dashboard .support-box a:hover,
3335
  #webnus-dashboard .w-box.support-page.mec-ticksy a:hover {
3336
  background: #222;
3337
  background: linear-gradient(95deg,#555 0,#222 50%,#000 100%);
3338
  box-shadow: 0 5px 23px -7px rgba(0,0,0,.5)
3339
  }
3340
 
3341
+ #webnus-dashboard .support-box a {
3342
+ margin: 40px 4px 0 4px;
3343
+ }
3344
+
3345
  .mec-faq-accordion>.mec-faq-accordion-content {
3346
  display: none
3347
  }
6085
  /* Select 2 Styles */
6086
  .mec-add-event-tabs-wrap .select2-container,
6087
  .mec-create-shortcode-tab-content .select2-container {
6088
+ min-height: 38px;
6089
+ height: auto;
6090
  box-sizing: border-box;
6091
  margin-bottom: 8px;
6092
  padding: 0 6px;
6119
  .mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow {
6120
  top: 5px;
6121
  right: 4px;
6122
+ }
6123
+
6124
+ /* Freshdesk Newsletter */
6125
+ .fs-webform-container div .fserv-container {
6126
+ width: 100% !important;
6127
+ max-width: none !important;
6128
+ min-height: 208px !important;
6129
+ box-shadow: 0 1px 16px rgba(0, 0, 0, .034) !important;
6130
+ border-radius: 2px !important;
6131
+ padding: 0 !important;
6132
+ margin-bottom: 0 !important;
6133
+ margin-top: 30px !important;
6134
+ }
6135
+
6136
+ .fserv-container .fserv-form-name {
6137
+ font-weight: 600 !important;
6138
+ position: relative !important;
6139
+ font-size: 20px !important;
6140
+ padding: 20px !important;
6141
+ border-bottom: 1px solid #ededed !important;
6142
+ text-align: left !important;
6143
+ margin: 0 !important
6144
+ }
6145
+
6146
+ .fserv-form-description {
6147
+ padding: 10px 30px !important;
6148
+ margin: 1em 0 0 !important;
6149
+ line-height: 1.5 !important;
6150
+ font-size: 16px !important
6151
+ }
6152
+
6153
+ .fserv-container form {
6154
+ padding: 0 !important;
6155
+ padding-left: 28px !important;
6156
+ }
6157
+
6158
+ .fserv-container .fserv-label {
6159
+ display: none !important
6160
+ }
6161
+
6162
+ .fserv-field {
6163
+ display: inline-block;
6164
+ width: 41% !important;
6165
+ padding: 0 !important;
6166
+ margin: 0 !important;
6167
+ margin-right: 25px !important;
6168
+ }
6169
+
6170
+ .fserv-field+div:not(.fserv-field) {
6171
+ margin: 0 !important;
6172
+ border: none !important;
6173
+ text-align: left !important;
6174
+ padding-left: 4px !important;
6175
+ margin-top: 0 !important;
6176
+ padding-top: 0 !important;
6177
+ display: inline-block;
6178
+ margin-right: 10px !important;
6179
+ }
6180
+
6181
+ .fserv-container .powered-by {
6182
+ display: none !important
6183
+ }
6184
+
6185
+ button.fserv-button-submit {
6186
+ color: #fff !important;
6187
+ font-weight: 500 !important;
6188
+ border-radius: 2px !important;
6189
+ box-shadow: 0 3px 10px -4px #008aff !important;
6190
+ text-shadow: none !important;
6191
+ background: #008aff !important;
6192
+ background: linear-gradient(95deg, #36a2ff 0, #008aff 50%, #0072ff 100%) !important;
6193
+ border: none !important;
6194
+ transition: .24s !important
6195
+ }
6196
+
6197
+ button.fserv-button-submit:hover {
6198
+ background: #222 !important;
6199
+ background: linear-gradient(95deg, #555 0, #222 50%, #000 100%) !important;
6200
+ box-shadow: 0 5px 23px -7px rgba(0, 0, 0, .5) !important;
6201
+ cursor: pointer !important
6202
+ }
6203
+
6204
+ .fserv-container input::-webkit-input-placeholder {
6205
+ font-family: Inherit !important;
6206
+ font-size: 14px
6207
+ }
6208
+
6209
+ .fserv-container input::-moz-placeholder {
6210
+ font-family: Inherit !important;
6211
+ font-size: 14px
6212
+ }
6213
+
6214
+ .fserv-container input:-ms-input-placeholder {
6215
+ font-family: Inherit !important;
6216
+ font-size: 14px
6217
+ }
6218
+
6219
+ .fserv-container input:-moz-placeholder {
6220
+ font-family: Inherit !important;
6221
+ font-size: 14px
6222
+ }
6223
+
6224
+ input.fserv-input-text {
6225
+ height: 38px;
6226
+ box-sizing: border-box;
6227
+ margin-bottom: 8px;
6228
+ padding: 0 6px;
6229
+ box-shadow: none;
6230
+ border-radius: 2px;
6231
+ box-shadow: inset 0 1px 5px rgba(0, 0, 0, .05);
6232
+ }
6233
+ .fserv-field label.error {
6234
+ display: none !important;
6235
+ }
6236
+ .fs-notifier {
6237
+ position: fixed !important;
6238
+ top: 40px !important;
6239
+ width: 300px !important;
6240
+ max-width: 300px !important;
6241
+ margin: 0 !important;
6242
+ right: 20px !important;
6243
+ left: unset !important;
6244
  }
assets/css/backend.min.css CHANGED
@@ -1,5 +1,5 @@
1
- #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;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:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.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}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;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-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;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 #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.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)}.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:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{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-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}
1
+ #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:40px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:18px;position:absolute;margin-top:0;margin-left:-4px}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}@media(max-width:480px){a.dpr-btn.dpr-save-btn{display:block!important;text-align:center!important;margin-top:20px!important}.mec-search-settings-wrap{margin-top:73px!important;text-align:center!important;display:block!important}#mec-search-settings{margin:0!important;width:100%!important}.wns-be-container #wns-be-infobar{height:auto!important}}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-tooltip .dashicons-before:before{font-size:24px;color:#40d9f1;line-height:37px}.mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 16px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect .31s}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0;margin-left:12px}to{opacity:1;margin-left:0}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-form-row select{min-width:50px}.ui-datepicker select{min-width:60px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=number],.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select,.mec-form-row .mec-col-4 textarea{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:32px;padding-left:12px;margin-top:5px;color:#555}.mec-form-row .description code{font-style:normal}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 4px rgba(1,138,255,.3) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form,#payment_gateways_option li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:15px;font-weight:600;padding:25px 30px;cursor:pointer;background-color:#fff;border:none;border-bottom:1px solid #e6e6e6;margin:0;letter-spacing:.5px;position:relative}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%);box-shadow:0 3px 11px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #008aff}.mec-switcher input:checked+label:before{background-color:#008aff;background:linear-gradient(95deg,#4dacfd 0,#0d90ff 50%,#008aff 100%)}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;margin:3px;border-radius:2px;border:3px solid transparent;transition:all .2s ease}.mec-image-select-wrap li input:checked+span{border-color:#fff;box-shadow:0 0 14px rgba(0,0,0,.25)}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.m-e-calendar_page_MEC-ix #wpwrap .mec-button-primary.mec-btn-2{margin:0 0 0 12px}.m-e-calendar_page_MEC-ix #wpwrap input[type=file]{padding-top:12px;padding-bottom:12px}.m-e-calendar_page_MEC-ix #wpwrap .mec-form-row select{min-height:46px}.mec-image-select-wrap .mec-colorskin-1{background-color:#40d9f1}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}h5.mec-form-second-title{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #ff4b64;border-radius:20px;padding:0 0 0 1px;color:#ff4b64;width:11px;height:12px;text-align:center;line-height:12px;display:inline-block;margin-right:-5px;margin-left:6px}div#mec_not_in_days_row2:hover{border-color:#e2e2e2!important;box-shadow:none!important}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;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:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.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}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container input[type=text]{margin-right:2px}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;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-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;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 #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.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)}.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:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;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-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}
assets/css/frontend.css CHANGED
@@ -1096,9 +1096,10 @@
1096
  font-size: 18px;
1097
  text-transform: uppercase;
1098
  letter-spacing: 0;
1099
- padding-top: 5px;
1100
  }
1101
 
 
1102
  .mec-event-list-minimal .mec-event-detail {
1103
  font-size: 15px;
1104
  font-weight: 300;
@@ -1257,6 +1258,10 @@
1257
  color: #8a8a8a;
1258
  }
1259
 
 
 
 
 
1260
  .mec-event-list-modern .mec-event-date .event-da {
1261
  margin-top: 9px;
1262
  color: #c0c0c0;
@@ -1479,13 +1484,24 @@
1479
  margin-right: 20px;
1480
  }
1481
 
1482
- .mec-event-list-classic .mec-event-date {
 
1483
  font-weight: 400;
1484
  font-size: 13px;
1485
  letter-spacing: 0;
1486
  line-height: 18px;
 
 
 
1487
  }
1488
 
 
 
 
 
 
 
 
1489
  .mec-event-list-classic .mec-event-date span {
1490
  font-weight: 500;
1491
  margin-bottom: 6px;
@@ -9239,7 +9255,8 @@ body .featherlight .featherlight-close-icon:hover {
9239
  margin-right: 8px;
9240
  }
9241
 
9242
- .mec-toggle-item-col .mec-event-month {
 
9243
  text-transform: uppercase;
9244
  font-size: 12px;
9245
  line-height: 14px;
1096
  font-size: 18px;
1097
  text-transform: uppercase;
1098
  letter-spacing: 0;
1099
+ padding-top: 10px;
1100
  }
1101
 
1102
+ .mec-event-list-minimal .mec-time-details,
1103
  .mec-event-list-minimal .mec-event-detail {
1104
  font-size: 15px;
1105
  font-weight: 300;
1258
  color: #8a8a8a;
1259
  }
1260
 
1261
+ .mec-event-list-modern .mec-event-detail .mec-time-details {
1262
+ display: inline;
1263
+ }
1264
+
1265
  .mec-event-list-modern .mec-event-date .event-da {
1266
  margin-top: 9px;
1267
  color: #c0c0c0;
1484
  margin-right: 20px;
1485
  }
1486
 
1487
+ .mec-event-list-classic .mec-event-date,
1488
+ .mec-event-list-classic .mec-event-time {
1489
  font-weight: 400;
1490
  font-size: 13px;
1491
  letter-spacing: 0;
1492
  line-height: 18px;
1493
+ text-align: left;
1494
+ display: initial;
1495
+ margin-right: 12px;
1496
  }
1497
 
1498
+ .mec-event-list-classic .mec-event-time .mec-time-details,
1499
+ .mec-event-list-classic .mec-event-time i {
1500
+ display: inline;
1501
+ margin-right: 3px;
1502
+ }
1503
+
1504
+
1505
  .mec-event-list-classic .mec-event-date span {
1506
  font-weight: 500;
1507
  margin-bottom: 6px;
9255
  margin-right: 8px;
9256
  }
9257
 
9258
+ .mec-toggle-item-col .mec-event-month,
9259
+ .mec-toggle-item-col .mec-time-details {
9260
  text-transform: uppercase;
9261
  font-size: 12px;
9262
  line-height: 14px;
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),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li: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 .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@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}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding: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:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-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 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}.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:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.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}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{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{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_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{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 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)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);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:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.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{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}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){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@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-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{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:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left: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-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;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-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-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;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-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],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-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_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}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_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_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#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_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_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_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_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_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)}}#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_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_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-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}
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),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block!important}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li: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 .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top: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-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.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-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@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}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding: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:6px;font-size:14px;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-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 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}.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:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.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}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{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{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_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{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 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)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);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:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.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{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}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){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@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-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:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left: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-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;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-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-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;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-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],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-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_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}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_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_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#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_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_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_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_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_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)}}#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_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_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-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}
assets/js/backend.js CHANGED
@@ -396,10 +396,14 @@ function mec_skin_toggle()
396
  jQuery('#mec_skin_'+skin+'_style').trigger('change');
397
  }
398
 
399
- function mec_skin_style_changed(skin, style)
400
  {
401
  jQuery('.mec-skin-'+skin+'-date-format-container').hide();
402
  jQuery('#mec_skin_'+skin+'_date_format_'+style+'_container').show();
 
 
 
 
403
  }
404
 
405
  function mec_show_widget_check(context)
396
  jQuery('#mec_skin_'+skin+'_style').trigger('change');
397
  }
398
 
399
+ function mec_skin_style_changed(skin, style, context)
400
  {
401
  jQuery('.mec-skin-'+skin+'-date-format-container').hide();
402
  jQuery('#mec_skin_'+skin+'_date_format_'+style+'_container').show();
403
+
404
+ // Show Or Hide Include Events Time Switcher
405
+ if(style == 'classic' || style == 'minimal' || style == 'modern') jQuery(context).parent().parent().find('.mec-include-events-times').show();
406
+ else jQuery(context).parent().parent().find('.mec-include-events-times').hide();
407
  }
408
 
409
  function mec_show_widget_check(context)
assets/js/frontend.js CHANGED
@@ -3366,7 +3366,7 @@ function mec_focus_week(id) {
3366
  });
3367
 
3368
  // MEC FES export csv
3369
- $('.mec-event-export-csv').click(function()
3370
  {
3371
  var mec_event_id = $(this).parent().parent().data('event-id');
3372
  var booking_data = $(this).parent().parent().find('.mec-fes-btn-date .mec-certain-user-booking-ids').val();
@@ -3395,37 +3395,6 @@ function mec_focus_week(id) {
3395
  error: function () {}
3396
  });
3397
  });
3398
-
3399
- // MEC FES export msexcel
3400
- $('.mec-event-export-excel').click(function()
3401
- {
3402
- var mec_event_id = $(this).parent().parent().data('event-id');
3403
- var booking_data = $(this).parent().parent().find('.mec-fes-btn-date .mec-certain-user-booking-ids').val();
3404
- var certain_data = $(this).parent().parent().find('.fes-export-date-active').data('ids');
3405
-
3406
- if(typeof booking_data == 'undefined') booking_data = ',';
3407
- if(typeof certain_data != 'undefined') booking_data = certain_data;
3408
-
3409
- booking_data = booking_data.substr(0, booking_data.length -1);
3410
- $.ajax({
3411
- url: mecdata.ajax_url,
3412
- data: "action=mec_fes_msexcel_export&fes_nonce=" + mecdata.fes_nonce + "&mec_event_id=" + mec_event_id + "&booking_ids=" + booking_data,
3413
- dataType: 'json',
3414
- type: "post",
3415
- success: function (res) {
3416
- if(res.ex != 'error')
3417
- {
3418
- var $msexcel = $('<a>');
3419
- $msexcel.attr('href', res.ex);
3420
- $('body').append($msexcel);
3421
- $msexcel.attr('download', 'bookings-' + res.name + '.csv');
3422
- $msexcel[0].click();
3423
- $msexcel.remove();
3424
- }
3425
- },
3426
- error: function () {}
3427
- });
3428
- });
3429
  });
3430
  })(jQuery);
3431
 
3366
  });
3367
 
3368
  // MEC FES export csv
3369
+ $('.mec-event-export-csv, .mec-event-export-excel').click(function()
3370
  {
3371
  var mec_event_id = $(this).parent().parent().data('event-id');
3372
  var booking_data = $(this).parent().parent().find('.mec-fes-btn-date .mec-certain-user-booking-ids').val();
3395
  error: function () {}
3396
  });
3397
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3398
  });
3399
  })(jQuery);
3400
 
changelog.txt CHANGED
@@ -1,4 +1,23 @@
1
- v 4.7.7 - 30 October 2019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Compatibility: WordPress 5.2.4
3
  - Added: An option to manage waiting time before redirecting to Thank You Page (pro)
4
  - Added: Display the total amount of purchased tickets in confirmation email (pro)
1
+ v 4.8.0 - 12 November 2019
2
+ - Added: Import events from Event Espresso Plugin
3
+ - Added: Importevents from Events Manager Plugin
4
+ - Added: An option to show event start/end time in list skin
5
+ - Added: Thank you page for Front-end Event Submission
6
+ - Added: Event start/end date to notifications (pro)
7
+ - Added: Newsletter box in MEC dashboard and support page for subscription to MEC news
8
+ - Added: Premium support box in support page
9
+ - Added: Čeština (translated by Michal Spielmann)
10
+ - Added: French (translated by Jean Ghislain)
11
+ - Improved: MS Excel export (pro)
12
+ - Fixed: Week start in repeating tab for "Certain Weekdays" repeat
13
+ - Fixed: Multi-booking through multiple clicks on the Booking button (pro)
14
+ - Fixed: An empty page issue in category archive page
15
+ - Fixed: Event name in profile shortcode (pro)
16
+ - Fixed: Book date and Google Calendar link in notifications (pro)
17
+ - Fixed: Some PHP notices
18
+ - Fixed: Some minor issues
19
+
20
+ v 4.7.7 - 30 October 2019
21
  - Compatibility: WordPress 5.2.4
22
  - Added: An option to manage waiting time before redirecting to Thank You Page (pro)
23
  - Added: Display the total amount of purchased tickets in confirmation email (pro)
languages/modern-events-calendar-lite-cs_CZ.mo ADDED
Binary file
languages/modern-events-calendar-lite-cs_CZ.po ADDED
@@ -0,0 +1,7253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2019-11-12 12:55+0330\n"
5
+ "PO-Revision-Date: 2019-11-12 12:56+0330\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: cs_CZ\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
13
+ "X-Generator: Poedit 2.2\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: modern-events-calendar-lite.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
25
+ #: app/features/ix/import.php:37 app/features/ix/thirdparty.php:24
26
+ #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
27
+ msgid "Modern Events Calendar"
28
+ msgstr "Moderní kalendář událostí"
29
+
30
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:133
31
+ msgid "Content"
32
+ msgstr "Obsah"
33
+
34
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:368
35
+ #: app/features/mec.php:399 app/features/mec.php:429
36
+ msgid "Shortcode"
37
+ msgstr "Zkrácený kód"
38
+
39
+ #: app/addons/KC.php:78 app/addons/VC.php:73
40
+ msgid "Select from predefined shortcodes"
41
+ msgstr "Vyber z předdefinovaných zkrácených kódů"
42
+
43
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
44
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
45
+ msgid "MEC Shortcodes"
46
+ msgstr "MEC zkrácené kódy"
47
+
48
+ #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
49
+ msgid "Input your desired shortcode_id here."
50
+ msgstr "Zadejte zde požadovaný shortcode_id."
51
+
52
+ #: app/addons/elementor/shortcode.php:34
53
+ msgid "Modern Events Calendar (MEC)"
54
+ msgstr "Moderní kalendář událostí (MEC)"
55
+
56
+ #: app/addons/elementor/shortcode.php:78
57
+ msgid "General"
58
+ msgstr "Obecné"
59
+
60
+ #: app/addons/elementor/shortcode.php:87
61
+ msgid "Select Type"
62
+ msgstr "Vyberte typ"
63
+
64
+ #: app/features/colors.php:50 app/features/fes/form.php:796
65
+ #: app/features/mec/settings.php:656
66
+ msgid "Event Color"
67
+ msgstr "Barva události"
68
+
69
+ #: app/features/contextual.php:55 app/features/mec.php:348
70
+ #: app/features/mec/dashboard.php:134 app/features/mec/support-page.php:194
71
+ #: app/features/mec/support.php:20 app/libraries/main.php:588
72
+ msgid "Settings"
73
+ msgstr "Nastavení"
74
+
75
+ #: app/features/contextual.php:62 app/features/events.php:2415
76
+ #: app/features/mec/booking.php:439 app/features/mec/support.php:29
77
+ #: app/libraries/main.php:554
78
+ msgid "Booking Form"
79
+ msgstr "Rezervační formulář"
80
+
81
+ #: app/features/contextual.php:63
82
+ msgid ""
83
+ "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
84
+ " <strong>Build your booking registration form ( This "
85
+ "form will be repeat for all attendees ).</strong> <iframe "
86
+ "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
87
+ "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
88
+ msgstr ""
89
+ "<h2 class=\"dark-text\">Rezervační formulář<hr></h2>\n"
90
+ " <strong>Vytvořte si registrační formulář rezervací "
91
+ "(tento formulář bude opakován pro všechny účastníky).</"
92
+ "strong> <iframe width=\"600\" height=\"300\" src=\"https://"
93
+ "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
94
+ "iframe>"
95
+
96
+ #: app/features/contextual.php:70 app/features/mec/booking.php:557
97
+ #: app/features/mec/support.php:36 app/libraries/main.php:555
98
+ msgid "Payment Gateways"
99
+ msgstr "Platební brány"
100
+
101
+ #: app/features/contextual.php:71
102
+ msgid ""
103
+ "<h2 class=\"dark-text\">Payment Gateways <hr></h2><iframe width=\"600\" "
104
+ "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
105
+ "\"0\" allowfullscreen></iframe>"
106
+ msgstr ""
107
+ "<h2 class=\"dark-text\">Platební brány <hr></h2><iframe width=\"600\" height="
108
+ "\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
109
+ "allowfullscreen></iframe>"
110
+
111
+ #: app/features/contextual.php:77 app/features/mec/support.php:45
112
+ #: app/libraries/main.php:736
113
+ msgid "Notifications"
114
+ msgstr "Upozornění"
115
+
116
+ #: app/features/contextual.php:78
117
+ msgid ""
118
+ "<h2 class=\"dark-text\">Notifications <hr></h2><strong>You can edit your "
119
+ "messages in there.</strong><strong>Mec Notificatoin Module</strong><iframe "
120
+ "width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
121
+ "ZAA8zVewOj0\" frameborder=\"0\" allowfullscreen></iframe>"
122
+ msgstr ""
123
+ "<h2 class=\"dark-text\">Upozornění <hr></h2><strong>Zde můžete upravovat své "
124
+ "zprávy.</strong><strong>Mec Upozorňovací Modul</strong><iframe width=\"600\" "
125
+ "height=\"300\" src=\"https://www.youtube.com/embed/ZAA8zVewOj0\" frameborder="
126
+ "\"0\" allowfullscreen></iframe>"
127
+
128
+ #: app/features/contextual.php:88 app/features/ix/export.php:10
129
+ #: app/features/ix/export_g_calendar.php:14 app/features/ix/import.php:10
130
+ #: app/features/ix/import_f_calendar.php:10
131
+ #: app/features/ix/import_g_calendar.php:10
132
+ #: app/features/ix/import_meetup.php:10 app/features/ix/sync.php:10
133
+ #: app/features/ix/thirdparty.php:10
134
+ msgid "Google Cal. Import"
135
+ msgstr "Google kal. Import"
136
+
137
+ #: app/features/contextual.php:89
138
+ msgid ""
139
+ "<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
140
+ "title2\"><strong>Google Cal. Import:</strong></div><iframe width=\"854\" "
141
+ "height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
142
+ "\"0\" allowfullscreen></iframe>"
143
+ msgstr ""
144
+ "<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
145
+ "title2\"><strong>Google kal. Import:</strong></div><iframe width=\"854\" "
146
+ "height=\"420\" src=\"https://www.youtube.com/embed/vxHC7NVbmuc\" frameborder="
147
+ "\"0\" allowfullscreen></iframe>"
148
+
149
+ #: app/features/contextual.php:95 app/features/ix/export.php:11
150
+ #: app/features/ix/export_g_calendar.php:15 app/features/ix/import.php:11
151
+ #: app/features/ix/import_f_calendar.php:11
152
+ #: app/features/ix/import_g_calendar.php:11
153
+ #: app/features/ix/import_meetup.php:11 app/features/ix/sync.php:11
154
+ #: app/features/ix/thirdparty.php:11
155
+ msgid "Google Cal. Export"
156
+ msgstr "Google kal. Export"
157
+
158
+ #: app/features/contextual.php:96
159
+ msgid ""
160
+ "<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
161
+ "title2\"><strong>Google Cal. Export:</strong></div><iframe width=\"854\" "
162
+ "height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
163
+ "\"0\" allowfullscreen></iframe>"
164
+ msgstr ""
165
+ "<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
166
+ "title2\"><strong>Google kal. Export:</strong></div><iframe width=\"854\" "
167
+ "height=\"420\" src=\"https://www.youtube.com/embed/DdeNazxbLyo\" frameborder="
168
+ "\"0\" allowfullscreen></iframe>"
169
+
170
+ #: app/features/contextual.php:102 app/features/ix/export.php:12
171
+ #: app/features/ix/export_g_calendar.php:16 app/features/ix/import.php:12
172
+ #: app/features/ix/import_f_calendar.php:12
173
+ #: app/features/ix/import_g_calendar.php:12
174
+ #: app/features/ix/import_meetup.php:12 app/features/ix/sync.php:12
175
+ #: app/features/ix/thirdparty.php:12
176
+ msgid "Facebook Cal. Import"
177
+ msgstr "Facebook kal. Import"
178
+
179
+ #: app/features/contextual.php:103
180
+ msgid ""
181
+ "<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
182
+ "title2\"><strong>Facebook Cal. Import:</strong></div><iframe width=\"854\" "
183
+ "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
184
+ "\"0\" allowfullscreen></iframe>"
185
+ msgstr ""
186
+ "<h2 class=\"dark-text\">Import/Export<hr></h2><div class=\"big-"
187
+ "title2\"><strong>Facebook kal. Import:</strong></div><iframe width=\"854\" "
188
+ "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
189
+ "\"0\" allowfullscreen></iframe>"
190
+
191
+ #: app/features/contextual.php:117 app/features/mec/settings.php:73
192
+ #: app/libraries/main.php:528
193
+ msgid "General Options"
194
+ msgstr "Obecné možnosti"
195
+
196
+ #: app/features/contextual.php:139 app/features/mec/settings.php:405
197
+ #: app/libraries/main.php:530
198
+ msgid "Slugs/Permalinks"
199
+ msgstr "Název v URL / Trvalé odkazy"
200
+
201
+ #: app/features/contextual.php:152
202
+ msgid "Event Details/Single Event Page"
203
+ msgstr "Podrobnosti o události / Stránka jedné události"
204
+
205
+ #: app/features/contextual.php:166 app/features/mec/settings.php:437
206
+ #: app/libraries/main.php:531
207
+ msgid "Currency Options"
208
+ msgstr "Možnosti Měna"
209
+
210
+ #: app/features/contextual.php:182 app/features/mec/modules.php:67
211
+ #: app/features/mec/modules.php:85 app/libraries/main.php:560
212
+ msgid "Google Maps Options"
213
+ msgstr "Možnosti Google Maps"
214
+
215
+ #: app/features/contextual.php:244 app/features/mec/settings.php:494
216
+ #: app/libraries/main.php:532
217
+ msgid "Google Recaptcha Options"
218
+ msgstr "Možnosti Google Recaptcha"
219
+
220
+ #: app/features/contextual.php:258 app/features/mec/single.php:133
221
+ #: app/libraries/main.php:542
222
+ msgid "Countdown Options"
223
+ msgstr "Možnosti Odpočítávání"
224
+
225
+ #: app/features/contextual.php:268 app/features/mec/modules.php:263
226
+ #: app/libraries/main.php:565
227
+ msgid "Social Networks"
228
+ msgstr "Sociální sítě"
229
+
230
+ #: app/features/contextual.php:278
231
+ msgid "Next Event Module"
232
+ msgstr "Modul Další události"
233
+
234
+ #: app/features/contextual.php:286 app/features/mec/settings.php:530
235
+ #: app/libraries/main.php:533
236
+ msgid "Frontend Event Submission"
237
+ msgstr "Předání události frontendu"
238
+
239
+ #: app/features/contextual.php:298 app/features/events.php:325
240
+ #: app/libraries/main.php:543
241
+ msgid "Exceptional Days"
242
+ msgstr "Výjimečné dny"
243
+
244
+ #: app/features/contextual.php:308 app/features/events.php:298
245
+ #: app/features/mec/booking.php:88 app/features/mec/notifications.php:35
246
+ #: app/libraries/main.php:550 app/libraries/main.php:571
247
+ #: app/libraries/main.php:653
248
+ msgid "Booking"
249
+ msgstr "Rezervace"
250
+
251
+ #: app/features/contextual.php:318 app/features/mec/booking.php:261
252
+ #: app/libraries/main.php:551
253
+ msgid "Coupons"
254
+ msgstr "Kupóny"
255
+
256
+ #: app/features/contextual.php:326 app/features/mec/modules.php:324
257
+ #: app/libraries/main.php:567
258
+ msgid "BuddyPress Integration"
259
+ msgstr "Integrace BuddyPress"
260
+
261
+ #: app/features/contextual.php:334 app/features/mec/settings.php:823
262
+ #: app/libraries/main.php:536
263
+ msgid "Mailchimp Integration"
264
+ msgstr "Integrace Mailchimp"
265
+
266
+ #: app/features/contextual.php:346
267
+ msgid "MEC Activation"
268
+ msgstr "Aktivace MEC"
269
+
270
+ #: app/features/events.php:150 app/features/ix/export.php:34
271
+ #: app/features/mec/dashboard.php:231 app/skins/daily_view/tpl.php:79
272
+ #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
273
+ msgid "Events"
274
+ msgstr "Události"
275
+
276
+ #: app/features/events.php:151 app/features/fes.php:223
277
+ #: app/features/mec/meta_boxes/display_options.php:933
278
+ #: app/features/mec/meta_boxes/display_options.php:989
279
+ #: app/features/mec/meta_boxes/display_options.php:1024
280
+ #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
281
+ #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
282
+ msgid "Event"
283
+ msgstr "Událost"
284
+
285
+ #: app/features/events.php:152 app/features/mec.php:334
286
+ msgid "Add Event"
287
+ msgstr "Přidat událost"
288
+
289
+ #: app/features/events.php:153 app/features/mec/dashboard.php:133
290
+ msgid "Add New Event"
291
+ msgstr "Přidat novou událost"
292
+
293
+ #: app/features/events.php:154 app/features/ix.php:3752
294
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
295
+ msgid "No events found!"
296
+ msgstr "Nebyly nalezeny žádné události!"
297
+
298
+ #: app/features/events.php:155
299
+ msgid "All Events"
300
+ msgstr "Všechny události"
301
+
302
+ #: app/features/events.php:156
303
+ msgid "Edit Event"
304
+ msgstr "Editace události"
305
+
306
+ #: app/features/events.php:157 app/features/fes/list.php:82
307
+ msgid "View Event"
308
+ msgstr "Zobrazit událost"
309
+
310
+ #: app/features/events.php:158
311
+ msgid "No events found in Trash!"
312
+ msgstr "V koši nebyly nalezeny žádné události!"
313
+
314
+ #: app/features/events.php:175 app/features/events.php:3241
315
+ #: app/features/mec/meta_boxes/display_options.php:844
316
+ #: app/features/mec/meta_boxes/search_form.php:31
317
+ #: app/features/mec/meta_boxes/search_form.php:93
318
+ #: app/features/mec/meta_boxes/search_form.php:155
319
+ #: app/features/mec/meta_boxes/search_form.php:216
320
+ #: app/features/mec/meta_boxes/search_form.php:277
321
+ #: app/features/mec/meta_boxes/search_form.php:338
322
+ #: app/features/mec/meta_boxes/search_form.php:399
323
+ #: app/features/mec/meta_boxes/search_form.php:453
324
+ #: app/features/mec/meta_boxes/search_form.php:514
325
+ #: app/features/mec/meta_boxes/search_form.php:575
326
+ #: app/features/mec/settings.php:776 app/features/mec/single.php:204
327
+ #: app/features/search.php:67 app/libraries/main.php:4917
328
+ #: app/libraries/skins.php:809 app/skins/single.php:561
329
+ #: app/skins/single/default.php:185 app/skins/single/default.php:397
330
+ #: app/skins/single/m1.php:170 app/skins/single/m2.php:102
331
+ #: app/skins/single/modern.php:110
332
+ msgid "Category"
333
+ msgstr "Kategorie"
334
+
335
+ #: app/features/events.php:176 app/features/events.php:3212
336
+ #: app/features/fes/form.php:746 app/features/mec.php:336
337
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:4916
338
+ msgid "Categories"
339
+ msgstr "Kategorie"
340
+
341
+ #: app/features/events.php:186 app/features/labels.php:71
342
+ #: app/features/locations.php:69 app/features/organizers.php:69
343
+ #: app/features/speakers.php:72
344
+ #, php-format
345
+ msgid "All %s"
346
+ msgstr "Všechny %s"
347
+
348
+ #: app/features/events.php:187 app/features/labels.php:72
349
+ #: app/features/locations.php:70 app/features/organizers.php:70
350
+ #: app/features/speakers.php:73
351
+ #, php-format
352
+ msgid "Edit %s"
353
+ msgstr "Editovat %s"
354
+
355
+ #: app/features/events.php:188 app/features/labels.php:73
356
+ #: app/features/locations.php:71 app/features/organizers.php:71
357
+ #: app/features/speakers.php:74
358
+ #, php-format
359
+ msgid "View %s"
360
+ msgstr "Zobrazit %s"
361
+
362
+ #: app/features/events.php:189 app/features/labels.php:74
363
+ #: app/features/locations.php:72 app/features/organizers.php:72
364
+ #: app/features/speakers.php:75
365
+ #, php-format
366
+ msgid "Update %s"
367
+ msgstr "Aktualizovat %s"
368
+
369
+ #: app/features/events.php:190 app/features/labels.php:75
370
+ #: app/features/locations.php:73 app/features/organizers.php:73
371
+ #: app/features/speakers.php:76
372
+ #, php-format
373
+ msgid "Add New %s"
374
+ msgstr "Přidat novou %s"
375
+
376
+ #: app/features/events.php:191 app/features/labels.php:76
377
+ #: app/features/locations.php:74 app/features/organizers.php:74
378
+ #: app/features/speakers.php:77
379
+ #, php-format
380
+ msgid "New %s Name"
381
+ msgstr "Nové jméno %s"
382
+
383
+ #: app/features/events.php:192 app/features/labels.php:77
384
+ #: app/features/locations.php:75 app/features/organizers.php:75
385
+ #: app/features/speakers.php:78
386
+ #, php-format
387
+ msgid "Popular %s"
388
+ msgstr "Populární %s"
389
+
390
+ #: app/features/events.php:193 app/features/labels.php:78
391
+ #: app/features/locations.php:76 app/features/organizers.php:76
392
+ #: app/features/speakers.php:79
393
+ #, php-format
394
+ msgid "Search %s"
395
+ msgstr "Vyhledat %s"
396
+
397
+ #: app/features/events.php:218 app/features/events.php:239
398
+ msgid "Category Icon"
399
+ msgstr "Ikona kategorie"
400
+
401
+ #: app/features/events.php:221 app/features/events.php:244
402
+ msgid "Select icon"
403
+ msgstr "Vybrat ikonu"
404
+
405
+ #: app/features/events.php:293
406
+ msgid "Event Details"
407
+ msgstr "Podrobnosti události"
408
+
409
+ #: app/features/events.php:322
410
+ #, fuzzy
411
+ #| msgid "Event Details"
412
+ msgid "FES Details"
413
+ msgstr "Podrobnosti události"
414
+
415
+ #: app/features/events.php:323
416
+ #, fuzzy
417
+ #| msgid "Date and Time"
418
+ msgid "Date And Time"
419
+ msgstr "Datum a čas"
420
+
421
+ #: app/features/events.php:324 app/features/fes/form.php:342
422
+ msgid "Event Repeating"
423
+ msgstr "Opakování události"
424
+
425
+ #: app/features/events.php:326 app/features/events.php:1271
426
+ #: app/features/mec/settings.php:686 app/skins/single.php:932
427
+ msgid "Hourly Schedule"
428
+ msgstr "Hodinový rozvrh"
429
+
430
+ #: app/features/events.php:327
431
+ #, fuzzy
432
+ #| msgid "Location"
433
+ msgid "Location/Venue"
434
+ msgstr "Umístění"
435
+
436
+ #: app/features/events.php:328
437
+ #, fuzzy
438
+ #| msgid "Link"
439
+ msgid "Links"
440
+ msgstr "Odkaz"
441
+
442
+ #: app/features/events.php:329 app/features/events.php:3243
443
+ #: app/features/events.php:3434 app/features/events.php:3476
444
+ #: app/features/ix.php:3373 app/features/ix.php:3414
445
+ #: app/features/mec/meta_boxes/display_options.php:847
446
+ #: app/features/mec/meta_boxes/search_form.php:45
447
+ #: app/features/mec/meta_boxes/search_form.php:107
448
+ #: app/features/mec/meta_boxes/search_form.php:169
449
+ #: app/features/mec/meta_boxes/search_form.php:230
450
+ #: app/features/mec/meta_boxes/search_form.php:291
451
+ #: app/features/mec/meta_boxes/search_form.php:352
452
+ #: app/features/mec/meta_boxes/search_form.php:413
453
+ #: app/features/mec/meta_boxes/search_form.php:467
454
+ #: app/features/mec/meta_boxes/search_form.php:528
455
+ #: app/features/mec/meta_boxes/search_form.php:589
456
+ #: app/features/mec/settings.php:788 app/features/mec/single.php:208
457
+ #: app/features/organizers.php:58 app/features/organizers.php:204
458
+ #: app/features/organizers.php:260 app/features/organizers.php:262
459
+ #: app/features/organizers.php:271 app/features/search.php:75
460
+ #: app/libraries/main.php:4923 app/libraries/skins.php:861
461
+ #: app/skins/single.php:797 app/skins/single/default.php:210
462
+ #: app/skins/single/default.php:422 app/skins/single/m1.php:90
463
+ #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
464
+ msgid "Organizer"
465
+ msgstr "Organizátor"
466
+
467
+ #: app/features/events.php:330 app/features/events.php:1157
468
+ #: app/features/fes/form.php:719 app/libraries/main.php:4950
469
+ #: app/skins/single.php:584 app/skins/single/default.php:119
470
+ #: app/skins/single/default.php:331 app/skins/single/m1.php:49
471
+ #: app/skins/single/modern.php:199
472
+ msgid "Cost"
473
+ msgstr "Cena"
474
+
475
+ #: app/features/events.php:467
476
+ msgid "Note for reviewer"
477
+ msgstr "Poznámka pro recenzenta"
478
+
479
+ #: app/features/events.php:473
480
+ msgid "Guest Data"
481
+ msgstr "Údaje hosta"
482
+
483
+ #: app/features/events.php:474 app/features/events.php:2397
484
+ #: app/features/fes.php:223 app/features/fes/form.php:678
485
+ #: app/features/labels.php:178 app/features/mec/booking.php:45
486
+ #: app/features/organizers.php:279 app/features/profile/profile.php:180
487
+ #: app/libraries/notifications.php:910 app/modules/booking/steps/form.php:37
488
+ msgid "Name"
489
+ msgstr "Jméno"
490
+
491
+ #: app/features/events.php:475 app/features/events.php:2408
492
+ #: app/features/events.php:2484 app/features/fes.php:223
493
+ #: app/features/fes/form.php:674 app/features/mec/booking.php:57
494
+ #: app/features/mec/booking.php:490 app/features/organizers.php:111
495
+ #: app/features/organizers.php:152 app/features/profile/profile.php:183
496
+ #: app/features/speakers.php:126 app/features/speakers.php:187
497
+ #: app/libraries/main.php:1472 app/libraries/main.php:1541
498
+ #: app/libraries/main.php:2603 app/libraries/notifications.php:911
499
+ #: app/modules/booking/steps/form.php:46 app/modules/booking/steps/form.php:84
500
+ #: app/skins/single.php:814 app/skins/single.php:869
501
+ #: app/skins/single/default.php:227 app/skins/single/default.php:439
502
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
503
+ #: app/skins/single/modern.php:48
504
+ msgid "Email"
505
+ msgstr "Email"
506
+
507
+ #: app/features/events.php:483 app/features/fes/form.php:242
508
+ msgid "Date and Time"
509
+ msgstr "Datum a čas"
510
+
511
+ #: app/features/events.php:486 app/features/events.php:492
512
+ #: app/features/events.php:3244 app/features/events.php:3434
513
+ #: app/features/events.php:3476 app/features/fes/form.php:246
514
+ #: app/features/fes/form.php:250 app/features/ix.php:3373
515
+ #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
516
+ #: app/features/mec/dashboard.php:375
517
+ #: app/features/mec/meta_boxes/display_options.php:48
518
+ #: app/features/mec/meta_boxes/display_options.php:201
519
+ #: app/features/mec/meta_boxes/display_options.php:353
520
+ #: app/features/mec/meta_boxes/display_options.php:408
521
+ #: app/features/mec/meta_boxes/display_options.php:531
522
+ #: app/features/mec/meta_boxes/display_options.php:585
523
+ #: app/features/mec/meta_boxes/display_options.php:632
524
+ #: app/features/mec/meta_boxes/display_options.php:665
525
+ #: app/features/mec/meta_boxes/display_options.php:700
526
+ #: app/features/mec/meta_boxes/display_options.php:746
527
+ #: app/features/mec/meta_boxes/display_options.php:812
528
+ #: app/features/mec/meta_boxes/display_options.php:1047
529
+ #: app/features/mec/meta_boxes/display_options.php:1134
530
+ msgid "Start Date"
531
+ msgstr "Počátečná den"
532
+
533
+ #: app/features/events.php:564 app/features/events.php:656
534
+ #: app/features/events.php:1711 app/features/events.php:1770
535
+ #: app/features/events.php:1943 app/features/events.php:1982
536
+ #: app/features/fes/form.php:278 app/features/fes/form.php:318
537
+ msgid "AM"
538
+ msgstr "dop."
539
+
540
+ #: app/features/events.php:571 app/features/events.php:663
541
+ #: app/features/events.php:1718 app/features/events.php:1777
542
+ #: app/features/events.php:1944 app/features/events.php:1983
543
+ #: app/features/fes/form.php:279 app/features/fes/form.php:319
544
+ msgid "PM"
545
+ msgstr "odp."
546
+
547
+ #: app/features/events.php:578 app/features/events.php:583
548
+ #: app/features/events.php:3245 app/features/events.php:3434
549
+ #: app/features/events.php:3476 app/features/fes/form.php:286
550
+ #: app/features/fes/form.php:290 app/features/ix.php:3373
551
+ #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
552
+ #: app/features/mec/dashboard.php:376
553
+ msgid "End Date"
554
+ msgstr "Konečný den"
555
+
556
+ #: app/features/events.php:677 app/features/fes/form.php:325
557
+ msgid "All Day Event"
558
+ msgstr "Celodenní událost"
559
+
560
+ #: app/features/events.php:687 app/features/fes/form.php:328
561
+ msgid "Hide Event Time"
562
+ msgstr "Skrýt čas události"
563
+
564
+ #: app/features/events.php:697 app/features/fes/form.php:331
565
+ msgid "Hide Event End Time"
566
+ msgstr "Skrýt čas ukončení události"
567
+
568
+ #: app/features/events.php:702 app/features/events.php:706
569
+ #: app/features/fes/form.php:335
570
+ msgid "Time Comment"
571
+ msgstr "Časový komentář"
572
+
573
+ #: app/features/events.php:707 app/features/fes/form.php:336
574
+ msgid ""
575
+ "It shows next to event time on single event page. You can insert Timezone "
576
+ "etc. in this field."
577
+ msgstr ""
578
+ "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
579
+ "můžete vložit časové pásmo atd."
580
+
581
+ #: app/features/events.php:709 app/features/events.php:830
582
+ #: app/features/events.php:1130 app/features/events.php:1197
583
+ #: app/features/events.php:1496 app/features/events.php:1588
584
+ #: app/features/events.php:1799 app/features/events.php:1814
585
+ #: app/features/events.php:2002 app/features/events.php:2015
586
+ #: app/features/events.php:2145 app/features/events.php:2181
587
+ #: app/features/events.php:2279 app/features/events.php:2294
588
+ #: app/features/events.php:2324 app/features/events.php:2337
589
+ #: app/features/fes/form.php:640 app/features/locations.php:299
590
+ #: app/features/mec/booking.php:108 app/features/mec/booking.php:158
591
+ #: app/features/mec/booking.php:171 app/features/mec/booking.php:187
592
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
593
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
594
+ #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
595
+ #: app/features/mec/dashboard.php:71
596
+ #: app/features/mec/meta_boxes/display_options.php:66
597
+ #: app/features/mec/meta_boxes/display_options.php:79
598
+ #: app/features/mec/meta_boxes/display_options.php:92
599
+ #: app/features/mec/meta_boxes/display_options.php:103
600
+ #: app/features/mec/meta_boxes/display_options.php:115
601
+ #: app/features/mec/meta_boxes/display_options.php:219
602
+ #: app/features/mec/meta_boxes/display_options.php:231
603
+ #: app/features/mec/meta_boxes/display_options.php:243
604
+ #: app/features/mec/meta_boxes/display_options.php:256
605
+ #: app/features/mec/meta_boxes/display_options.php:267
606
+ #: app/features/mec/meta_boxes/display_options.php:280
607
+ #: app/features/mec/meta_boxes/display_options.php:291
608
+ #: app/features/mec/meta_boxes/display_options.php:372
609
+ #: app/features/mec/meta_boxes/display_options.php:548
610
+ #: app/features/mec/meta_boxes/display_options.php:831
611
+ #: app/features/mec/meta_boxes/display_options.php:904
612
+ #: app/features/mec/meta_boxes/display_options.php:916
613
+ #: app/features/mec/meta_boxes/display_options.php:927
614
+ #: app/features/mec/meta_boxes/display_options.php:959
615
+ #: app/features/mec/meta_boxes/display_options.php:970
616
+ #: app/features/mec/meta_boxes/display_options.php:983
617
+ #: app/features/mec/meta_boxes/display_options.php:1018
618
+ #: app/features/mec/meta_boxes/display_options.php:1067
619
+ #: app/features/mec/meta_boxes/display_options.php:1078
620
+ #: app/features/mec/meta_boxes/display_options.php:1089
621
+ #: app/features/mec/meta_boxes/display_options.php:1154
622
+ #: app/features/mec/meta_boxes/display_options.php:1167
623
+ #: app/features/mec/meta_boxes/display_options.php:1180
624
+ #: app/features/mec/meta_boxes/display_options.php:1193
625
+ #: app/features/mec/meta_boxes/display_options.php:1206
626
+ #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
627
+ #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
628
+ #: app/features/mec/modules.php:154 app/features/mec/modules.php:312
629
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:113
630
+ #: app/features/mec/notifications.php:167
631
+ #: app/features/mec/notifications.php:229
632
+ #: app/features/mec/notifications.php:297
633
+ #: app/features/mec/notifications.php:360
634
+ #: app/features/mec/notifications.php:371
635
+ #: app/features/mec/notifications.php:433
636
+ #: app/features/mec/notifications.php:481 app/features/mec/settings.php:87
637
+ #: app/features/mec/settings.php:106 app/features/mec/settings.php:133
638
+ #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
639
+ #: app/features/mec/settings.php:209 app/features/mec/settings.php:286
640
+ #: app/features/mec/settings.php:360 app/features/mec/settings.php:377
641
+ #: app/features/mec/settings.php:394 app/features/mec/settings.php:413
642
+ #: app/features/mec/settings.php:427 app/features/mec/settings.php:455
643
+ #: app/features/mec/settings.php:542 app/features/mec/settings.php:715
644
+ #: app/features/mec/settings.php:731 app/features/mec/settings.php:838
645
+ #: app/features/mec/settings.php:851 app/features/mec/settings.php:867
646
+ #: app/features/mec/single.php:42 app/features/mec/single.php:58
647
+ #: app/features/mec/single.php:77 app/features/mec/single.php:94
648
+ #: app/features/mec/single.php:110 app/features/mec/single.php:124
649
+ #: app/features/mec/single.php:162 app/features/mec/styling.php:203
650
+ #: app/features/mec/styling.php:220 app/features/mec/styling.php:233
651
+ #: app/features/organizers.php:272 app/skins/single.php:659
652
+ #: app/skins/single/default.php:134 app/skins/single/default.php:346
653
+ #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
654
+ #: app/skins/single/modern.php:133
655
+ msgid "Read More"
656
+ msgstr "Číst více"
657
+
658
+ #: app/features/events.php:717
659
+ msgid "Repeating"
660
+ msgstr "Opakování"
661
+
662
+ #: app/features/events.php:726
663
+ msgid "Event Repeating (Recurring events)"
664
+ msgstr "Opakování události (opakující se události)"
665
+
666
+ #: app/features/events.php:730 app/features/fes/form.php:346
667
+ msgid "Repeats"
668
+ msgstr "Opakování"
669
+
670
+ #: app/features/events.php:738 app/features/fes/form.php:348
671
+ #: app/features/mec/dashboard.php:378
672
+ #: app/skins/default_full_calendar/tpl.php:69
673
+ #: app/skins/full_calendar/tpl.php:110
674
+ msgid "Daily"
675
+ msgstr "Děnně"
676
+
677
+ #: app/features/events.php:745 app/features/fes/form.php:349
678
+ msgid "Every Weekday"
679
+ msgstr "Každý všední den"
680
+
681
+ #: app/features/events.php:752 app/features/fes/form.php:350
682
+ msgid "Every Weekend"
683
+ msgstr "Každý víkend"
684
+
685
+ #: app/features/events.php:759 app/features/fes/form.php:351
686
+ msgid "Certain Weekdays"
687
+ msgstr "Určité pracovní dny"
688
+
689
+ #: app/features/events.php:766 app/features/fes/form.php:352
690
+ #: app/skins/default_full_calendar/tpl.php:68
691
+ #: app/skins/full_calendar/tpl.php:109
692
+ msgid "Weekly"
693
+ msgstr "Týdně"
694
+
695
+ #: app/features/events.php:773 app/features/fes/form.php:353
696
+ #: app/features/mec/dashboard.php:379
697
+ #: app/skins/default_full_calendar/tpl.php:67
698
+ #: app/skins/full_calendar/tpl.php:108
699
+ msgid "Monthly"
700
+ msgstr "Měsíčně"
701
+
702
+ #: app/features/events.php:780 app/features/fes/form.php:354
703
+ #: app/features/mec/dashboard.php:380
704
+ #: app/skins/default_full_calendar/tpl.php:66
705
+ #: app/skins/full_calendar/tpl.php:107
706
+ msgid "Yearly"
707
+ msgstr "Ročně"
708
+
709
+ #: app/features/events.php:787 app/features/fes/form.php:355
710
+ msgid "Custom Days"
711
+ msgstr "Vlastní dny"
712
+
713
+ #: app/features/events.php:794 app/features/fes/form.php:356
714
+ msgid "Advanced"
715
+ msgstr "Pokročilé"
716
+
717
+ #: app/features/events.php:799 app/features/fes/form.php:360
718
+ msgid "Repeat Interval"
719
+ msgstr "Interval opakování"
720
+
721
+ #: app/features/events.php:801 app/features/fes/form.php:361
722
+ msgid "Repeat interval"
723
+ msgstr "Interval opakování"
724
+
725
+ #: app/features/events.php:805 app/features/fes/form.php:364
726
+ msgid "Week Days"
727
+ msgstr "Dny v týdnu"
728
+
729
+ #: app/features/events.php:820 app/features/events.php:1862
730
+ #: app/features/events.php:1890 app/features/events.php:2049
731
+ #: app/features/fes/form.php:376 app/features/ix/import_f_calendar.php:42
732
+ #: app/features/ix/import_g_calendar.php:51
733
+ #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
734
+ msgid "Start"
735
+ msgstr "Začátek"
736
+
737
+ #: app/features/events.php:822 app/features/events.php:1866
738
+ #: app/features/events.php:1894 app/features/events.php:2053
739
+ #: app/features/fes/form.php:377
740
+ msgid "End"
741
+ msgstr "Konec"
742
+
743
+ #: app/features/events.php:824 app/features/events.php:1191
744
+ #: app/features/events.php:1302 app/features/events.php:1407
745
+ #: app/features/events.php:1646 app/features/events.php:1845
746
+ #: app/features/events.php:2038 app/features/events.php:2118
747
+ #: app/features/events.php:2251 app/features/fes/form.php:378
748
+ #: app/features/fes/form.php:844
749
+ msgid "Add"
750
+ msgstr "Přidat"
751
+
752
+ #: app/features/events.php:827
753
+ msgid "Custom Days Repeating"
754
+ msgstr "Opakování vlastních dnů"
755
+
756
+ #: app/features/events.php:828
757
+ msgid ""
758
+ "Add certain days to event occurrence dates. If you have single day event, "
759
+ "start and end date should be the same, If you have multiple day event the "
760
+ "start and end dates must be commensurate with the initial date."
761
+ msgstr ""
762
+ "Přidejte určité dny k datům výskytu událostí. Pokud máte jednodenní událost, "
763
+ "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
764
+ "datum zahájení a ukončení musí odpovídat počátečnímu datu."
765
+
766
+ #: app/features/events.php:864 app/features/fes/form.php:404
767
+ msgid "First"
768
+ msgstr "První"
769
+
770
+ #: app/features/events.php:906 app/features/fes/form.php:446
771
+ msgid "Second"
772
+ msgstr "Druhá"
773
+
774
+ #: app/features/events.php:948 app/features/fes/form.php:488
775
+ msgid "Third"
776
+ msgstr "Třetí"
777
+
778
+ #: app/features/events.php:990 app/features/fes/form.php:530
779
+ msgid "Fourth"
780
+ msgstr "Čtvrtá"
781
+
782
+ #: app/features/events.php:1032 app/features/fes/form.php:572
783
+ msgid "Last"
784
+ msgstr "Poslední"
785
+
786
+ #: app/features/events.php:1079 app/features/fes/form.php:618
787
+ msgid "Ends Repeat"
788
+ msgstr "Ukončení opakování"
789
+
790
+ #: app/features/events.php:1091 app/features/fes/form.php:622
791
+ msgid "Never"
792
+ msgstr "Nikdy"
793
+
794
+ # Možná Zapnuto
795
+ #: app/features/events.php:1103 app/features/fes/form.php:627
796
+ msgid "On"
797
+ msgstr "Na"
798
+
799
+ #: app/features/events.php:1119 app/features/fes/form.php:634
800
+ msgid "After"
801
+ msgstr "Po"
802
+
803
+ #: app/features/events.php:1123 app/features/events.php:1127
804
+ #: app/features/fes/form.php:636 app/features/fes/form.php:639
805
+ msgid "Occurrences times"
806
+ msgstr "Časy výskytu"
807
+
808
+ #: app/features/events.php:1128 app/features/fes/form.php:640
809
+ msgid ""
810
+ "The event will finish after certain repeats. For example if you set it to "
811
+ "10, the event will finish after 10 repeats."
812
+ msgstr ""
813
+ "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
814
+ "hodnotu 10, událost skončí po 10 opakováních."
815
+
816
+ #: app/features/events.php:1153 app/features/events.php:3434
817
+ #: app/features/events.php:3476 app/features/fes/form.php:716
818
+ #: app/features/ix.php:3373 app/features/ix.php:3414
819
+ #: app/features/mec/settings.php:632 app/libraries/main.php:4949
820
+ #: app/widgets/single.php:103
821
+ msgid "Event Cost"
822
+ msgstr "Cena události"
823
+
824
+ #: app/features/events.php:1178
825
+ msgid "Exceptional Days (Exclude Dates)"
826
+ msgstr "Výjimečné dny (vyjma dat)"
827
+
828
+ #: app/features/events.php:1184 app/features/events.php:1194
829
+ msgid "Exclude certain days"
830
+ msgstr "Vyloučit určité dny"
831
+
832
+ #: app/features/events.php:1189 app/features/events.php:2485
833
+ #: app/features/fes.php:223 app/features/mec/booking.php:491
834
+ #: app/features/profile/profile.php:53 app/libraries/main.php:2059
835
+ #: app/libraries/main.php:2661 app/modules/booking/steps/tickets.php:22
836
+ #: app/modules/next-event/details.php:90 app/skins/single.php:639
837
+ #: app/skins/single/default.php:83 app/skins/single/default.php:295
838
+ #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
839
+ msgid "Date"
840
+ msgstr "Datum"
841
+
842
+ #: app/features/events.php:1195
843
+ msgid ""
844
+ "Exclude certain days from event occurrence dates. Please note that you can "
845
+ "exclude only single day occurrences and you cannot exclude one day from "
846
+ "multiple day occurrences."
847
+ msgstr ""
848
+ "Vyloučit určité dny z dat výskytu událostí. Vezměte prosím na vědomí, že "
849
+ "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
850
+ "vícedenních výskytů."
851
+
852
+ #: app/features/events.php:1249 app/libraries/render.php:470
853
+ msgid "Day 1"
854
+ msgstr "Den 1"
855
+
856
+ #: app/features/events.php:1275
857
+ msgid "Add Day"
858
+ msgstr "Přidat den"
859
+
860
+ #: app/features/events.php:1276
861
+ msgid ""
862
+ "Add new days for schedule. For example if your event is multiple days, you "
863
+ "can add a different schedule for each day!"
864
+ msgstr ""
865
+ "Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
866
+ "pro každý den přidat jiný rozvrh!"
867
+
868
+ #: app/features/events.php:1283
869
+ #, php-format
870
+ msgid "Day %s"
871
+ msgstr "Den %s"
872
+
873
+ #: app/features/events.php:1287 app/features/events.php:1326
874
+ #: app/features/events.php:1361 app/features/events.php:1393
875
+ #: app/features/events.php:1422 app/features/events.php:2266
876
+ #: app/features/events.php:2313 app/features/events.php:3240
877
+ #: app/features/events.php:3434 app/features/events.php:3476
878
+ #: app/features/fes/form.php:235 app/features/ix.php:3373
879
+ #: app/features/ix.php:3414 app/features/mec/booking.php:375
880
+ #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
881
+ msgid "Title"
882
+ msgstr "Název"
883
+
884
+ #: app/features/events.php:1296 app/features/events.php:1333
885
+ #: app/features/events.php:1366 app/features/events.php:1401
886
+ #: app/features/events.php:1427 app/features/events.php:1838
887
+ #: app/features/events.php:1876 app/features/events.php:1902
888
+ #: app/features/events.php:2032 app/features/events.php:2059
889
+ #: app/features/events.php:2158 app/features/events.php:2194
890
+ #: app/features/events.php:2301 app/features/events.php:2343
891
+ #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
892
+ #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
893
+ #: app/libraries/main.php:2522 app/libraries/main.php:2552
894
+ #: app/libraries/main.php:2581 app/libraries/main.php:2611
895
+ #: app/libraries/main.php:2640 app/libraries/main.php:2669
896
+ #: app/libraries/main.php:2698 app/libraries/main.php:2727
897
+ #: app/libraries/main.php:2749 app/libraries/main.php:2780
898
+ #: app/libraries/main.php:2824 app/libraries/main.php:2868
899
+ #: app/libraries/main.php:2915 app/libraries/main.php:2954
900
+ msgid "Remove"
901
+ msgstr "Odstranit"
902
+
903
+ #: app/features/events.php:1303 app/features/events.php:1408
904
+ msgid "Add new hourly schedule row"
905
+ msgstr "Přidejte nový řádek rozvrhu hodin"
906
+
907
+ #: app/features/events.php:1318 app/features/events.php:1355
908
+ #: app/features/events.php:1417
909
+ msgid "From e.g. 8:15"
910
+ msgstr "Od např. 8:15"
911
+
912
+ #: app/features/events.php:1322 app/features/events.php:1358
913
+ #: app/features/events.php:1419
914
+ msgid "To e.g. 8:45"
915
+ msgstr "Do např. 8:45"
916
+
917
+ #: app/features/events.php:1330 app/features/events.php:1364
918
+ #: app/features/events.php:1425 app/features/events.php:1786
919
+ #: app/features/events.php:1991
920
+ msgid "Description"
921
+ msgstr "Popis"
922
+
923
+ #: app/features/events.php:1336 app/features/events.php:1369
924
+ #: app/features/events.php:1430 app/features/fes/form.php:840
925
+ #: app/features/mec.php:344 app/features/mec/modules.php:52
926
+ #: app/features/mec/settings.php:680 app/features/speakers.php:62
927
+ #: app/libraries/main.php:559 app/libraries/main.php:4924
928
+ #: app/modules/speakers/details.php:18
929
+ msgid "Speakers"
930
+ msgstr "Řečníci"
931
+
932
+ #: app/features/events.php:1389 app/features/events.php:1397
933
+ msgid "New Day"
934
+ msgstr "Nový den"
935
+
936
+ #: app/features/events.php:1461 app/features/fes/form.php:693
937
+ #: app/features/mec/settings.php:626
938
+ msgid "Event Links"
939
+ msgstr "Odkazy na událost"
940
+
941
+ #: app/features/events.php:1464 app/features/events.php:1470
942
+ #: app/features/fes/form.php:695 app/libraries/main.php:4947
943
+ msgid "Event Link"
944
+ msgstr "Odkaz na událost"
945
+
946
+ #: app/features/events.php:1467 app/features/events.php:1483
947
+ #: app/features/fes/form.php:696 app/features/fes/form.php:701
948
+ msgid "eg. http://yoursite.com/your-event"
949
+ msgstr "např. http://yoursite.com/vase-udalost"
950
+
951
+ #: app/features/events.php:1471
952
+ msgid ""
953
+ "If you fill it, it will be replaced instead of default event page link. "
954
+ "Insert full link including http(s):// - Also, if you use advertising URL, "
955
+ "can use URL Shortener"
956
+ msgstr ""
957
+ "Pokud ji vyplníte, nahradí se místo výchozího odkazu na stránku události. "
958
+ "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
959
+ "URL, můžete také použít zkracovač URL"
960
+
961
+ #: app/features/events.php:1473
962
+ msgid "URL Shortener"
963
+ msgstr "Zkracovač URL"
964
+
965
+ #: app/features/events.php:1480 app/features/events.php:1493
966
+ #: app/features/fes/form.php:700 app/libraries/main.php:4948
967
+ #: app/skins/single.php:658 app/skins/single/default.php:133
968
+ #: app/skins/single/default.php:345 app/skins/single/m1.php:191
969
+ #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
970
+ #: app/widgets/single.php:107
971
+ msgid "More Info"
972
+ msgstr "Více info"
973
+
974
+ #: app/features/events.php:1486 app/features/fes/form.php:702
975
+ msgid "More Information"
976
+ msgstr "Více informací"
977
+
978
+ #: app/features/events.php:1488 app/features/fes/form.php:704
979
+ msgid "Current Window"
980
+ msgstr "Aktuální okno"
981
+
982
+ #: app/features/events.php:1489 app/features/fes/form.php:705
983
+ msgid "New Window"
984
+ msgstr "Nové okno"
985
+
986
+ #: app/features/events.php:1494 app/features/fes/form.php:707
987
+ msgid ""
988
+ "If you fill it, it will be shown in event details page as an optional link. "
989
+ "Insert full link including http(s)://"
990
+ msgstr ""
991
+ "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
992
+ "o události. Vložte celý odkaz včetně http (s): //"
993
+
994
+ #: app/features/events.php:1569 app/features/events.php:1584
995
+ msgid "Total booking limits"
996
+ msgstr "Celkové limity rezervace"
997
+
998
+ #: app/features/events.php:1581 app/features/events.php:1835
999
+ #: app/features/events.php:2029 app/modules/booking/default.php:85
1000
+ #: app/modules/booking/steps/tickets.php:40
1001
+ #: app/skins/available_spot/tpl.php:159
1002
+ msgid "Unlimited"
1003
+ msgstr "Neomezené"
1004
+
1005
+ #: app/features/events.php:1587
1006
+ msgid ""
1007
+ "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1008
+ "limitation number."
1009
+ msgstr ""
1010
+ "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1011
+ "políčka a zadejte číslo omezení."
1012
+
1013
+ #: app/features/events.php:1589
1014
+ msgid "Read About A Booking System"
1015
+ msgstr "Přečtěte si o rezervačním systému"
1016
+
1017
+ #: app/features/events.php:1597
1018
+ msgid "100"
1019
+ msgstr "100"
1020
+
1021
+ #: app/features/events.php:1602
1022
+ msgid "Total user booking limits"
1023
+ msgstr "Celkové limity rezervace uživatelů"
1024
+
1025
+ #: app/features/events.php:1614 app/features/events.php:2107
1026
+ #: app/features/events.php:2239 app/features/events.php:2427
1027
+ msgid "Inherit from global options"
1028
+ msgstr "Zdědí z globálních možností"
1029
+
1030
+ #: app/features/events.php:1617
1031
+ msgid "12"
1032
+ msgstr "12"
1033
+
1034
+ #: app/features/events.php:1638 app/libraries/book.php:60
1035
+ #: app/libraries/main.php:4952 app/modules/booking/steps/tickets.php:40
1036
+ msgid "Tickets"
1037
+ msgstr "Vstupenky"
1038
+
1039
+ #: app/features/events.php:1641
1040
+ msgid ""
1041
+ "You're translating an event so MEC will use the original event for tickets "
1042
+ "and booking. You can only translate the ticket name and description. Please "
1043
+ "define exact tickets that you defined in the original event here."
1044
+ msgstr ""
1045
+ "Překládáte událost, takže MEC použije původní událost pro rezervace "
1046
+ "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1047
+ "definujte určité vstupenky, které jste definovali v původní události."
1048
+
1049
+ #: app/features/events.php:1660 app/features/events.php:1916
1050
+ msgid "Ticket Name"
1051
+ msgstr "Název vstupenky"
1052
+
1053
+ #: app/features/events.php:1665 app/features/events.php:1920
1054
+ #: app/features/events.php:3434 app/features/events.php:3476
1055
+ #: app/features/ix.php:3373 app/features/ix.php:3414
1056
+ msgid "Start Time"
1057
+ msgstr "Začátek"
1058
+
1059
+ #: app/features/events.php:1724 app/features/events.php:1950
1060
+ #: app/features/events.php:3434 app/features/events.php:3476
1061
+ #: app/features/ix.php:3373 app/features/ix.php:3414
1062
+ msgid "End Time"
1063
+ msgstr "Konec"
1064
+
1065
+ #: app/features/events.php:1792 app/features/events.php:1796
1066
+ #: app/features/events.php:1870 app/features/events.php:1897
1067
+ #: app/features/events.php:1996 app/features/events.php:1999
1068
+ #: app/features/events.php:2055 app/features/events.php:2272
1069
+ #: app/features/events.php:2276 app/features/events.php:2318
1070
+ #: app/features/events.php:2321 app/features/mec/booking.php:379
1071
+ #: app/features/mec/booking.php:382 app/features/mec/booking.php:411
1072
+ #: app/features/mec/booking.php:414
1073
+ msgid "Price"
1074
+ msgstr "Cena"
1075
+
1076
+ #: app/features/events.php:1797 app/features/events.php:2000
1077
+ msgid "Insert 0 for free ticket. Only numbers please."
1078
+ msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1079
+
1080
+ #: app/features/events.php:1806 app/features/events.php:1811
1081
+ #: app/features/events.php:2009 app/features/events.php:2012
1082
+ msgid "Price Label"
1083
+ msgstr "Cenový štítek"
1084
+
1085
+ #: app/features/events.php:1812 app/features/events.php:2013
1086
+ msgid "For showing on website. e.g. $15"
1087
+ msgstr "Pro zobrazení na webu. např. 15 $"
1088
+
1089
+ #: app/features/events.php:1822 app/features/events.php:2023
1090
+ msgid "Available Tickets"
1091
+ msgstr "Dostupné vstupenky"
1092
+
1093
+ #: app/features/events.php:1843 app/features/events.php:2036
1094
+ msgid "Price per Date"
1095
+ msgstr "Cena za datum"
1096
+
1097
+ #: app/features/events.php:1874 app/features/events.php:1900
1098
+ #: app/features/events.php:2057 app/features/labels.php:60
1099
+ #: app/features/mec/meta_boxes/display_options.php:845
1100
+ #: app/features/mec/meta_boxes/search_form.php:66
1101
+ #: app/features/mec/meta_boxes/search_form.php:128
1102
+ #: app/features/mec/meta_boxes/search_form.php:190
1103
+ #: app/features/mec/meta_boxes/search_form.php:251
1104
+ #: app/features/mec/meta_boxes/search_form.php:312
1105
+ #: app/features/mec/meta_boxes/search_form.php:373
1106
+ #: app/features/mec/meta_boxes/search_form.php:434
1107
+ #: app/features/mec/meta_boxes/search_form.php:488
1108
+ #: app/features/mec/meta_boxes/search_form.php:549
1109
+ #: app/features/mec/meta_boxes/search_form.php:610
1110
+ #: app/features/mec/settings.php:808 app/features/mec/single.php:222
1111
+ #: app/libraries/skins.php:939
1112
+ msgid "Label"
1113
+ msgstr "Štítek"
1114
+
1115
+ #: app/features/events.php:2095
1116
+ msgid "Fees"
1117
+ msgstr "Poplatky"
1118
+
1119
+ #: app/features/events.php:2132 app/features/events.php:2170
1120
+ #: app/features/mec/booking.php:298 app/features/mec/booking.php:327
1121
+ msgid "Fee Title"
1122
+ msgstr "Název poplatku"
1123
+
1124
+ #: app/features/events.php:2138 app/features/events.php:2142
1125
+ #: app/features/events.php:2175 app/features/events.php:2178
1126
+ #: app/features/mec/booking.php:302 app/features/mec/booking.php:305
1127
+ #: app/features/mec/booking.php:331 app/features/mec/booking.php:334
1128
+ msgid "Amount"
1129
+ msgstr "Množství"
1130
+
1131
+ #: app/features/events.php:2143 app/features/events.php:2179
1132
+ #: app/features/mec/booking.php:306 app/features/mec/booking.php:335
1133
+ msgid ""
1134
+ "Fee amount, considered as fixed amount if you set the type to amount "
1135
+ "otherwise considered as percentage"
1136
+ msgstr ""
1137
+ "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1138
+ "odpovídající procentuální hodnotě"
1139
+
1140
+ #: app/features/events.php:2152 app/features/events.php:2188
1141
+ #: app/features/mec/booking.php:313 app/features/mec/booking.php:342
1142
+ msgid "Percent"
1143
+ msgstr "Procent"
1144
+
1145
+ #: app/features/events.php:2153 app/features/events.php:2189
1146
+ #: app/features/mec/booking.php:314 app/features/mec/booking.php:343
1147
+ msgid "Amount (Per Ticket)"
1148
+ msgstr "Částka (za vstupenku)"
1149
+
1150
+ #: app/features/events.php:2154 app/features/events.php:2190
1151
+ #: app/features/mec/booking.php:315 app/features/mec/booking.php:344
1152
+ msgid "Amount (Per Booking)"
1153
+ msgstr "Částka (za rezervaci)"
1154
+
1155
+ #: app/features/events.php:2227 app/features/mec/settings.php:704
1156
+ msgid "Ticket Variations / Options"
1157
+ msgstr "Varianty vstupenky / možnosti"
1158
+
1159
+ #: app/features/events.php:2277 app/features/events.php:2322
1160
+ #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1161
+ msgid "Option Price"
1162
+ msgstr "Možnosti ceny"
1163
+
1164
+ #: app/features/events.php:2287 app/features/events.php:2291
1165
+ #: app/features/events.php:2331 app/features/events.php:2334
1166
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1167
+ #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1168
+ msgid "Maximum Per Ticket"
1169
+ msgstr "Maximum na jednu vstupenku"
1170
+
1171
+ #: app/features/events.php:2292 app/features/events.php:2335
1172
+ #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1173
+ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1174
+ msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1175
+
1176
+ #: app/features/events.php:2481 app/features/mec/booking.php:487
1177
+ #: app/libraries/main.php:2544
1178
+ msgid "MEC Name"
1179
+ msgstr "MEC Jméno"
1180
+
1181
+ #: app/features/events.php:2482 app/features/mec/booking.php:488
1182
+ #: app/libraries/main.php:2573
1183
+ msgid "MEC Email"
1184
+ msgstr "MEC Email"
1185
+
1186
+ #: app/features/events.php:2483 app/features/mec/booking.php:489
1187
+ #: app/libraries/main.php:2514
1188
+ msgid "Text"
1189
+ msgstr "Text"
1190
+
1191
+ #: app/features/events.php:2486 app/features/mec/booking.php:492
1192
+ #: app/features/organizers.php:103 app/features/organizers.php:148
1193
+ #: app/features/speakers.php:118 app/features/speakers.php:183
1194
+ #: app/features/speakers.php:256 app/libraries/main.php:2690
1195
+ msgid "Tel"
1196
+ msgstr "Tel"
1197
+
1198
+ #: app/features/events.php:2487 app/features/mec/booking.php:493
1199
+ #: app/libraries/main.php:2632
1200
+ msgid "File"
1201
+ msgstr "Soubor"
1202
+
1203
+ #: app/features/events.php:2488 app/features/mec/booking.php:494
1204
+ #: app/libraries/main.php:2719
1205
+ msgid "Textarea"
1206
+ msgstr "Plocha textu"
1207
+
1208
+ #: app/features/events.php:2489 app/features/mec/booking.php:495
1209
+ #: app/libraries/main.php:2772
1210
+ msgid "Checkboxes"
1211
+ msgstr "Zatržítko"
1212
+
1213
+ #: app/features/events.php:2490 app/features/mec/booking.php:496
1214
+ #: app/libraries/main.php:2816
1215
+ msgid "Radio Buttons"
1216
+ msgstr "Přepínače"
1217
+
1218
+ #: app/features/events.php:2491 app/features/mec/booking.php:497
1219
+ #: app/features/mec/meta_boxes/search_form.php:34
1220
+ #: app/features/mec/meta_boxes/search_form.php:41
1221
+ #: app/features/mec/meta_boxes/search_form.php:48
1222
+ #: app/features/mec/meta_boxes/search_form.php:55
1223
+ #: app/features/mec/meta_boxes/search_form.php:62
1224
+ #: app/features/mec/meta_boxes/search_form.php:69
1225
+ #: app/features/mec/meta_boxes/search_form.php:76
1226
+ #: app/features/mec/meta_boxes/search_form.php:96
1227
+ #: app/features/mec/meta_boxes/search_form.php:103
1228
+ #: app/features/mec/meta_boxes/search_form.php:110
1229
+ #: app/features/mec/meta_boxes/search_form.php:117
1230
+ #: app/features/mec/meta_boxes/search_form.php:124
1231
+ #: app/features/mec/meta_boxes/search_form.php:131
1232
+ #: app/features/mec/meta_boxes/search_form.php:138
1233
+ #: app/features/mec/meta_boxes/search_form.php:158
1234
+ #: app/features/mec/meta_boxes/search_form.php:165
1235
+ #: app/features/mec/meta_boxes/search_form.php:172
1236
+ #: app/features/mec/meta_boxes/search_form.php:179
1237
+ #: app/features/mec/meta_boxes/search_form.php:186
1238
+ #: app/features/mec/meta_boxes/search_form.php:193
1239
+ #: app/features/mec/meta_boxes/search_form.php:200
1240
+ #: app/features/mec/meta_boxes/search_form.php:219
1241
+ #: app/features/mec/meta_boxes/search_form.php:226
1242
+ #: app/features/mec/meta_boxes/search_form.php:233
1243
+ #: app/features/mec/meta_boxes/search_form.php:240
1244
+ #: app/features/mec/meta_boxes/search_form.php:247
1245
+ #: app/features/mec/meta_boxes/search_form.php:254
1246
+ #: app/features/mec/meta_boxes/search_form.php:261
1247
+ #: app/features/mec/meta_boxes/search_form.php:280
1248
+ #: app/features/mec/meta_boxes/search_form.php:287
1249
+ #: app/features/mec/meta_boxes/search_form.php:294
1250
+ #: app/features/mec/meta_boxes/search_form.php:301
1251
+ #: app/features/mec/meta_boxes/search_form.php:308
1252
+ #: app/features/mec/meta_boxes/search_form.php:315
1253
+ #: app/features/mec/meta_boxes/search_form.php:322
1254
+ #: app/features/mec/meta_boxes/search_form.php:341
1255
+ #: app/features/mec/meta_boxes/search_form.php:348
1256
+ #: app/features/mec/meta_boxes/search_form.php:355
1257
+ #: app/features/mec/meta_boxes/search_form.php:362
1258
+ #: app/features/mec/meta_boxes/search_form.php:369
1259
+ #: app/features/mec/meta_boxes/search_form.php:376
1260
+ #: app/features/mec/meta_boxes/search_form.php:383
1261
+ #: app/features/mec/meta_boxes/search_form.php:402
1262
+ #: app/features/mec/meta_boxes/search_form.php:409
1263
+ #: app/features/mec/meta_boxes/search_form.php:416
1264
+ #: app/features/mec/meta_boxes/search_form.php:423
1265
+ #: app/features/mec/meta_boxes/search_form.php:430
1266
+ #: app/features/mec/meta_boxes/search_form.php:437
1267
+ #: app/features/mec/meta_boxes/search_form.php:456
1268
+ #: app/features/mec/meta_boxes/search_form.php:463
1269
+ #: app/features/mec/meta_boxes/search_form.php:470
1270
+ #: app/features/mec/meta_boxes/search_form.php:477
1271
+ #: app/features/mec/meta_boxes/search_form.php:484
1272
+ #: app/features/mec/meta_boxes/search_form.php:491
1273
+ #: app/features/mec/meta_boxes/search_form.php:498
1274
+ #: app/features/mec/meta_boxes/search_form.php:517
1275
+ #: app/features/mec/meta_boxes/search_form.php:524
1276
+ #: app/features/mec/meta_boxes/search_form.php:531
1277
+ #: app/features/mec/meta_boxes/search_form.php:538
1278
+ #: app/features/mec/meta_boxes/search_form.php:545
1279
+ #: app/features/mec/meta_boxes/search_form.php:552
1280
+ #: app/features/mec/meta_boxes/search_form.php:559
1281
+ #: app/features/mec/meta_boxes/search_form.php:578
1282
+ #: app/features/mec/meta_boxes/search_form.php:585
1283
+ #: app/features/mec/meta_boxes/search_form.php:592
1284
+ #: app/features/mec/meta_boxes/search_form.php:599
1285
+ #: app/features/mec/meta_boxes/search_form.php:606
1286
+ #: app/features/mec/meta_boxes/search_form.php:613
1287
+ #: app/features/mec/meta_boxes/search_form.php:620 app/libraries/main.php:2860
1288
+ msgid "Dropdown"
1289
+ msgstr "Rozbalovací"
1290
+
1291
+ #: app/features/events.php:2492 app/features/mec/booking.php:498
1292
+ #: app/libraries/main.php:2907
1293
+ msgid "Agreement"
1294
+ msgstr "Smlouva"
1295
+
1296
+ #: app/features/events.php:2493 app/features/mec/booking.php:499
1297
+ #: app/libraries/main.php:2748
1298
+ msgid "Paragraph"
1299
+ msgstr "Paragraf"
1300
+
1301
+ #: app/features/events.php:3161 app/features/events.php:3178
1302
+ #: app/features/events.php:3195 app/features/events.php:3212
1303
+ #, php-format
1304
+ msgid "Show all %s"
1305
+ msgstr "Ukázat všechny %s"
1306
+
1307
+ #: app/features/events.php:3161
1308
+ msgid "labels"
1309
+ msgstr "štítky"
1310
+
1311
+ #: app/features/events.php:3178
1312
+ msgid "locations"
1313
+ msgstr "umístění"
1314
+
1315
+ #: app/features/events.php:3195
1316
+ msgid "organizers"
1317
+ msgstr "organizátoři"
1318
+
1319
+ #: app/features/events.php:3242 app/features/events.php:3434
1320
+ #: app/features/events.php:3476 app/features/ix.php:3373
1321
+ #: app/features/ix.php:3414 app/features/locations.php:58
1322
+ #: app/features/locations.php:230 app/features/locations.php:287
1323
+ #: app/features/locations.php:289 app/features/locations.php:298
1324
+ #: app/features/mec/meta_boxes/display_options.php:846
1325
+ #: app/features/mec/meta_boxes/search_form.php:38
1326
+ #: app/features/mec/meta_boxes/search_form.php:100
1327
+ #: app/features/mec/meta_boxes/search_form.php:162
1328
+ #: app/features/mec/meta_boxes/search_form.php:223
1329
+ #: app/features/mec/meta_boxes/search_form.php:284
1330
+ #: app/features/mec/meta_boxes/search_form.php:345
1331
+ #: app/features/mec/meta_boxes/search_form.php:406
1332
+ #: app/features/mec/meta_boxes/search_form.php:460
1333
+ #: app/features/mec/meta_boxes/search_form.php:521
1334
+ #: app/features/mec/meta_boxes/search_form.php:582
1335
+ #: app/features/mec/settings.php:782 app/features/mec/single.php:212
1336
+ #: app/features/search.php:71 app/libraries/main.php:2053
1337
+ #: app/libraries/main.php:4921 app/libraries/skins.php:835
1338
+ #: app/skins/single.php:488 app/skins/single.php:909
1339
+ #: app/skins/single/default.php:169 app/skins/single/default.php:381
1340
+ #: app/skins/single/m1.php:155 app/skins/single/m2.php:87
1341
+ #: app/skins/single/modern.php:94
1342
+ msgid "Location"
1343
+ msgstr "Umístění"
1344
+
1345
+ #: app/features/events.php:3247
1346
+ msgid "Repeat"
1347
+ msgstr "Opakovat"
1348
+
1349
+ #: app/features/events.php:3248
1350
+ msgid "Author"
1351
+ msgstr "Autor"
1352
+
1353
+ #: app/features/events.php:3369 app/features/events.php:3370
1354
+ msgid "iCal Export"
1355
+ msgstr "iCal Export"
1356
+
1357
+ #: app/features/events.php:3372 app/features/events.php:3373
1358
+ msgid "CSV Export"
1359
+ msgstr "CSV Export"
1360
+
1361
+ #: app/features/events.php:3375 app/features/events.php:3376
1362
+ msgid "MS Excel Export"
1363
+ msgstr "MS Excel Export"
1364
+
1365
+ #: app/features/events.php:3378 app/features/events.php:3379
1366
+ msgid "XML Export"
1367
+ msgstr "XML Export"
1368
+
1369
+ #: app/features/events.php:3381 app/features/events.php:3382
1370
+ msgid "JSON Export"
1371
+ msgstr "JSON Export"
1372
+
1373
+ #: app/features/events.php:3384 app/features/events.php:3385
1374
+ #: app/features/events.php:3567
1375
+ msgid "Duplicate"
1376
+ msgstr "Duplikát"
1377
+
1378
+ #: app/features/events.php:3434 app/features/events.php:3476
1379
+ #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1380
+ #: app/features/labels.php:177 app/features/locations.php:229
1381
+ #: app/features/organizers.php:203 app/features/speakers.php:253
1382
+ msgid "ID"
1383
+ msgstr "ID"
1384
+
1385
+ #: app/features/events.php:3434 app/features/events.php:3476
1386
+ #: app/features/ix.php:3373 app/features/ix.php:3414
1387
+ msgid "Link"
1388
+ msgstr "Odkaz"
1389
+
1390
+ #: app/features/events.php:3434 app/features/events.php:3476
1391
+ #, php-format
1392
+ msgid "%s Tel"
1393
+ msgstr "%s Tel"
1394
+
1395
+ #: app/features/events.php:3434 app/features/events.php:3476
1396
+ #, php-format
1397
+ msgid "%s Email"
1398
+ msgstr "%s Email"
1399
+
1400
+ #: app/features/fes.php:87
1401
+ #, php-format
1402
+ msgid "Please %s/%s in order to submit new events."
1403
+ msgstr "Prosím %s/%s za účelem odeslání nových událostí."
1404
+
1405
+ #: app/features/fes.php:87 app/features/fes.php:165 app/features/profile.php:74
1406
+ msgid "Login"
1407
+ msgstr "Přihlásit"
1408
+
1409
+ #: app/features/fes.php:87 app/features/fes.php:165 app/features/profile.php:74
1410
+ msgid "Register"
1411
+ msgstr "Registrovat"
1412
+
1413
+ #: app/features/fes.php:100
1414
+ msgid "Sorry! Selected post is not an event."
1415
+ msgstr "Promiňte! Vybraný příspěvek není událost."
1416
+
1417
+ #: app/features/fes.php:111 app/features/fes.php:150
1418
+ msgid "Sorry! You don't have access to modify this event."
1419
+ msgstr "Promiňte! Nemáte přístup k úpravě této události."
1420
+
1421
+ # Záleží na plném kontextu
1422
+ #: app/features/fes.php:165
1423
+ #, php-format
1424
+ msgid "Please %s/%s in order to manage events."
1425
+ msgstr "Prosím %s/%s v pořadí pro správu událostí."
1426
+
1427
+ #: app/features/fes.php:195
1428
+ msgid "The event removed!"
1429
+ msgstr "Událost byla odebrána!"
1430
+
1431
+ #: app/features/fes.php:223 app/features/profile/profile.php:186
1432
+ #: app/libraries/main.php:2088 app/libraries/main.php:4951
1433
+ msgid "Ticket"
1434
+ msgstr "Vstupenka"
1435
+
1436
+ #: app/features/fes.php:223 app/libraries/main.php:2065
1437
+ msgid "Transaction ID"
1438
+ msgstr "ID transakce"
1439
+
1440
+ #: app/features/fes.php:223
1441
+ msgid "Total Price"
1442
+ msgstr "Celková cena"
1443
+
1444
+ #: app/features/fes.php:223
1445
+ msgid "Confirmation"
1446
+ msgstr "Potvrzení"
1447
+
1448
+ #: app/features/fes.php:223
1449
+ msgid "Verification"
1450
+ msgstr "Ověření"
1451
+
1452
+ #: app/features/fes.php:281
1453
+ msgid "Unknown"
1454
+ msgstr "Neznámý"
1455
+
1456
+ #: app/features/fes.php:338
1457
+ msgid "The image is uploaded!"
1458
+ msgstr "Obrázek je nahraný!"
1459
+
1460
+ #: app/features/fes.php:364
1461
+ msgid "Captcha is invalid! Please try again."
1462
+ msgstr "Captcha je neplatná! Prosím zkuste to znovu."
1463
+
1464
+ #: app/features/fes.php:392
1465
+ msgid "Please fill event title field!"
1466
+ msgstr "Vyplňte prosím pole názvu události!"
1467
+
1468
+ #: app/features/fes.php:1011
1469
+ msgid "The event submitted. It will publish as soon as possible."
1470
+ msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
1471
+
1472
+ #: app/features/fes.php:1012
1473
+ msgid "The event published."
1474
+ msgstr "Událost byla publikována."
1475
+
1476
+ #: app/features/fes/form.php:169
1477
+ msgid "Go back to events list"
1478
+ msgstr "Přejít zpět na seznam událostí"
1479
+
1480
+ #: app/features/fes/form.php:365
1481
+ #: app/features/mec/meta_boxes/display_options.php:776
1482
+ #: app/libraries/main.php:407
1483
+ msgid "Monday"
1484
+ msgstr "Pondělí"
1485
+
1486
+ #: app/features/fes/form.php:366
1487
+ #: app/features/mec/meta_boxes/display_options.php:777
1488
+ #: app/libraries/main.php:407
1489
+ msgid "Tuesday"
1490
+ msgstr "Úterý"
1491
+
1492
+ #: app/features/fes/form.php:367
1493
+ #: app/features/mec/meta_boxes/display_options.php:778
1494
+ #: app/libraries/main.php:407
1495
+ msgid "Wednesday"
1496
+ msgstr "Středa"
1497
+
1498
+ #: app/features/fes/form.php:368
1499
+ #: app/features/mec/meta_boxes/display_options.php:779
1500
+ #: app/libraries/main.php:407
1501
+ msgid "Thursday"
1502
+ msgstr "Čtvrtek"
1503
+
1504
+ #: app/features/fes/form.php:369
1505
+ #: app/features/mec/meta_boxes/display_options.php:780
1506
+ #: app/libraries/main.php:407
1507
+ msgid "Friday"
1508
+ msgstr "Pátek"
1509
+
1510
+ #: app/features/fes/form.php:370
1511
+ #: app/features/mec/meta_boxes/display_options.php:781
1512
+ #: app/libraries/main.php:407
1513
+ msgid "Saturday"
1514
+ msgstr "Sobota"
1515
+
1516
+ #: app/features/fes/form.php:371
1517
+ #: app/features/mec/meta_boxes/display_options.php:775
1518
+ #: app/libraries/main.php:407
1519
+ msgid "Sunday"
1520
+ msgstr "Neděle"
1521
+
1522
+ #: app/features/fes/form.php:379
1523
+ msgid "Add certain days to event occurrence dates."
1524
+ msgstr "Přidejte určité dny k datům výskytu událostí."
1525
+
1526
+ #: app/features/fes/form.php:654
1527
+ msgid "Note to reviewer"
1528
+ msgstr "Poznámka pro recenzenta"
1529
+
1530
+ #: app/features/fes/form.php:672
1531
+ msgid "User Data"
1532
+ msgstr "Údaje uživatele"
1533
+
1534
+ #: app/features/fes/form.php:675
1535
+ msgid "eg. yourname@gmail.com"
1536
+ msgstr "např. vasejmeno@gmail.com"
1537
+
1538
+ #: app/features/fes/form.php:679 app/features/organizers.php:280
1539
+ msgid "eg. John Smith"
1540
+ msgstr "např. Jan Novák"
1541
+
1542
+ #: app/features/fes/form.php:697
1543
+ msgid ""
1544
+ "If you fill it, it will be replaced instead of default event page link. "
1545
+ "Insert full link including http(s)://"
1546
+ msgstr ""
1547
+ "Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
1548
+ "Vložte celý odkaz včetně http (s): //"
1549
+
1550
+ # v kontextu
1551
+ #: app/features/fes/form.php:733 app/features/mec/settings.php:638
1552
+ msgid "Featured Image"
1553
+ msgstr "Hlavní obrázek"
1554
+
1555
+ #: app/features/fes/form.php:738
1556
+ msgid "Remove Image"
1557
+ msgstr "Odebrat obrázek"
1558
+
1559
+ #: app/features/fes/form.php:772 app/features/labels.php:61
1560
+ #: app/features/labels.php:221 app/features/mec.php:337
1561
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:4918
1562
+ #: app/skins/single.php:687 app/skins/single/default.php:148
1563
+ #: app/skins/single/default.php:360 app/skins/single/m1.php:64
1564
+ #: app/skins/single/modern.php:214
1565
+ msgid "Labels"
1566
+ msgstr "Štítky"
1567
+
1568
+ #: app/features/fes/form.php:818 app/features/mec.php:335
1569
+ #: app/features/mec/meta_boxes/filter.php:147
1570
+ msgid "Tags"
1571
+ msgstr "Tagy"
1572
+
1573
+ #: app/features/fes/form.php:820
1574
+ msgid "Insert your desired tags, comma separated."
1575
+ msgstr "Vložte požadované tagy oddělené čárkami."
1576
+
1577
+ #: app/features/fes/form.php:842
1578
+ msgid "Speakers Names"
1579
+ msgstr "Jméno řečníka"
1580
+
1581
+ #: app/features/fes/form.php:843
1582
+ msgid "Separate names with commas Similar Justin, Cris"
1583
+ msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
1584
+
1585
+ #: app/features/fes/form.php:861
1586
+ msgid "Submit"
1587
+ msgstr "Potvrdit"
1588
+
1589
+ #: app/features/fes/list.php:21
1590
+ msgid "Click again to remove!"
1591
+ msgstr "Klikněte znovu pro odstranění!"
1592
+
1593
+ #: app/features/fes/list.php:64 app/features/fes/list.php:175
1594
+ msgid "Add new"
1595
+ msgstr "Přidat novou"
1596
+
1597
+ #: app/features/fes/list.php:80
1598
+ msgid "Download Attendees"
1599
+ msgstr "Stáhněte si účastníky"
1600
+
1601
+ #: app/features/fes/list.php:84
1602
+ msgid "Remove Event"
1603
+ msgstr "Odstranit událost"
1604
+
1605
+ #: app/features/fes/list.php:175
1606
+ #, php-format
1607
+ msgid "No events found! %s"
1608
+ msgstr "Nebyly nalezeny žádné události! %s"
1609
+
1610
+ #: app/features/ix.php:107
1611
+ msgid "MEC - Import / Export"
1612
+ msgstr "MEC Import / Export"
1613
+
1614
+ #: app/features/ix.php:107 app/features/mec/support.php:73
1615
+ #: app/libraries/main.php:796
1616
+ msgid "Import / Export"
1617
+ msgstr "Import / Export"
1618
+
1619
+ #: app/features/ix.php:201
1620
+ msgid "Please upload the feed file."
1621
+ msgstr "Nahrajte prosím zdrojový soubor."
1622
+
1623
+ #: app/features/ix.php:204
1624
+ msgid "The file type should be XML or ICS."
1625
+ msgstr "Typ souboru by měl být XML nebo ICS."
1626
+
1627
+ #: app/features/ix.php:213
1628
+ msgid "An error occurred during the file upload! Please check permissions!"
1629
+ msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
1630
+
1631
+ #: app/features/ix.php:221
1632
+ msgid "The events are imported successfully!"
1633
+ msgstr "Události byly úspěšně importovány!"
1634
+
1635
+ #: app/features/ix.php:806
1636
+ msgid "Third Party plugin is not installed and activated!"
1637
+ msgstr "Plugin třetích stran není nainstalován a aktivován!"
1638
+
1639
+ #: app/features/ix.php:829
1640
+ msgid "Third Party plugin is invalid!"
1641
+ msgstr "Plugin třetí strany je neplatný!"
1642
+
1643
+ #: app/features/ix.php:2580 app/features/ix.php:2638
1644
+ msgid "Both of API key and Calendar ID are required!"
1645
+ msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
1646
+
1647
+ #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1648
+ msgid "Please select some events to import!"
1649
+ msgstr "Vyberte události, které chcete importovat!"
1650
+
1651
+ #: app/features/ix.php:2994 app/features/ix.php:3057
1652
+ msgid "Both of API key and Group URL are required!"
1653
+ msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
1654
+
1655
+ #: app/features/ix.php:3296
1656
+ msgid "Check at Meetup"
1657
+ msgstr "Ověřit Meetup"
1658
+
1659
+ #: app/features/ix.php:3373 app/features/ix.php:3414
1660
+ msgid "Organizer Tel"
1661
+ msgstr "Organizátor Tel"
1662
+
1663
+ #: app/features/ix.php:3373 app/features/ix.php:3414
1664
+ msgid "Organizer Email"
1665
+ msgstr "Organizátor Email"
1666
+
1667
+ # Client Secret dle kontextu
1668
+ #: app/features/ix.php:3495
1669
+ msgid "All of Client ID, Client Secret and Calendar ID are required!"
1670
+ msgstr ""
1671
+ "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
1672
+
1673
+ #: app/features/ix.php:3518
1674
+ #, php-format
1675
+ msgid "All seems good! Please click %s for authenticating your app."
1676
+ msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
1677
+
1678
+ #: app/features/ix.php:3572
1679
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1680
+ msgstr ""
1681
+ "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
1682
+ "povinné!"
1683
+
1684
+ #: app/features/ix.php:3688
1685
+ #, php-format
1686
+ msgid "%s events added to Google Calendar successfully."
1687
+ msgstr "% s události byly přidané do Google kalendáře úspěšně."
1688
+
1689
+ #: app/features/ix.php:3689
1690
+ #, php-format
1691
+ msgid "%s previously added events get updated."
1692
+ msgstr "% s dříve přidané události byly aktualizovány."
1693
+
1694
+ #: app/features/ix.php:3690
1695
+ #, php-format
1696
+ msgid "%s events failed to add for following reasons: %s"
1697
+ msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
1698
+
1699
+ #: app/features/ix.php:3722
1700
+ msgid "Please insert your Facebook page's link."
1701
+ msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
1702
+
1703
+ #: app/features/ix.php:3731
1704
+ msgid ""
1705
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1706
+ "valid Facebook page link."
1707
+ msgstr ""
1708
+ "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
1709
+ "poskytněte nám platný odkaz na stránku Facebooku."
1710
+
1711
+ #: app/features/ix.php:3763
1712
+ msgid "Please insert your facebook page's link."
1713
+ msgstr "Vložte prosím odkaz na svou facebookovou stránku."
1714
+
1715
+ #: app/features/ix.php:3768
1716
+ msgid ""
1717
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1718
+ "valid facebook page link."
1719
+ msgstr ""
1720
+ "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to prosím a "
1721
+ "poskytněte nám platný odkaz na facebookovou stránku."
1722
+
1723
+ #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1724
+ #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1725
+ #: app/features/ix/import_g_calendar.php:8 app/features/ix/import_meetup.php:8
1726
+ #: app/features/ix/thirdparty.php:8
1727
+ msgid "MEC Import / Export"
1728
+ msgstr "MEC Import / Export"
1729
+
1730
+ #: app/features/ix/export.php:13 app/features/ix/export_g_calendar.php:17
1731
+ #: app/features/ix/import.php:13 app/features/ix/import_f_calendar.php:13
1732
+ #: app/features/ix/import_g_calendar.php:13
1733
+ #: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
1734
+ #: app/features/ix/thirdparty.php:13
1735
+ msgid "Meetup Import"
1736
+ msgstr "Import Meetup"
1737
+
1738
+ #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1739
+ #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
1740
+ #: app/features/ix/import_g_calendar.php:14
1741
+ #: app/features/ix/import_meetup.php:14 app/features/ix/sync.php:14
1742
+ #: app/features/ix/thirdparty.php:14
1743
+ msgid "Synchronization"
1744
+ msgstr "Synchronizace"
1745
+
1746
+ #: app/features/ix/export.php:15 app/features/ix/export_g_calendar.php:19
1747
+ #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1748
+ #: app/features/ix/import_g_calendar.php:15
1749
+ #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1750
+ #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:31
1751
+ msgid "Export"
1752
+ msgstr "Export"
1753
+
1754
+ #: app/features/ix/export.php:16 app/features/ix/export_g_calendar.php:20
1755
+ #: app/features/ix/import.php:16 app/features/ix/import_f_calendar.php:16
1756
+ #: app/features/ix/import_f_calendar.php:82
1757
+ #: app/features/ix/import_g_calendar.php:16
1758
+ #: app/features/ix/import_g_calendar.php:103
1759
+ #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1760
+ #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1761
+ #: app/features/ix/thirdparty.php:102 app/features/mec/ie.php:20
1762
+ msgid "Import"
1763
+ msgstr "Import"
1764
+
1765
+ #: app/features/ix/export.php:17 app/features/ix/export_g_calendar.php:21
1766
+ #: app/features/ix/import.php:17 app/features/ix/import_f_calendar.php:17
1767
+ #: app/features/ix/import_g_calendar.php:17
1768
+ #: app/features/ix/import_meetup.php:17 app/features/ix/sync.php:17
1769
+ #: app/features/ix/thirdparty.php:17 app/features/ix/thirdparty.php:21
1770
+ msgid "Third Party Plugins"
1771
+ msgstr "Doplňky třetích stran"
1772
+
1773
+ #: app/features/ix/export.php:22
1774
+ msgid "Export all events to file"
1775
+ msgstr "Export všech událostí"
1776
+
1777
+ #: app/features/ix/export.php:23
1778
+ msgid ""
1779
+ "This will export all of your website events' data into your desired format."
1780
+ msgstr ""
1781
+ "Tímto se exportují všechna data vašich webových událostí do požadovaného "
1782
+ "formátu."
1783
+
1784
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:178
1785
+ msgid "iCal"
1786
+ msgstr "iCal"
1787
+
1788
+ #: app/features/ix/export.php:26
1789
+ msgid "CSV"
1790
+ msgstr "CSV"
1791
+
1792
+ #: app/features/ix/export.php:27
1793
+ msgid "MS Excel"
1794
+ msgstr "MS Excel"
1795
+
1796
+ #: app/features/ix/export.php:28
1797
+ msgid "XML"
1798
+ msgstr "XML"
1799
+
1800
+ #: app/features/ix/export.php:29
1801
+ msgid "JSON"
1802
+ msgstr "JSON"
1803
+
1804
+ #: app/features/ix/export.php:33
1805
+ msgid "Export certain events"
1806
+ msgstr "Export určitých událostí"
1807
+
1808
+ #: app/features/ix/export.php:34
1809
+ #, php-format
1810
+ msgid "For exporting filtered events, you can use bulk actions in %s page."
1811
+ msgstr ""
1812
+ "Při exportu filtrovaných událostí můžete použít hromadné akce na % s stránce."
1813
+
1814
+ #: app/features/ix/export.php:37
1815
+ msgid "Export certain bookings"
1816
+ msgstr "Export určitých rezervací"
1817
+
1818
+ #: app/features/ix/export.php:38
1819
+ #, php-format
1820
+ msgid "For exporting bookings events, you can use bulk actions in %s page."
1821
+ msgstr ""
1822
+ "Při exportu rezervací událostí můžete použít hromadné akce na % s stránce."
1823
+
1824
+ #: app/features/ix/export.php:38
1825
+ msgid "Bookings"
1826
+ msgstr "Rezervace"
1827
+
1828
+ #: app/features/ix/export_g_calendar.php:26
1829
+ msgid "Add events to Google Calendar"
1830
+ msgstr "Přidat události do Google kalendáře"
1831
+
1832
+ #: app/features/ix/export_g_calendar.php:27
1833
+ msgid "Add your desired website events to your Google Calendar."
1834
+ msgstr "Přidejte požadované události webových stránek do Google kalendáře."
1835
+
1836
+ #: app/features/ix/export_g_calendar.php:27
1837
+ #, php-format
1838
+ msgid "You should set %s as redirect page in Google App Console."
1839
+ msgstr ""
1840
+ "V aplikaci Google App Console byste měli nastavit % s jako stránku "
1841
+ "přesměrování."
1842
+
1843
+ #: app/features/ix/export_g_calendar.php:30
1844
+ msgid "App Client ID"
1845
+ msgstr "ID klienta aplikace"
1846
+
1847
+ #: app/features/ix/export_g_calendar.php:36
1848
+ msgid "App Client Secret"
1849
+ msgstr "Tajné informace klienta aplikace"
1850
+
1851
+ #: app/features/ix/export_g_calendar.php:42
1852
+ #: app/features/ix/import_g_calendar.php:32
1853
+ msgid "Calendar ID"
1854
+ msgstr "ID kalendáře"
1855
+
1856
+ #: app/features/ix/export_g_calendar.php:48
1857
+ #: app/features/ix/export_g_calendar.php:103
1858
+ #: app/features/ix/export_g_calendar.php:120
1859
+ msgid "Authenticate"
1860
+ msgstr "Ověření"
1861
+
1862
+ #: app/features/ix/export_g_calendar.php:57
1863
+ #: app/features/ix/import_f_calendar.php:56
1864
+ #: app/features/ix/import_g_calendar.php:64
1865
+ #: app/features/ix/import_meetup.php:53 app/features/ix/thirdparty.php:49
1866
+ msgid "Select All"
1867
+ msgstr "Vybrat vše"
1868
+
1869
+ #: app/features/ix/export_g_calendar.php:58
1870
+ #: app/features/ix/import_f_calendar.php:57
1871
+ #: app/features/ix/import_g_calendar.php:65
1872
+ #: app/features/ix/import_meetup.php:54 app/features/ix/thirdparty.php:50
1873
+ msgid "Deselect All"
1874
+ msgstr "Odebrat vše"
1875
+
1876
+ #: app/features/ix/export_g_calendar.php:59
1877
+ #: app/features/ix/import_f_calendar.php:58
1878
+ #: app/features/ix/import_g_calendar.php:66
1879
+ #: app/features/ix/import_meetup.php:55 app/features/ix/thirdparty.php:51
1880
+ msgid "Toggle"
1881
+ msgstr "Přepnout"
1882
+
1883
+ #: app/features/ix/export_g_calendar.php:72
1884
+ #: app/features/ix/export_g_calendar.php:147
1885
+ #: app/features/ix/export_g_calendar.php:164
1886
+ #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:148
1887
+ #: app/features/mec/notifications.php:204
1888
+ #: app/features/mec/notifications.php:405
1889
+ msgid "Add to Google Calendar"
1890
+ msgstr "Přidat do Google kalendáře"
1891
+
1892
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1893
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:601
1894
+ #: app/features/mec/settings.php:951 app/features/mec/single.php:269
1895
+ msgid "Checking ..."
1896
+ msgstr "Ověřování ..."
1897
+
1898
+ #: app/features/ix/export_g_calendar.php:134
1899
+ msgid "Exporting ..."
1900
+ msgstr "Exportování ..."
1901
+
1902
+ #: app/features/ix/import.php:21
1903
+ msgid "Import MEC XML Feed"
1904
+ msgstr "Import MEC XML Feed"
1905
+
1906
+ #: app/features/ix/import.php:24
1907
+ #, php-format
1908
+ msgid ""
1909
+ "You can import %s events from another website to this website. You just need "
1910
+ "an XML feed of the events that can be exported from source website!"
1911
+ msgstr ""
1912
+ "Na tento web můžete importovat % s události z jiného webu. Potřebujete pouze "
1913
+ "zdroj XML událostí, které lze exportovat ze zdrojového webu!"
1914
+
1915
+ #: app/features/ix/import.php:27
1916
+ msgid "XML Feed"
1917
+ msgstr "XML Feed"
1918
+
1919
+ #: app/features/ix/import.php:29 app/features/ix/import.php:42
1920
+ msgid "Upload & Import"
1921
+ msgstr "Nahrát & importovat"
1922
+
1923
+ #: app/features/ix/import.php:33
1924
+ msgid "Import .ics File"
1925
+ msgstr "Import .ics souboru"
1926
+
1927
+ #: app/features/ix/import.php:37
1928
+ #, php-format
1929
+ msgid ""
1930
+ "ICS format supports by many different service providers like Facebook. Apple "
1931
+ "Calendar etc. You can import your ics file into the %s using this form."
1932
+ msgstr ""
1933
+ "ICS formát podporuje mnoho různých služeb poskytovatelů, jako je Facebook, "
1934
+ "Apple Calendar atd. Můžete importovat svůj ics soubor do %s použitím tohoto "
1935
+ "formuláře."
1936
+
1937
+ #: app/features/ix/import.php:40
1938
+ msgid "ICS Feed"
1939
+ msgstr "ICS Feed"
1940
+
1941
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1942
+ #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1943
+ #: app/features/mec/booking.php:359
1944
+ #: app/features/mec/meta_boxes/display_options.php:162
1945
+ #: app/features/mec/meta_boxes/display_options.php:327
1946
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1947
+ #: app/features/mec/modules.php:228
1948
+ #, php-format
1949
+ msgid "%s is required to use this feature."
1950
+ msgstr "% s je vyžadováno pro použití této funkce."
1951
+
1952
+ #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1953
+ #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1954
+ #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1955
+ #: app/features/mec/meta_boxes/display_options.php:162
1956
+ #: app/features/mec/meta_boxes/display_options.php:327
1957
+ #: app/features/mec/meta_boxes/display_options.php:342
1958
+ #: app/features/mec/meta_boxes/display_options.php:469
1959
+ #: app/features/mec/meta_boxes/display_options.php:520
1960
+ #: app/features/mec/meta_boxes/display_options.php:627
1961
+ #: app/features/mec/meta_boxes/display_options.php:734
1962
+ #: app/features/mec/meta_boxes/display_options.php:807
1963
+ #: app/features/mec/meta_boxes/display_options.php:1007
1964
+ #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1965
+ #: app/features/mec/modules.php:228
1966
+ msgid "Pro version of Modern Events Calendar"
1967
+ msgstr "Pro verze doplňku Modern Events Calendar"
1968
+
1969
+ #: app/features/ix/import_f_calendar.php:22
1970
+ msgid "The Facebook SDK requires PHP version 5.4 or higher."
1971
+ msgstr "Facebook SDK vyžaduje PHP verze 5.4 nebo vyšší."
1972
+
1973
+ #: app/features/ix/import_f_calendar.php:26
1974
+ msgid "Import from Facebook Calendar"
1975
+ msgstr "Import z Facebook kalendáře"
1976
+
1977
+ #: app/features/ix/import_f_calendar.php:27
1978
+ msgid "Import all of your Facebook events into MEC."
1979
+ msgstr "Importujte všechny své události na Facebooku do MEC."
1980
+
1981
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:135
1982
+ #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1983
+ msgid "Documentation"
1984
+ msgstr "Dokumentace"
1985
+
1986
+ #: app/features/ix/import_f_calendar.php:29
1987
+ msgid "Facebook Page Access Token"
1988
+ msgstr "Token pro přístup na stránku Facebook"
1989
+
1990
+ #: app/features/ix/import_f_calendar.php:35
1991
+ msgid "Facebook Page Link"
1992
+ msgstr "Odkaz na stránku Facebook"
1993
+
1994
+ #: app/features/ix/import_f_calendar.php:53
1995
+ msgid "Facebook Events"
1996
+ msgstr "Událost na Facebooku"
1997
+
1998
+ #: app/features/ix/import_f_calendar.php:54
1999
+ #, php-format
2000
+ msgid ""
2001
+ "We found %s events for %s page. Please select your desired events to import."
2002
+ msgstr ""
2003
+ "Našli jsme% s události pro % s stránku. Vyberte požadované události k "
2004
+ "importu."
2005
+
2006
+ #: app/features/ix/import_f_calendar.php:65 app/features/ix/thirdparty.php:58
2007
+ #, php-format
2008
+ msgid "Event Title: %s"
2009
+ msgstr "Název události: %s"
2010
+
2011
+ #: app/features/ix/import_f_calendar.php:72
2012
+ #: app/features/ix/import_g_calendar.php:87
2013
+ #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:65
2014
+ msgid "Import Options"
2015
+ msgstr "Možnosti importu"
2016
+
2017
+ #: app/features/ix/import_f_calendar.php:76
2018
+ #: app/features/ix/import_g_calendar.php:97
2019
+ #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:82
2020
+ msgid "Import Locations"
2021
+ msgstr "Umístění importu"
2022
+
2023
+ #: app/features/ix/import_f_calendar.php:92
2024
+ #, php-format
2025
+ msgid "%s events successfully imported to your website from Facebook Calendar."
2026
+ msgstr "% s události byly úspěšně importovány na váš web z kalendáře Facebook."
2027
+
2028
+ #: app/features/ix/import_g_calendar.php:23
2029
+ msgid "Import from Google Calendar"
2030
+ msgstr "Import z Google kalendáře"
2031
+
2032
+ #: app/features/ix/import_g_calendar.php:24
2033
+ msgid "This will import all of your Google calendar events into MEC."
2034
+ msgstr "Tímto se importují všechny vaše události kalendáře Google do MEC."
2035
+
2036
+ #: app/features/ix/import_g_calendar.php:26
2037
+ msgid "Google API Key"
2038
+ msgstr "Google API Key"
2039
+
2040
+ #: app/features/ix/import_g_calendar.php:61
2041
+ msgid "Google Calendar Events"
2042
+ msgstr "Události Google kalendáře"
2043
+
2044
+ #: app/features/ix/import_g_calendar.php:62
2045
+ #, php-format
2046
+ msgid ""
2047
+ "We found %s events for %s calendar. Please select your desired events to "
2048
+ "import."
2049
+ msgstr ""
2050
+ "Našli jsme% s události pro% s kalendář. Vyberte požadované události k "
2051
+ "importu."
2052
+
2053
+ #: app/features/ix/import_g_calendar.php:80
2054
+ #: app/features/ix/import_meetup.php:62
2055
+ #, php-format
2056
+ msgid "Event Title: %s Event Date: %s - %s"
2057
+ msgstr "Název události: % s Datum události: % s -% s"
2058
+
2059
+ #: app/features/ix/import_g_calendar.php:91
2060
+ #: app/features/ix/import_meetup.php:73 app/features/ix/thirdparty.php:73
2061
+ msgid "Import Organizers"
2062
+ msgstr "Import organizátorů"
2063
+
2064
+ #: app/features/ix/import_g_calendar.php:113
2065
+ #, php-format
2066
+ msgid "%s events successfully imported to your website from Google Calendar."
2067
+ msgstr "% s události byly úspěšně importovány na váš web z Kalendáře Google."
2068
+
2069
+ #: app/features/ix/import_meetup.php:23
2070
+ msgid "Import from Meetup"
2071
+ msgstr "Import z Meetup"
2072
+
2073
+ #: app/features/ix/import_meetup.php:24
2074
+ msgid "This will import all your meetup events into MEC."
2075
+ msgstr "Tím se importují všechny vaše události Meetup do MEC."
2076
+
2077
+ #: app/features/ix/import_meetup.php:26
2078
+ msgid "Meetup API Key"
2079
+ msgstr "Meetup API Key"
2080
+
2081
+ #: app/features/ix/import_meetup.php:32
2082
+ msgid "Group URL"
2083
+ msgstr "Group URL"
2084
+
2085
+ # slim
2086
+ #: app/features/ix/import_meetup.php:35
2087
+ #, php-format
2088
+ msgid "put only the slug of your group like %s in %s"
2089
+ msgstr "vložte pouze slim vaší skupiny jako % s do% s"
2090
+
2091
+ #: app/features/ix/import_meetup.php:50
2092
+ msgid "Meetup Events"
2093
+ msgstr "Události Meetup"
2094
+
2095
+ #: app/features/ix/import_meetup.php:51
2096
+ #, php-format
2097
+ msgid ""
2098
+ "We found %s events for %s group. Please select your desired events to import."
2099
+ msgstr ""
2100
+ "Nalezli jsme %s události pro %s skupinu. Vyberte prosím požadované události "
2101
+ "k importu."
2102
+
2103
+ #: app/features/ix/import_meetup.php:95
2104
+ #, php-format
2105
+ msgid "%s events successfully imported to your website from meetup."
2106
+ msgstr "% s události byly úspěšně importovány na váš web z Meetup."
2107
+
2108
+ #: app/features/ix/import_meetup.php:96 app/features/ix/thirdparty.php:113
2109
+ msgid "Attention"
2110
+ msgstr "Upozornění"
2111
+
2112
+ #: app/features/ix/import_meetup.php:96
2113
+ msgid ""
2114
+ "Although we tried our best to make the events completely compatible with MEC "
2115
+ "but some modification might be needed. We suggest you to edit the imported "
2116
+ "listings one by one on MEC edit event page and make sure thay're correct."
2117
+ msgstr ""
2118
+ "Přestože jsme se snažili, aby události byly plně kompatibilní s MEC, je "
2119
+ "možné, že bude potřeba nějakých úprav. Doporučujeme vám importovat seznamy "
2120
+ "jeden po druhém na stránce editace MEC a ujistit se, že jsou správné."
2121
+
2122
+ #: app/features/ix/sync.php:8
2123
+ msgid "Auto Synchronization"
2124
+ msgstr "Automatická synchronizace"
2125
+
2126
+ #: app/features/ix/sync.php:22
2127
+ #: app/features/mec/meta_boxes/display_options.php:807
2128
+ #, php-format
2129
+ msgid "%s is required to use synchronization feature."
2130
+ msgstr "%s je vyžadováno pro použití vlastností synchronizace."
2131
+
2132
+ #: app/features/ix/sync.php:29
2133
+ msgid "Auto Google Import"
2134
+ msgstr "Auto Google Import"
2135
+
2136
+ #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2137
+ #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2138
+ #: app/features/mec/notifications.php:348
2139
+ msgid "Important Note"
2140
+ msgstr "Důležitá poznámka"
2141
+
2142
+ #: app/features/ix/sync.php:32
2143
+ #, php-format
2144
+ msgid ""
2145
+ "Set a cronjob to call %s file atleast once per day otherwise it won't import "
2146
+ "Google Calendar events."
2147
+ msgstr ""
2148
+ "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
2149
+ "nebude importovat události Kalendáře Google."
2150
+
2151
+ #: app/features/ix/sync.php:38
2152
+ msgid "Auto Google Export"
2153
+ msgstr "Auto Google Export"
2154
+
2155
+ #: app/features/ix/sync.php:41
2156
+ #, php-format
2157
+ msgid ""
2158
+ "Set a cronjob to call %s file atleast once per day otherwise it won't export "
2159
+ "your website events into Google Calendar."
2160
+ msgstr ""
2161
+ "Chcete-li zavolat % s soubor alespoň jednou za den, nastavte odkaz, jinak "
2162
+ "nebude proveden export událostí vašich webových stránek do Kalendáře Google."
2163
+
2164
+ #: app/features/ix/sync.php:49
2165
+ msgid "Auto Facebook Import"
2166
+ msgstr "Auto Facebook Import"
2167
+
2168
+ #: app/features/ix/sync.php:52
2169
+ #, php-format
2170
+ msgid ""
2171
+ "Set a cronjob to call %s file atleast once per day otherwise it won't import "
2172
+ "any event from Facebook."
2173
+ msgstr ""
2174
+ "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
2175
+ "nebude importovat události z Facebooku."
2176
+
2177
+ #: app/features/ix/sync.php:60
2178
+ msgid "Auto Meetup Import"
2179
+ msgstr "Auto Meetup Import"
2180
+
2181
+ #: app/features/ix/sync.php:63
2182
+ #, php-format
2183
+ msgid ""
2184
+ "Set a cronjob to call %s file atleast once per day otherwise it won't import "
2185
+ "any event from Meetup."
2186
+ msgstr ""
2187
+ "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
2188
+ "nebude importovat události z Meetup."
2189
+
2190
+ #: app/features/ix/sync.php:67
2191
+ msgid "Auto set cronjobs (Once Daily)"
2192
+ msgstr "Automatické nastavení cronových úloh (jednou denně)"
2193
+
2194
+ #: app/features/ix/sync.php:68
2195
+ msgid "First you need to enable above options for each to be able to use this."
2196
+ msgstr ""
2197
+ "Nejprve je nutné povolit výše uvedené možnosti, aby bylo možné toto použít."
2198
+
2199
+ #: app/features/ix/sync.php:69
2200
+ msgid ""
2201
+ "If you cannot set Cron Job on your server, you can use the options below. "
2202
+ "Please make sure to NOT use the following options and set on the server "
2203
+ "manually together."
2204
+ msgstr ""
2205
+ "Pokud na svém serveru nemůžete nastavit Cron Job, můžete použít níže uvedené "
2206
+ "možnosti. Nezapomeňte NEPOUŽÍVAT následující možnosti a nastavit je na "
2207
+ "serveru ručně společně."
2208
+
2209
+ #: app/features/ix/sync.php:73
2210
+ msgid "Google import"
2211
+ msgstr "Google import"
2212
+
2213
+ #: app/features/ix/sync.php:78
2214
+ msgid "Google export"
2215
+ msgstr "Google export"
2216
+
2217
+ #: app/features/ix/sync.php:83
2218
+ msgid "Meetup import"
2219
+ msgstr "Meetup Import"
2220
+
2221
+ #: app/features/ix/sync.php:90
2222
+ msgid "Save"
2223
+ msgstr "Uložit"
2224
+
2225
+ #: app/features/ix/thirdparty.php:24
2226
+ #, php-format
2227
+ msgid "You can import events from following integrated plugins to %s."
2228
+ msgstr ""
2229
+ "Události můžete importovat z následujících integrovaných pluginů do% s."
2230
+
2231
+ #: app/features/ix/thirdparty.php:27
2232
+ msgid "Third Party"
2233
+ msgstr "Třetí strana"
2234
+
2235
+ #: app/features/ix/thirdparty.php:46
2236
+ msgid "Found Events"
2237
+ msgstr "Nalezené události"
2238
+
2239
+ #: app/features/ix/thirdparty.php:47
2240
+ #, php-format
2241
+ msgid "We found %s events. Please select your desired events to import."
2242
+ msgstr "Našli jsme % s události. Vyberte požadované události k importu."
2243
+
2244
+ #: app/features/ix/thirdparty.php:72
2245
+ msgid "Import Instructors"
2246
+ msgstr "Import instruktorů"
2247
+
2248
+ #: app/features/ix/thirdparty.php:89
2249
+ msgid "Import Class Types"
2250
+ msgstr "Import typu třídy"
2251
+
2252
+ #: app/features/ix/thirdparty.php:90
2253
+ msgid "Import Categories"
2254
+ msgstr "Import kategorií"
2255
+
2256
+ #: app/features/ix/thirdparty.php:97
2257
+ msgid "Import Featured Images"
2258
+ msgstr "Importovat doporučené obrázky"
2259
+
2260
+ #: app/features/ix/thirdparty.php:112
2261
+ #, php-format
2262
+ msgid "%s events successfully imported to your website."
2263
+ msgstr "%s události byly úspěšně importovány na váš web."
2264
+
2265
+ #: app/features/ix/thirdparty.php:113
2266
+ msgid ""
2267
+ "Although we tried our best to make the events completely compatible with MEC "
2268
+ "but some modification might be needed. We suggest you to edit the imported "
2269
+ "listings one by one on MEC edit event page and make sure they are correct."
2270
+ msgstr ""
2271
+ "Přestože jsme se snažili, aby události byly plně kompatibilní s MEC, je "
2272
+ "možné, že bude potřeba nějakých úprav. Doporučujeme vám importovat seznamy "
2273
+ "jeden po druhém na stránce úprav události MEC a ujistit se, že jsou správné."
2274
+
2275
+ #: app/features/labels.php:79 app/features/locations.php:77
2276
+ #: app/features/organizers.php:77 app/features/speakers.php:80
2277
+ #, php-format
2278
+ msgid "← Back to %s"
2279
+ msgstr "← Zpět na %s"
2280
+
2281
+ #: app/features/labels.php:103 app/features/labels.php:134
2282
+ #: app/features/labels.php:179
2283
+ msgid "Color"
2284
+ msgstr "Barva"
2285
+
2286
+ #: app/features/labels.php:107 app/features/labels.php:136
2287
+ msgid "Select label color"
2288
+ msgstr "Vybrat barvu štítku"
2289
+
2290
+ #: app/features/labels.php:112 app/features/labels.php:139
2291
+ #: app/features/mec/meta_boxes/display_options.php:38
2292
+ #: app/features/mec/meta_boxes/display_options.php:189
2293
+ #: app/features/mec/meta_boxes/display_options.php:347
2294
+ #: app/features/mec/meta_boxes/display_options.php:525
2295
+ #: app/features/mec/meta_boxes/display_options.php:575
2296
+ #: app/features/mec/meta_boxes/display_options.php:739
2297
+ #: app/features/mec/meta_boxes/display_options.php:889
2298
+ #: app/features/mec/meta_boxes/display_options.php:946
2299
+ #: app/features/mec/meta_boxes/display_options.php:1038
2300
+ #: app/features/mec/meta_boxes/display_options.php:1124
2301
+ msgid "Style"
2302
+ msgstr "Styl"
2303
+
2304
+ #: app/features/labels.php:116 app/features/labels.php:141
2305
+ msgid "Normal"
2306
+ msgstr "Normální"
2307
+
2308
+ # Kontext
2309
+ #: app/features/labels.php:117 app/features/labels.php:142
2310
+ #: app/skins/agenda/render.php:37 app/skins/available_spot/tpl.php:38
2311
+ #: app/skins/carousel/render.php:44 app/skins/countdown/tpl.php:28
2312
+ #: app/skins/cover/tpl.php:28 app/skins/daily_view/render.php:48
2313
+ #: app/skins/grid/render.php:49 app/skins/list/render.php:39
2314
+ #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
2315
+ #: app/skins/monthly_view/calendar_clean.php:107
2316
+ #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2317
+ #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:139
2318
+ #: app/skins/weekly_view/render.php:56 app/skins/yearly_view/render.php:48
2319
+ msgid "Featured"
2320
+ msgstr "Ztvárněná"
2321
+
2322
+ #: app/features/labels.php:118 app/features/labels.php:143
2323
+ #: app/libraries/main.php:5167 app/skins/agenda/render.php:41
2324
+ #: app/skins/available_spot/tpl.php:42 app/skins/carousel/render.php:45
2325
+ #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:32
2326
+ #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:50
2327
+ #: app/skins/list/render.php:43 app/skins/masonry/render.php:29
2328
+ #: app/skins/monthly_view/calendar.php:111
2329
+ #: app/skins/monthly_view/calendar_clean.php:111
2330
+ #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2331
+ #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:140
2332
+ #: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
2333
+ msgid "Canceled"
2334
+ msgstr "Zrušená"
2335
+
2336
+ #: app/features/labels.php:120 app/features/labels.php:145
2337
+ msgid "You can show featured and canceled events by a different style!"
2338
+ msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
2339
+
2340
+ #: app/features/labels.php:180 app/features/locations.php:232
2341
+ #: app/features/organizers.php:206 app/features/speakers.php:257
2342
+ #: app/modules/booking/steps/tickets.php:38
2343
+ msgid "Count"
2344
+ msgstr "Spočítat"
2345
+
2346
+ # Nenanpadá mě správný český termín
2347
+ #: app/features/labels.php:181 app/features/locations.php:233
2348
+ #: app/features/organizers.php:207
2349
+ msgid "Slug"
2350
+ msgstr "Slug"
2351
+
2352
+ #: app/features/labels.php:221 app/features/locations.php:287
2353
+ #, php-format
2354
+ msgid "Event %s"
2355
+ msgstr "Událost %s"
2356
+
2357
+ #: app/features/locations.php:59 app/features/mec.php:338
2358
+ #: app/features/mec/dashboard.php:245 app/features/mec/meta_boxes/filter.php:96
2359
+ #: app/libraries/main.php:4920
2360
+ msgid "Locations"
2361
+ msgstr "Umístění"
2362
+
2363
+ #: app/features/locations.php:105 app/features/locations.php:159
2364
+ #: app/features/locations.php:231
2365
+ msgid "Address"
2366
+ msgstr "Adresa"
2367
+
2368
+ #: app/features/locations.php:108 app/features/locations.php:160
2369
+ msgid "Enter the location address"
2370
+ msgstr "Vložit adresu místa"
2371
+
2372
+ #: app/features/locations.php:122 app/features/locations.php:172
2373
+ #: app/features/locations.php:325
2374
+ msgid "Latitude"
2375
+ msgstr "Zeměpisná šířka"
2376
+
2377
+ #: app/features/locations.php:125 app/features/locations.php:173
2378
+ msgid "Geo latitude (Optional)"
2379
+ msgstr "Zeměpisná šířka (volitelné)"
2380
+
2381
+ #: app/features/locations.php:130 app/features/locations.php:176
2382
+ #: app/features/locations.php:326
2383
+ msgid "Longitude"
2384
+ msgstr "Zeměpisná délka"
2385
+
2386
+ #: app/features/locations.php:133 app/features/locations.php:177
2387
+ msgid "Geo longitude (Optional)"
2388
+ msgstr "Zeměpisná délka (volitelné)"
2389
+
2390
+ #: app/features/locations.php:138 app/features/locations.php:180
2391
+ #: app/features/organizers.php:127 app/features/organizers.php:160
2392
+ #: app/features/speakers.php:158 app/features/speakers.php:203
2393
+ msgid "Thumbnail"
2394
+ msgstr "Náhled"
2395
+
2396
+ #: app/features/locations.php:143 app/features/locations.php:183
2397
+ #: app/features/organizers.php:132 app/features/organizers.php:163
2398
+ #: app/features/speakers.php:163 app/features/speakers.php:206
2399
+ msgid "Upload/Add image"
2400
+ msgstr "Nahrát / přidat obrázek"
2401
+
2402
+ #: app/features/locations.php:144 app/features/locations.php:184
2403
+ #: app/features/locations.php:340 app/features/locations.php:347
2404
+ #: app/features/organizers.php:133 app/features/organizers.php:164
2405
+ #: app/features/organizers.php:299 app/features/organizers.php:306
2406
+ #: app/features/speakers.php:164 app/features/speakers.php:207
2407
+ msgid "Remove image"
2408
+ msgstr "Odebrat obrázek"
2409
+
2410
+ #: app/features/locations.php:290
2411
+ msgid "Hide location"
2412
+ msgstr "Skrýt místo"
2413
+
2414
+ #: app/features/locations.php:291
2415
+ msgid "Insert a new location"
2416
+ msgstr "Vložit nové místo"
2417
+
2418
+ #: app/features/locations.php:299
2419
+ msgid "Choose one of saved locations or insert new one below."
2420
+ msgstr "Vyberte jedno z uložených míst nebo vložte nové."
2421
+
2422
+ #: app/features/locations.php:306
2423
+ msgid "Location Name"
2424
+ msgstr "Název místa"
2425
+
2426
+ #: app/features/locations.php:307
2427
+ msgid "eg. City Hall"
2428
+ msgstr "např. Radnice"
2429
+
2430
+ #: app/features/locations.php:310 app/features/mec/settings.php:668
2431
+ #: app/widgets/single.php:115
2432
+ msgid "Event Location"
2433
+ msgstr "Místo události"
2434
+
2435
+ #: app/features/locations.php:311
2436
+ msgid "eg. City hall, Manhattan, New York"
2437
+ msgstr "např. Radnice, Dominikánská 2, Brno"
2438
+
2439
+ #: app/features/locations.php:329
2440
+ msgid "Latitude/Longitude"
2441
+ msgstr "Zeměpisná šířka / délka"
2442
+
2443
+ #: app/features/locations.php:330
2444
+ msgid ""
2445
+ "If you leave the latitude and longitude empty, Modern Events Calendar tries "
2446
+ "to convert the location address to geopoint, Latitude and Longitude are the "
2447
+ "units that represent the coordinates at geographic coordinate system. To "
2448
+ "make a search, use the name of a place, city, state, or address, or click "
2449
+ "the location on the map to find lat long coordinates."
2450
+ msgstr ""
2451
+ "Pokud necháte zeměpisnou šířku a délku prázdnou, pokusí se MEC převést "
2452
+ "adresu místa na geobod, Zeměpisná šířka a délka jsou jednotky, které "
2453
+ "představují souřadnice v systému zeměpisných souřadnic. Chcete-li vyhledat "
2454
+ "místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
2455
+ "na mapě a vyhledejte souřadnice délky a šířky."
2456
+
2457
+ #: app/features/locations.php:330
2458
+ msgid "Get Latitude and Longitude"
2459
+ msgstr "Získejte šířku a délku"
2460
+
2461
+ #: app/features/locations.php:339 app/features/organizers.php:298
2462
+ msgid "Choose image"
2463
+ msgstr "Vyberte obrázek"
2464
+
2465
+ #: app/features/locations.php:353
2466
+ msgid "Don't show map in single event page"
2467
+ msgstr "Nezobrazovat mapu na jednostránkové události"
2468
+
2469
+ #: app/features/locations.php:356 app/libraries/main.php:4954
2470
+ msgid "Other Locations"
2471
+ msgstr "Další místa"
2472
+
2473
+ #: app/features/locations.php:358
2474
+ msgid ""
2475
+ "You can select extra locations in addition to main location if you like."
2476
+ msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
2477
+
2478
+ #: app/features/login.php:61 app/features/login.php:63
2479
+ msgid "<strong>"
2480
+ msgstr "<strong>"
2481
+
2482
+ #: app/features/mec.php:161
2483
+ msgid ""
2484
+ "Activation faild. Please check your purchase code or license type."
2485
+ "<br><b>Note: Your purchase code should match your licesne type.</b>"
2486
+ msgstr ""
2487
+ "Aktivace selhala. Zkontrolujte prosím svůj nákupní kód nebo typ licence. "
2488
+ "<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
2489
+ "</b>"
2490
+
2491
+ #: app/features/mec.php:161
2492
+ msgid "Troubleshooting"
2493
+ msgstr "Odstraňování problémů"
2494
+
2495
+ #: app/features/mec.php:212
2496
+ msgid ""
2497
+ "Your options is not in JSON format. Please insert correct options in this "
2498
+ "field and try again."
2499
+ msgstr ""
2500
+ "Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
2501
+ "a zkuste to znovu."
2502
+
2503
+ #: app/features/mec.php:219
2504
+ msgid "Your options field can not be empty!"
2505
+ msgstr "Pole možností nemůže být prázdné!"
2506
+
2507
+ #: app/features/mec.php:225
2508
+ msgid "Your options imported successfuly."
2509
+ msgstr "Vaše možnosti byly úspěšně importovány."
2510
+
2511
+ #: app/features/mec.php:318
2512
+ msgid "MEC - Support"
2513
+ msgstr "MEC - podpora"
2514
+
2515
+ #: app/features/mec.php:318 app/features/mec/support-page.php:9
2516
+ #: app/features/mec/support.php:80 app/features/mec/support.php:93
2517
+ msgid "Support"
2518
+ msgstr "Podpora"
2519
+
2520
+ #: app/features/mec.php:339 app/features/mec/dashboard.php:252
2521
+ #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2522
+ #: app/libraries/main.php:4922
2523
+ msgid "Organizers"
2524
+ msgstr "Organizátoři"
2525
+
2526
+ #: app/features/mec.php:347 app/features/mec.php:367
2527
+ #: app/features/mec/dashboard.php:238
2528
+ msgid "Shortcodes"
2529
+ msgstr "Zkrácené kódy"
2530
+
2531
+ #: app/features/mec.php:348
2532
+ msgid "MEC - Settings"
2533
+ msgstr "MEC - Nastavení"
2534
+
2535
+ #: app/features/mec.php:349
2536
+ msgid "MEC - Addons"
2537
+ msgstr "MEC - doplňky"
2538
+
2539
+ #: app/features/mec.php:349 app/features/mec/addons.php:22
2540
+ msgid "Addons"
2541
+ msgstr "Doplňky"
2542
+
2543
+ #: app/features/mec.php:369
2544
+ msgid "Add Shortcode"
2545
+ msgstr "Přidat zkrácený kód"
2546
+
2547
+ #: app/features/mec.php:370
2548
+ msgid "Add New Shortcode"
2549
+ msgstr "Přidat nový zkrácený kód"
2550
+
2551
+ #: app/features/mec.php:371
2552
+ msgid "No shortcodes found!"
2553
+ msgstr "Nebyly nalezeny žádné zkrácené kódy!"
2554
+
2555
+ #: app/features/mec.php:372
2556
+ msgid "All Shortcodes"
2557
+ msgstr "Všechny zkrácené kódy"
2558
+
2559
+ #: app/features/mec.php:373
2560
+ msgid "Edit shortcodes"
2561
+ msgstr "Editace zkrácených kódů"
2562
+
2563
+ #: app/features/mec.php:374
2564
+ msgid "No shortcodes found in Trash!"
2565
+ msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
2566
+
2567
+ #: app/features/mec.php:427
2568
+ msgid "Display Options"
2569
+ msgstr "Zobrazit možnosti"
2570
+
2571
+ #: app/features/mec.php:428
2572
+ msgid "Filter Options"
2573
+ msgstr "Filtrovat možnosti"
2574
+
2575
+ #: app/features/mec.php:430
2576
+ msgid "Search Form"
2577
+ msgstr "Vyhledávací formulář"
2578
+
2579
+ #: app/features/mec.php:782
2580
+ msgid "Display content's images as Popup"
2581
+ msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
2582
+
2583
+ #: app/features/mec.php:795
2584
+ msgid "Single Event Display Method"
2585
+ msgstr "Metoda zobrazení jedné události"
2586
+
2587
+ #: app/features/mec.php:800
2588
+ msgid "Separate Window"
2589
+ msgstr "Samostatné okno"
2590
+
2591
+ #: app/features/mec.php:801
2592
+ msgid "Modal 1"
2593
+ msgstr "Modal 1"
2594
+
2595
+ #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2596
+ #: app/features/mec/dashboard.php:81 app/features/mec/support-page.php:21
2597
+ msgid "Version"
2598
+ msgstr "Verze"
2599
+
2600
+ #: app/features/mec/addons.php:82
2601
+ msgid "Coming Soon"
2602
+ msgstr "Již brzy"
2603
+
2604
+ #: app/features/mec/addons.php:93
2605
+ msgid ""
2606
+ "<strong>\"file_get_contents\"</strong> and <strong>\"Curl\"</strong> "
2607
+ "functions are <strong>not activated</strong> on your server. Please contact "
2608
+ "your host provider in this regard."
2609
+ msgstr ""
2610
+ "<strong>\"file_get_contents\"</strong> a <strong>\"Curl\"</strong> funkce "
2611
+ "nejsou <strong>aktivovány</strong> na vašem serveru. Prosím obraťe se v "
2612
+ "tomto případě na svého poskytovatele."
2613
+
2614
+ #: app/features/mec/booking.php:70 app/features/mec/messages.php:13
2615
+ #: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
2616
+ #: app/features/mec/settings.php:53 app/features/mec/single.php:15
2617
+ #: app/features/mec/styling.php:35 app/features/mec/support-page.php:60
2618
+ msgid "Search..."
2619
+ msgstr "Vyhledávání ..."
2620
+
2621
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2622
+ #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2623
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:646
2624
+ #: app/features/mec/booking.php:660 app/features/mec/messages.php:15
2625
+ #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
2626
+ #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
2627
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:357
2628
+ #: app/features/mec/modules.php:367 app/features/mec/modules.php:409
2629
+ #: app/features/mec/modules.php:423 app/features/mec/notifications.php:14
2630
+ #: app/features/mec/notifications.php:510
2631
+ #: app/features/mec/notifications.php:522
2632
+ #: app/features/mec/notifications.php:618
2633
+ #: app/features/mec/notifications.php:632 app/features/mec/settings.php:55
2634
+ #: app/features/mec/settings.php:900 app/features/mec/settings.php:910
2635
+ #: app/features/mec/settings.php:968 app/features/mec/settings.php:982
2636
+ #: app/features/mec/single.php:17 app/features/mec/single.php:234
2637
+ #: app/features/mec/single.php:244 app/features/mec/single.php:286
2638
+ #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2639
+ #: app/features/mec/styles.php:31 app/features/mec/styles.php:40
2640
+ #: app/features/mec/styles.php:77 app/features/mec/styles.php:86
2641
+ #: app/features/mec/styling.php:37 app/features/mec/styling.php:242
2642
+ #: app/features/mec/styling.php:251 app/features/mec/styling.php:314
2643
+ #: app/features/mec/styling.php:323
2644
+ msgid "Save Changes"
2645
+ msgstr "Uložit změny"
2646
+
2647
+ #: app/features/mec/booking.php:96
2648
+ msgid "Enable booking module"
2649
+ msgstr "Povolit modul rezervace"
2650
+
2651
+ #: app/features/mec/booking.php:97
2652
+ msgid ""
2653
+ "After enabling and saving the settings, reloading the page will add 'payment "
2654
+ "Gateways' to the settings and a new menu item on the Dashboard"
2655
+ msgstr ""
2656
+ "Po povolení a uložení nastavení se po opětovném načtení stránky k nastavení "
2657
+ "přidá „platební brána“ a nová položka nabídky na řídícím panelu"
2658
+
2659
+ #: app/features/mec/booking.php:102 app/features/mec/booking.php:107
2660
+ #: app/features/mec/modules.php:306 app/features/mec/modules.php:311
2661
+ msgid "Date Format"
2662
+ msgstr "Formát data"
2663
+
2664
+ #: app/features/mec/booking.php:108
2665
+ msgid "Default is Y-m-d"
2666
+ msgstr "Výchozí je Y-m-d"
2667
+
2668
+ #: app/features/mec/booking.php:115
2669
+ #: app/features/mec/meta_boxes/display_options.php:121
2670
+ #: app/features/mec/meta_boxes/display_options.php:308
2671
+ #: app/features/mec/meta_boxes/display_options.php:378
2672
+ #: app/features/mec/meta_boxes/display_options.php:837
2673
+ #: app/features/mec/meta_boxes/display_options.php:1104
2674
+ #: app/features/mec/meta_boxes/display_options.php:1212
2675
+ msgid "Limit"
2676
+ msgstr "Limit"
2677
+
2678
+ #: app/features/mec/booking.php:117
2679
+ msgid "Default is empty"
2680
+ msgstr "Výchozí hodnota je prázdná"
2681
+
2682
+ #: app/features/mec/booking.php:120
2683
+ msgid "Booking Limit"
2684
+ msgstr "Limit rezervace"
2685
+
2686
+ #: app/features/mec/booking.php:121
2687
+ msgid ""
2688
+ "Total tickets that a user can book. It is useful if you're providing free "
2689
+ "tickets. Leave it empty for unlimited booking."
2690
+ msgstr ""
2691
+ "Celkový počet vstupenek, které si uživatel může zarezervovat. Je užitečné, "
2692
+ "pokud poskytujete bezplatné vstupenky. Pro neomezenou rezervaci to nechte "
2693
+ "prázdné."
2694
+
2695
+ #: app/features/mec/booking.php:128
2696
+ msgid "Maximum Dates"
2697
+ msgstr "Maximum termínů"
2698
+
2699
+ #: app/features/mec/booking.php:130
2700
+ msgid "Default is 6"
2701
+ msgstr "Výchozí je 6"
2702
+
2703
+ #: app/features/mec/booking.php:134 app/features/mec/booking.php:139
2704
+ msgid "Show Booking Form Interval"
2705
+ msgstr "Zobrazit Interval rezervačního formuláře"
2706
+
2707
+ #: app/features/mec/booking.php:136
2708
+ msgid "Minutes (e.g 5)"
2709
+ msgstr "Minuty (např. 5)"
2710
+
2711
+ #: app/features/mec/booking.php:140
2712
+ msgid ""
2713
+ "You can show booking form only at certain time before event start. If you "
2714
+ "set this option to 30 then booking form will open only 30 minutes before "
2715
+ "starting the event!"
2716
+ msgstr ""
2717
+ "Rezervační formulář můžete zobrazit pouze v určitý čas před zahájením akce. "
2718
+ "Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
2719
+ "minut před zahájením akce!"
2720
+
2721
+ #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2722
+ #: app/features/mec/settings.php:575 app/features/mec/settings.php:585
2723
+ msgid "Thank You Page"
2724
+ msgstr "Stránka s poděkováním"
2725
+
2726
+ #: app/features/mec/booking.php:158
2727
+ msgid ""
2728
+ "User redirects to this page after booking. Leave it empty if you want to "
2729
+ "disable it."
2730
+ msgstr ""
2731
+ "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
2732
+ "vypnout, ponechte ji prázdnou."
2733
+
2734
+ #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2735
+ #: app/features/mec/settings.php:595 app/features/mec/settings.php:600
2736
+ msgid "Thank You Page Time Interval"
2737
+ msgstr "Stránka s poděkováním časového intervalu"
2738
+
2739
+ #: app/features/mec/booking.php:167 app/features/mec/settings.php:597
2740
+ msgid "2000 mean 2 seconds"
2741
+ msgstr "2000 znamená 2 vteřiny"
2742
+
2743
+ #: app/features/mec/booking.php:171 app/features/mec/settings.php:601
2744
+ msgid ""
2745
+ "Waiting time before redirecting to thank you page. It's in miliseconds so "
2746
+ "2000 means 2 seconds."
2747
+ msgstr ""
2748
+ "Čekací doba před přesměrováním na stránku s poděkováním. Je to v "
2749
+ "milisekundách, takže 2000 znamená 2 vteřiny."
2750
+
2751
+ #: app/features/mec/booking.php:182
2752
+ msgid "Enable Express Attendees Form"
2753
+ msgstr "Povolit formulář Expres účastníci"
2754
+
2755
+ #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2756
+ msgid "Attendees Form"
2757
+ msgstr "Formulář účastníků"
2758
+
2759
+ #: app/features/mec/booking.php:187
2760
+ msgid ""
2761
+ "Users are able to apply first attendee information for other attendees in "
2762
+ "the booking form."
2763
+ msgstr ""
2764
+ "Uživatelé mohou v rezervačním formuláři použít informace prvních účastníků "
2765
+ "pro ostatní účastníky."
2766
+
2767
+ #: app/features/mec/booking.php:200
2768
+ msgid "Enable Invoice"
2769
+ msgstr "Povolit fakturu"
2770
+
2771
+ #: app/features/mec/booking.php:211
2772
+ msgid "Enable Booking for Ongoing Events"
2773
+ msgstr "Povolit rezervaci pro probíhající události"
2774
+
2775
+ #: app/features/mec/booking.php:216
2776
+ msgid "Email verification"
2777
+ msgstr "Ověřovací email"
2778
+
2779
+ #: app/features/mec/booking.php:222
2780
+ msgid "Auto verification for free bookings"
2781
+ msgstr "Automatické ověření pro rezervace zdarma"
2782
+
2783
+ #: app/features/mec/booking.php:231
2784
+ msgid "Auto verification for paid bookings"
2785
+ msgstr "Automatické ověření pro placené rezervace"
2786
+
2787
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:155
2788
+ #: app/libraries/main.php:573
2789
+ msgid "Booking Confirmation"
2790
+ msgstr "Potvrzení rezervace"
2791
+
2792
+ #: app/features/mec/booking.php:241
2793
+ msgid "Auto confirmation for free bookings"
2794
+ msgstr "Automatické potvrzení pro rezervace zdarma"
2795
+
2796
+ #: app/features/mec/booking.php:250
2797
+ msgid "Auto confirmation for paid bookings"
2798
+ msgstr "Automatické ověření pro placené rezervace"
2799
+
2800
+ #: app/features/mec/booking.php:269
2801
+ msgid "Enable coupons module"
2802
+ msgstr "Povolit modul vstupenek"
2803
+
2804
+ #: app/features/mec/booking.php:271
2805
+ msgid ""
2806
+ "After enabling and saving the settings,, you should reload the page to see a "
2807
+ "new menu on the Dashboard > Booking"
2808
+ msgstr ""
2809
+ "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
2810
+ "novou nabídku na řídícím panelu > Rezervace"
2811
+
2812
+ #: app/features/mec/booking.php:279 app/libraries/main.php:552
2813
+ msgid "Taxes / Fees"
2814
+ msgstr "Daně / poplatky"
2815
+
2816
+ #: app/features/mec/booking.php:287
2817
+ msgid "Enable taxes / fees module"
2818
+ msgstr "Povolit modul daní / poplatků"
2819
+
2820
+ #: app/features/mec/booking.php:292
2821
+ msgid "Add Fee"
2822
+ msgstr "Přidat poplatek"
2823
+
2824
+ #: app/features/mec/booking.php:356 app/libraries/main.php:553
2825
+ msgid "Ticket Variations & Options"
2826
+ msgstr "Varianty a možnosti vstupenek"
2827
+
2828
+ #: app/features/mec/booking.php:364
2829
+ msgid "Enable ticket options module"
2830
+ msgstr "Povolit modul možností vstupenek"
2831
+
2832
+ #: app/features/mec/booking.php:369
2833
+ msgid "Add Variation / Option"
2834
+ msgstr "Přidat varianty / možnosti"
2835
+
2836
+ #: app/features/mec/booking.php:572
2837
+ msgid "Enable Organizer Payment Module"
2838
+ msgstr "Povolit platební modul organizátora"
2839
+
2840
+ #: app/features/mec/booking.php:576
2841
+ msgid "Organizer Payment"
2842
+ msgstr "Platba organizátora"
2843
+
2844
+ #: app/features/mec/booking.php:577
2845
+ msgid ""
2846
+ "By enabling this module, organizers are able to insert their own payment "
2847
+ "credentials for enabled gateways per event and receive the payments directly!"
2848
+ msgstr ""
2849
+ "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
2850
+ "údaje pro povolené brány pro události a přijímat platby přímo!"
2851
+
2852
+ #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2853
+ #: app/features/mec/modules.php:387 app/features/mec/notifications.php:596
2854
+ #: app/features/mec/settings.php:946 app/features/mec/single.php:264
2855
+ #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2856
+ msgid "Saved"
2857
+ msgstr "Uloženo"
2858
+
2859
+ #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2860
+ #: app/features/mec/modules.php:388 app/features/mec/notifications.php:597
2861
+ #: app/features/mec/settings.php:947 app/features/mec/single.php:265
2862
+ #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2863
+ msgid "Settings Saved!"
2864
+ msgstr "Nastavení uložena!"
2865
+
2866
+ #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2867
+ #: app/features/mec/modules.php:390 app/features/mec/modules.php:412
2868
+ #: app/features/mec/notifications.php:599
2869
+ #: app/features/mec/notifications.php:621 app/features/mec/settings.php:949
2870
+ #: app/features/mec/settings.php:971 app/features/mec/single.php:267
2871
+ #: app/features/mec/single.php:289 app/libraries/main.php:5166
2872
+ msgid "Verified"
2873
+ msgstr "Ověřeno"
2874
+
2875
+ #: app/features/mec/booking.php:651 app/features/mec/modules.php:414
2876
+ #: app/features/mec/notifications.php:623 app/features/mec/settings.php:973
2877
+ #: app/features/mec/single.php:291
2878
+ msgid "Please Refresh Page"
2879
+ msgstr "Prosím obnovte stránku"
2880
+
2881
+ #: app/features/mec/dashboard.php:60
2882
+ #, php-format
2883
+ msgid "Welcome %s"
2884
+ msgstr "Vítejte %s"
2885
+
2886
+ #: app/features/mec/dashboard.php:63
2887
+ #, php-format
2888
+ msgid "%s - Most Powerful & Easy to Use Events Management System"
2889
+ msgstr "%s - Nejvýkonnější a snadno použitelný systém pro správu událostí"
2890
+
2891
+ #: app/features/mec/dashboard.php:63
2892
+ msgid "Modern Events Calendar (Lite)"
2893
+ msgstr "Modern Events Calendar (Lite)"
2894
+
2895
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
2896
+ msgctxt "plugin rate"
2897
+ msgid "Rate the plugin ★★★★★"
2898
+ msgstr "Ohodnoťe doplněk ★★★★★"
2899
+
2900
+ #: app/features/mec/dashboard.php:70
2901
+ msgid "Update"
2902
+ msgstr "Aktualizovat"
2903
+
2904
+ #: app/features/mec/dashboard.php:92
2905
+ #, php-format
2906
+ msgid ""
2907
+ "You're using %s version of Modern Events Calendar. To use advanced booking "
2908
+ "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2909
+ "Spots, etc you should upgrade to the Pro version."
2910
+ msgstr ""
2911
+ "Používáte% s verzi kalendářeModern Events Calendar. Chcete-li používat "
2912
+ "pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
2913
+ "pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
2914
+
2915
+ #: app/features/mec/dashboard.php:92
2916
+ msgid "lite"
2917
+ msgstr " omezenou"
2918
+
2919
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2920
+ msgid "GO PREMIUM"
2921
+ msgstr "PŘEJÍT NA PREMIUM"
2922
+
2923
+ #: app/features/mec/dashboard.php:98
2924
+ #, php-format
2925
+ msgid ""
2926
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2927
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2928
+ msgstr ""
2929
+ "Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
2930
+ "uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte % s"
2931
+
2932
+ #: app/features/mec/dashboard.php:98
2933
+ msgid "WordPress"
2934
+ msgstr "WordPress"
2935
+
2936
+ #: app/features/mec/dashboard.php:98
2937
+ msgid "Copouns!"
2938
+ msgstr "Kupóny!"
2939
+
2940
+ #: app/features/mec/dashboard.php:126
2941
+ msgid "Getting started with Modern Events Calendar"
2942
+ msgstr "Začínáme s Modern Events Calendar"
2943
+
2944
+ #: app/features/mec/dashboard.php:127
2945
+ msgid ""
2946
+ "In this short video, you can learn how to make an event and put a calendar "
2947
+ "on your website. Please watch this 2 minutes video to the end."
2948
+ msgstr ""
2949
+ "V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
2950
+ "svoje stránky. Sledujte prosím toto 2minutové video až do konce."
2951
+
2952
+ #: app/features/mec/dashboard.php:143
2953
+ msgid "MEC Activate"
2954
+ msgstr "MEC aktivace"
2955
+
2956
+ #: app/features/mec/dashboard.php:149
2957
+ msgid ""
2958
+ "In order to use all plugin features and options, please enter your purchase "
2959
+ "code."
2960
+ msgstr ""
2961
+ "Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
2962
+ "zakoupený kód."
2963
+
2964
+ #: app/features/mec/dashboard.php:207
2965
+ msgid "Activate Addons"
2966
+ msgstr "Aktivovat doplňky"
2967
+
2968
+ #: app/features/mec/dashboard.php:216
2969
+ msgid "You cannot access this section."
2970
+ msgstr "Nemáte přístup do této části."
2971
+
2972
+ #: app/features/mec/dashboard.php:263 app/features/mec/settings.php:371
2973
+ msgid "Upcoming Events"
2974
+ msgstr "Nadcházející události"
2975
+
2976
+ #: app/features/mec/dashboard.php:287
2977
+ msgid "Popular Gateways"
2978
+ msgstr "Oblíbené platební brány"
2979
+
2980
+ #: app/features/mec/dashboard.php:341
2981
+ msgid "Total Bookings"
2982
+ msgstr "Celkový počet rezervací"
2983
+
2984
+ #: app/features/mec/dashboard.php:368
2985
+ msgid "This Month"
2986
+ msgstr "Tento měsíc"
2987
+
2988
+ #: app/features/mec/dashboard.php:369
2989
+ msgid "Last Month"
2990
+ msgstr "Minulý měsíc"
2991
+
2992
+ #: app/features/mec/dashboard.php:370
2993
+ msgid "This Year"
2994
+ msgstr "Tento rok"
2995
+
2996
+ #: app/features/mec/dashboard.php:371
2997
+ msgid "Last Year"
2998
+ msgstr "Minulý rok"
2999
+
3000
+ #: app/features/mec/dashboard.php:383
3001
+ msgid "Bar"
3002
+ msgstr "Pruh"
3003
+
3004
+ #: app/features/mec/dashboard.php:384
3005
+ msgid "Line"
3006
+ msgstr "Čára"
3007
+
3008
+ #: app/features/mec/dashboard.php:386
3009
+ msgid "Filter"
3010
+ msgstr "Filtr"
3011
+
3012
+ #: app/features/mec/dashboard.php:402
3013
+ #, php-format
3014
+ msgid "Total Sells (%s)"
3015
+ msgstr "Celkový prodej %s"
3016
+
3017
+ #: app/features/mec/dashboard.php:423
3018
+ msgid "Change Log"
3019
+ msgstr "Změna logu"
3020
+
3021
+ #: app/features/mec/ie.php:21
3022
+ msgid ""
3023
+ "Insert your backup files below and press import to restore your site's "
3024
+ "options to the last backup."
3025
+ msgstr ""
3026
+ "Vložte níže své záložní soubory a stisknutím tlačítka import obnovte "
3027
+ "možnosti svého webu pomocí poslední zálohy."
3028
+
3029
+ #: app/features/mec/ie.php:22
3030
+ msgid ""
3031
+ "WARNING! Restoring backup will overwrite all of your current option values. "
3032
+ "Caution Indeed."
3033
+ msgstr ""
3034
+ "VAROVÁNÍ! Obnovení zálohy přepíše všechny vaše aktuální hodnoty možností. "
3035
+ "Zvažte tuto akci."
3036
+
3037
+ #: app/features/mec/ie.php:25
3038
+ msgid "Please paste your options here"
3039
+ msgstr "Vložte prosím své možnosti sem"
3040
+
3041
+ #: app/features/mec/ie.php:27
3042
+ msgid "Import Settings"
3043
+ msgstr "Nastavení importu"
3044
+
3045
+ #: app/features/mec/ie.php:37
3046
+ msgid "Download Settings"
3047
+ msgstr "Stáhnout nastavení"
3048
+
3049
+ #: app/features/mec/messages.php:28 app/features/mec/support.php:66
3050
+ #: app/libraries/main.php:789
3051
+ msgid "Messages"
3052
+ msgstr "Zprávy"
3053
+
3054
+ #: app/features/mec/messages.php:31
3055
+ msgid ""
3056
+ "You can change some MEC messages here simply. For example if you like to "
3057
+ "change \"REGISTER\" button label, you can do it here. By the Way, if your "
3058
+ "website is a multilingual website, we recommend you to change the messages/"
3059
+ "phrases from language files."
3060
+ msgstr ""
3061
+ "Zde můžete jednoduše změnit některé zprávy MEC. Pokud například chcete "
3062
+ "změnit označení tlačítka „REGISTRACE“, můžete to udělat zde. Mimochodem, "
3063
+ "pokud je váš web vícejazyčný, doporučujeme vám změnit zprávy / fráze přímo "
3064
+ "v jazykových souborech."
3065
+
3066
+ #: app/features/mec/meta_boxes/display_options.php:22
3067
+ msgid "Skin"
3068
+ msgstr "Vzhled"
3069
+
3070
+ #: app/features/mec/meta_boxes/display_options.php:40
3071
+ #: app/features/mec/meta_boxes/display_options.php:191
3072
+ #: app/features/mec/meta_boxes/display_options.php:577
3073
+ #: app/features/mec/meta_boxes/display_options.php:891
3074
+ #: app/features/mec/settings.php:235 app/features/mec/settings.php:259
3075
+ #: app/features/mec/settings.php:268 app/features/mec/settings.php:309
3076
+ #: app/features/mec/settings.php:333 app/features/mec/settings.php:342
3077
+ msgid "Classic"
3078
+ msgstr "Klasický"
3079
+
3080
+ #: app/features/mec/meta_boxes/display_options.php:41
3081
+ #: app/features/mec/meta_boxes/display_options.php:193
3082
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:270
3083
+ #: app/features/mec/settings.php:334 app/features/mec/settings.php:344
3084
+ msgid "Minimal"
3085
+ msgstr "Minimální"
3086
+
3087
+ #: app/features/mec/meta_boxes/display_options.php:42
3088
+ #: app/features/mec/meta_boxes/display_options.php:194
3089
+ #: app/features/mec/meta_boxes/display_options.php:527
3090
+ #: app/features/mec/meta_boxes/display_options.php:579
3091
+ #: app/features/mec/meta_boxes/display_options.php:741
3092
+ #: app/features/mec/meta_boxes/display_options.php:893
3093
+ #: app/features/mec/settings.php:237 app/features/mec/settings.php:250
3094
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:271
3095
+ #: app/features/mec/settings.php:311 app/features/mec/settings.php:324
3096
+ #: app/features/mec/settings.php:335 app/features/mec/settings.php:345
3097
+ msgid "Modern"
3098
+ msgstr "Moderní"
3099
+
3100
+ #: app/features/mec/meta_boxes/display_options.php:43
3101
+ #: app/features/mec/settings.php:262 app/features/mec/settings.php:336
3102
+ msgid "Standard"
3103
+ msgstr "Standardní"
3104
+
3105
+ #: app/features/mec/meta_boxes/display_options.php:44
3106
+ #: app/features/mec/settings.php:263 app/features/mec/settings.php:337
3107
+ msgid "Accordion"
3108
+ msgstr "Akordeon"
3109
+
3110
+ #: app/features/mec/meta_boxes/display_options.php:50
3111
+ #: app/features/mec/meta_boxes/display_options.php:203
3112
+ #: app/features/mec/meta_boxes/display_options.php:355
3113
+ #: app/features/mec/meta_boxes/display_options.php:634
3114
+ #: app/features/mec/meta_boxes/display_options.php:667
3115
+ #: app/features/mec/meta_boxes/display_options.php:814
3116
+ #: app/features/mec/meta_boxes/display_options.php:1049
3117
+ #: app/features/mec/meta_boxes/display_options.php:1136
3118
+ msgid "Today"
3119
+ msgstr "Dnes"
3120
+
3121
+ #: app/features/mec/meta_boxes/display_options.php:51
3122
+ #: app/features/mec/meta_boxes/display_options.php:204
3123
+ #: app/features/mec/meta_boxes/display_options.php:356
3124
+ #: app/features/mec/meta_boxes/display_options.php:635
3125
+ #: app/features/mec/meta_boxes/display_options.php:668
3126
+ #: app/features/mec/meta_boxes/display_options.php:815
3127
+ #: app/features/mec/meta_boxes/display_options.php:1050
3128
+ #: app/features/mec/meta_boxes/display_options.php:1137
3129
+ msgid "Tomorrow"
3130
+ msgstr "Zítra"
3131
+
3132
+ #: app/features/mec/meta_boxes/display_options.php:52
3133
+ #: app/features/mec/meta_boxes/display_options.php:205
3134
+ #: app/features/mec/meta_boxes/display_options.php:357
3135
+ #: app/features/mec/meta_boxes/display_options.php:410
3136
+ #: app/features/mec/meta_boxes/display_options.php:587
3137
+ #: app/features/mec/meta_boxes/display_options.php:636
3138
+ #: app/features/mec/meta_boxes/display_options.php:669
3139
+ #: app/features/mec/meta_boxes/display_options.php:704
3140
+ #: app/features/mec/meta_boxes/display_options.php:750
3141
+ #: app/features/mec/meta_boxes/display_options.php:816
3142
+ #: app/features/mec/meta_boxes/display_options.php:1051
3143
+ #: app/features/mec/meta_boxes/display_options.php:1138
3144
+ msgid "Start of Current Month"
3145
+ msgstr "Začátek aktuálního měsíce"
3146
+
3147
+ #: app/features/mec/meta_boxes/display_options.php:53
3148
+ #: app/features/mec/meta_boxes/display_options.php:206
3149
+ #: app/features/mec/meta_boxes/display_options.php:358
3150
+ #: app/features/mec/meta_boxes/display_options.php:411
3151
+ #: app/features/mec/meta_boxes/display_options.php:588
3152
+ #: app/features/mec/meta_boxes/display_options.php:637
3153
+ #: app/features/mec/meta_boxes/display_options.php:670
3154
+ #: app/features/mec/meta_boxes/display_options.php:705
3155
+ #: app/features/mec/meta_boxes/display_options.php:751
3156
+ #: app/features/mec/meta_boxes/display_options.php:817
3157
+ #: app/features/mec/meta_boxes/display_options.php:1052
3158
+ #: app/features/mec/meta_boxes/display_options.php:1139
3159
+ msgid "Start of Next Month"
3160
+ msgstr "Začátek dalšího měsíce"
3161
+
3162
+ #: app/features/mec/meta_boxes/display_options.php:54
3163
+ #: app/features/mec/meta_boxes/display_options.php:207
3164
+ #: app/features/mec/meta_boxes/display_options.php:359
3165
+ #: app/features/mec/meta_boxes/display_options.php:412
3166
+ #: app/features/mec/meta_boxes/display_options.php:535
3167
+ #: app/features/mec/meta_boxes/display_options.php:589
3168
+ #: app/features/mec/meta_boxes/display_options.php:638
3169
+ #: app/features/mec/meta_boxes/display_options.php:671
3170
+ #: app/features/mec/meta_boxes/display_options.php:706
3171
+ #: app/features/mec/meta_boxes/display_options.php:752
3172
+ #: app/features/mec/meta_boxes/display_options.php:818
3173
+ #: app/features/mec/meta_boxes/display_options.php:1053
3174
+ #: app/features/mec/meta_boxes/display_options.php:1140
3175
+ msgid "On a certain date"
3176
+ msgstr "K určitému datu"
3177
+
3178
+ #: app/features/mec/meta_boxes/display_options.php:57
3179
+ #: app/features/mec/meta_boxes/display_options.php:210
3180
+ #: app/features/mec/meta_boxes/display_options.php:362
3181
+ #: app/features/mec/meta_boxes/display_options.php:415
3182
+ #: app/features/mec/meta_boxes/display_options.php:538
3183
+ #: app/features/mec/meta_boxes/display_options.php:592
3184
+ #: app/features/mec/meta_boxes/display_options.php:641
3185
+ #: app/features/mec/meta_boxes/display_options.php:675
3186
+ #: app/features/mec/meta_boxes/display_options.php:709
3187
+ #: app/features/mec/meta_boxes/display_options.php:755
3188
+ #: app/features/mec/meta_boxes/display_options.php:821
3189
+ #: app/features/mec/meta_boxes/display_options.php:1056
3190
+ #: app/features/mec/meta_boxes/display_options.php:1143
3191
+ #, php-format
3192
+ msgid "eg. %s"
3193
+ msgstr "např. %s"
3194
+
3195
+ #: app/features/mec/meta_boxes/display_options.php:61
3196
+ #: app/features/mec/meta_boxes/display_options.php:65
3197
+ #: app/features/mec/meta_boxes/display_options.php:72
3198
+ #: app/features/mec/meta_boxes/display_options.php:78
3199
+ #: app/features/mec/meta_boxes/display_options.php:85
3200
+ #: app/features/mec/meta_boxes/display_options.php:91
3201
+ #: app/features/mec/meta_boxes/display_options.php:98
3202
+ #: app/features/mec/meta_boxes/display_options.php:102
3203
+ #: app/features/mec/meta_boxes/display_options.php:109
3204
+ #: app/features/mec/meta_boxes/display_options.php:114
3205
+ #: app/features/mec/meta_boxes/display_options.php:214
3206
+ #: app/features/mec/meta_boxes/display_options.php:218
3207
+ #: app/features/mec/meta_boxes/display_options.php:225
3208
+ #: app/features/mec/meta_boxes/display_options.php:230
3209
+ #: app/features/mec/meta_boxes/display_options.php:237
3210
+ #: app/features/mec/meta_boxes/display_options.php:242
3211
+ #: app/features/mec/meta_boxes/display_options.php:249
3212
+ #: app/features/mec/meta_boxes/display_options.php:255
3213
+ #: app/features/mec/meta_boxes/display_options.php:262
3214
+ #: app/features/mec/meta_boxes/display_options.php:266
3215
+ #: app/features/mec/meta_boxes/display_options.php:273
3216
+ #: app/features/mec/meta_boxes/display_options.php:279
3217
+ #: app/features/mec/meta_boxes/display_options.php:286
3218
+ #: app/features/mec/meta_boxes/display_options.php:290
3219
+ #: app/features/mec/meta_boxes/display_options.php:366
3220
+ #: app/features/mec/meta_boxes/display_options.php:371
3221
+ #: app/features/mec/meta_boxes/display_options.php:542
3222
+ #: app/features/mec/meta_boxes/display_options.php:547
3223
+ #: app/features/mec/meta_boxes/display_options.php:825
3224
+ #: app/features/mec/meta_boxes/display_options.php:830
3225
+ #: app/features/mec/meta_boxes/display_options.php:897
3226
+ #: app/features/mec/meta_boxes/display_options.php:903
3227
+ #: app/features/mec/meta_boxes/display_options.php:910
3228
+ #: app/features/mec/meta_boxes/display_options.php:915
3229
+ #: app/features/mec/meta_boxes/display_options.php:922
3230
+ #: app/features/mec/meta_boxes/display_options.php:926
3231
+ #: app/features/mec/meta_boxes/display_options.php:954
3232
+ #: app/features/mec/meta_boxes/display_options.php:958
3233
+ #: app/features/mec/meta_boxes/display_options.php:965
3234
+ #: app/features/mec/meta_boxes/display_options.php:969
3235
+ #: app/features/mec/meta_boxes/display_options.php:976
3236
+ #: app/features/mec/meta_boxes/display_options.php:982
3237
+ #: app/features/mec/meta_boxes/display_options.php:1012
3238
+ #: app/features/mec/meta_boxes/display_options.php:1017
3239
+ #: app/features/mec/meta_boxes/display_options.php:1060
3240
+ #: app/features/mec/meta_boxes/display_options.php:1066
3241
+ #: app/features/mec/meta_boxes/display_options.php:1073
3242
+ #: app/features/mec/meta_boxes/display_options.php:1077
3243
+ #: app/features/mec/meta_boxes/display_options.php:1084
3244
+ #: app/features/mec/meta_boxes/display_options.php:1088
3245
+ #: app/features/mec/meta_boxes/display_options.php:1147
3246
+ #: app/features/mec/meta_boxes/display_options.php:1153
3247
+ #: app/features/mec/meta_boxes/display_options.php:1160
3248
+ #: app/features/mec/meta_boxes/display_options.php:1166
3249
+ #: app/features/mec/meta_boxes/display_options.php:1173
3250
+ #: app/features/mec/meta_boxes/display_options.php:1179
3251
+ #: app/features/mec/meta_boxes/display_options.php:1186
3252
+ #: app/features/mec/meta_boxes/display_options.php:1192
3253
+ #: app/features/mec/meta_boxes/display_options.php:1199
3254
+ #: app/features/mec/meta_boxes/display_options.php:1205
3255
+ msgid "Date Formats"
3256
+ msgstr "Formát data"
3257
+
3258
+ #: app/features/mec/meta_boxes/display_options.php:66
3259
+ #: app/features/mec/meta_boxes/display_options.php:267
3260
+ msgid "Default value is \"M d Y\""
3261
+ msgstr "Výchozí hodnota je \"M d Y\""
3262
+
3263
+ #: app/features/mec/meta_boxes/display_options.php:79
3264
+ msgid "Default values are d, M and l"
3265
+ msgstr "Výchozí hodnoty jsou d, M a l"
3266
+
3267
+ #: app/features/mec/meta_boxes/display_options.php:92
3268
+ #: app/features/mec/meta_boxes/display_options.php:256
3269
+ #: app/features/mec/meta_boxes/display_options.php:280
3270
+ #: app/features/mec/meta_boxes/display_options.php:1154
3271
+ #: app/features/mec/meta_boxes/display_options.php:1167
3272
+ #: app/features/mec/meta_boxes/display_options.php:1180
3273
+ #: app/features/mec/meta_boxes/display_options.php:1193
3274
+ #: app/features/mec/meta_boxes/display_options.php:1206
3275
+ msgid "Default values are d, F and l"
3276
+ msgstr "Výchozí hodnoty jsou d, F a I"
3277
+
3278
+ #: app/features/mec/meta_boxes/display_options.php:103
3279
+ msgid "Default value is \"M d\""
3280
+ msgstr "Výchozí hodnoty jsou \"M d\""
3281
+
3282
+ # Co je TDefault?
3283
+ #: app/features/mec/meta_boxes/display_options.php:115
3284
+ msgid "TDefault values are d and F"
3285
+ msgstr "TVýchozí hodnoty jsou d a F"
3286
+
3287
+ #: app/features/mec/meta_boxes/display_options.php:122
3288
+ #: app/features/mec/meta_boxes/display_options.php:309
3289
+ #: app/features/mec/meta_boxes/display_options.php:379
3290
+ #: app/features/mec/meta_boxes/display_options.php:555
3291
+ #: app/features/mec/meta_boxes/display_options.php:597
3292
+ #: app/features/mec/meta_boxes/display_options.php:680
3293
+ #: app/features/mec/meta_boxes/display_options.php:714
3294
+ #: app/features/mec/meta_boxes/display_options.php:760
3295
+ #: app/features/mec/meta_boxes/display_options.php:1105
3296
+ #: app/features/mec/meta_boxes/display_options.php:1213
3297
+ msgid "eg. 6"
3298
+ msgstr "např. 6"
3299
+
3300
+ #: app/features/mec/meta_boxes/display_options.php:127
3301
+ #, fuzzy
3302
+ #| msgid "Hide Event Time"
3303
+ msgid "Include Events Times"
3304
+ msgstr "Skrýt čas události"
3305
+
3306
+ #: app/features/mec/meta_boxes/display_options.php:138
3307
+ #: app/features/mec/meta_boxes/display_options.php:313
3308
+ #: app/features/mec/meta_boxes/display_options.php:383
3309
+ #: app/features/mec/meta_boxes/display_options.php:874
3310
+ msgid "Load More Button"
3311
+ msgstr "Načíst tlačítko Další"
3312
+
3313
+ #: app/features/mec/meta_boxes/display_options.php:148
3314
+ #: app/features/mec/meta_boxes/display_options.php:393
3315
+ msgid "Show Month Divider"
3316
+ msgstr "Zobrazit oddělovník měsíce"
3317
+
3318
+ #: app/features/mec/meta_boxes/display_options.php:158
3319
+ #: app/features/mec/meta_boxes/display_options.php:323
3320
+ msgid "Show Map on top"
3321
+ msgstr "Zobrazit mapu nahoře"
3322
+
3323
+ #: app/features/mec/meta_boxes/display_options.php:175
3324
+ msgid "Toggle for Month Divider"
3325
+ msgstr "Přepínač pro oddělovník měsíce"
3326
+
3327
+ #: app/features/mec/meta_boxes/display_options.php:192
3328
+ #: app/features/mec/meta_boxes/display_options.php:349
3329
+ #: app/features/mec/meta_boxes/display_options.php:431
3330
+ #: app/features/mec/meta_boxes/display_options.php:578
3331
+ #: app/features/mec/meta_boxes/display_options.php:742
3332
+ #: app/features/mec/meta_boxes/display_options.php:892
3333
+ #: app/features/mec/settings.php:236 app/features/mec/settings.php:251
3334
+ #: app/features/mec/settings.php:269 app/features/mec/settings.php:310
3335
+ #: app/features/mec/settings.php:325 app/features/mec/settings.php:343
3336
+ msgid "Clean"
3337
+ msgstr "Čistý"
3338
+
3339
+ #: app/features/mec/meta_boxes/display_options.php:195
3340
+ #: app/features/mec/meta_boxes/display_options.php:433
3341
+ #: app/features/mec/meta_boxes/display_options.php:581
3342
+ #: app/features/mec/settings.php:239 app/features/mec/settings.php:272
3343
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:346
3344
+ msgid "Simple"
3345
+ msgstr "Jednoduchý"
3346
+
3347
+ #: app/features/mec/meta_boxes/display_options.php:196
3348
+ msgid "Colorful"
3349
+ msgstr "Plněbarevný"
3350
+
3351
+ #: app/features/mec/meta_boxes/display_options.php:197
3352
+ #: app/features/mec/meta_boxes/display_options.php:432
3353
+ #: app/features/mec/meta_boxes/display_options.php:580
3354
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:274
3355
+ #: app/features/mec/settings.php:312 app/features/mec/settings.php:348
3356
+ msgid "Novel"
3357
+ msgstr "Novela"
3358
+
3359
+ #: app/features/mec/meta_boxes/display_options.php:219
3360
+ msgid "Default value is \"d F Y"
3361
+ msgstr "Výchozí hodnota je \"d F Y"
3362
+
3363
+ #: app/features/mec/meta_boxes/display_options.php:231
3364
+ msgid "Default values are d and F"
3365
+ msgstr "Výchozí hodnoty jsou d a F"
3366
+
3367
+ #: app/features/mec/meta_boxes/display_options.php:243
3368
+ msgid "Default values are d and M"
3369
+ msgstr "Výchozí hodnoty jsou d a M"
3370
+
3371
+ #: app/features/mec/meta_boxes/display_options.php:291
3372
+ msgid "Default value is \"d F Y\""
3373
+ msgstr "Výchozí hodnota je \"d F Y\""
3374
+
3375
+ #: app/features/mec/meta_boxes/display_options.php:297
3376
+ #: app/features/mec/meta_boxes/display_options.php:1095
3377
+ msgid "Count in row"
3378
+ msgstr "Počet v řadě"
3379
+
3380
+ #: app/features/mec/meta_boxes/display_options.php:342
3381
+ #: app/features/mec/meta_boxes/display_options.php:520
3382
+ #: app/features/mec/meta_boxes/display_options.php:627
3383
+ #: app/features/mec/meta_boxes/display_options.php:734
3384
+ #: app/features/mec/meta_boxes/display_options.php:1007
3385
+ #, php-format
3386
+ msgid "%s is required to use this skin."
3387
+ msgstr "%s je nutné použít tento vzhled."
3388
+
3389
+ #: app/features/mec/meta_boxes/display_options.php:372
3390
+ #: app/features/mec/meta_boxes/display_options.php:548
3391
+ msgid "Default values are l and F j"
3392
+ msgstr "Výchozí hodnoty jsou I a F j"
3393
+
3394
+ #: app/features/mec/meta_boxes/display_options.php:419
3395
+ msgid "Default View"
3396
+ msgstr "Výchozí zobrazení"
3397
+
3398
+ #: app/features/mec/meta_boxes/display_options.php:421
3399
+ #: app/features/mec/meta_boxes/display_options.php:442
3400
+ #: app/libraries/main.php:329 app/libraries/main.php:1574
3401
+ #: app/libraries/main.php:1599
3402
+ msgid "List View"
3403
+ msgstr "Zobrazení seznamu"
3404
+
3405
+ #: app/features/mec/meta_boxes/display_options.php:422
3406
+ #: app/features/mec/meta_boxes/display_options.php:452
3407
+ #: app/libraries/main.php:333 app/libraries/main.php:1568
3408
+ #: app/libraries/main.php:1593
3409
+ msgid "Yearly View"
3410
+ msgstr "Roční zobrazení"
3411
+
3412
+ #: app/features/mec/meta_boxes/display_options.php:423
3413
+ #: app/features/mec/meta_boxes/display_options.php:474
3414
+ msgid "Monthly/Calendar View"
3415
+ msgstr "Měsíční / kalendářní zobrazení"
3416
+
3417
+ #: app/features/mec/meta_boxes/display_options.php:424
3418
+ #: app/features/mec/meta_boxes/display_options.php:484
3419
+ #: app/libraries/main.php:336 app/libraries/main.php:1570
3420
+ #: app/libraries/main.php:1595
3421
+ msgid "Weekly View"
3422
+ msgstr "Týdenní zobrazení"
3423
+
3424
+ #: app/features/mec/meta_boxes/display_options.php:425
3425
+ #: app/features/mec/meta_boxes/display_options.php:494
3426
+ #: app/libraries/main.php:335 app/libraries/main.php:1571
3427
+ #: app/libraries/main.php:1596
3428
+ msgid "Daily View"
3429
+ msgstr "Denní zobrazení"
3430
+
3431
+ #: app/features/mec/meta_boxes/display_options.php:429
3432
+ msgid "Monthly Style"
3433
+ msgstr "Měsíční styl"
3434
+
3435
+ #: app/features/mec/meta_boxes/display_options.php:469
3436
+ #, php-format
3437
+ msgid "%s is required to use <b>Yearly View</b> skin."
3438
+ msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
3439
+
3440
+ #: app/features/mec/meta_boxes/display_options.php:502
3441
+ msgid "The price shows only in List View."
3442
+ msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
3443
+
3444
+ #: app/features/mec/meta_boxes/display_options.php:505
3445
+ msgid "Display Event Price"
3446
+ msgstr "Zobrazit cenu události"
3447
+
3448
+ #: app/features/mec/meta_boxes/display_options.php:533
3449
+ msgid "Start of Current Year"
3450
+ msgstr "Začátek aktuálního roku"
3451
+
3452
+ #: app/features/mec/meta_boxes/display_options.php:534
3453
+ msgid "Start of Next Year"
3454
+ msgstr "Začátek příštího roku"
3455
+
3456
+ #: app/features/mec/meta_boxes/display_options.php:554
3457
+ #: app/features/mec/meta_boxes/display_options.php:596
3458
+ #: app/features/mec/meta_boxes/display_options.php:679
3459
+ #: app/features/mec/meta_boxes/display_options.php:713
3460
+ #: app/features/mec/meta_boxes/display_options.php:759
3461
+ msgid "Events per day"
3462
+ msgstr "Události za den"
3463
+
3464
+ #: app/features/mec/meta_boxes/display_options.php:559
3465
+ #: app/features/mec/meta_boxes/display_options.php:601
3466
+ #: app/features/mec/meta_boxes/display_options.php:684
3467
+ #: app/features/mec/meta_boxes/display_options.php:718
3468
+ #: app/features/mec/meta_boxes/display_options.php:788
3469
+ msgid "Next/Previous Buttons"
3470
+ msgstr "Tlačítka Další / Předchozí"
3471
+
3472
+ #: app/features/mec/meta_boxes/display_options.php:567
3473
+ msgid "For showing next/previous year navigation."
3474
+ msgstr "Pro zobrazení navigace další / předchozí."
3475
+
3476
+ #: app/features/mec/meta_boxes/display_options.php:611
3477
+ msgid "Uppercase Text"
3478
+ msgstr "Text velkými písmeny"
3479
+
3480
+ #: app/features/mec/meta_boxes/display_options.php:619
3481
+ #: app/features/mec/meta_boxes/display_options.php:692
3482
+ #: app/features/mec/meta_boxes/display_options.php:726
3483
+ #: app/features/mec/meta_boxes/display_options.php:796
3484
+ msgid "For showing next/previous month navigation."
3485
+ msgstr "Pro zobrazení navigace další / předchozí měsíc."
3486
+
3487
+ #: app/features/mec/meta_boxes/display_options.php:645
3488
+ msgid "Maximum events"
3489
+ msgstr "Maximum událostí"
3490
+
3491
+ #: app/features/mec/meta_boxes/display_options.php:646
3492
+ msgid "eg. 200"
3493
+ msgstr "např. 200"
3494
+
3495
+ #: app/features/mec/meta_boxes/display_options.php:650
3496
+ msgid "Geolocation"
3497
+ msgstr "Geolokace"
3498
+
3499
+ #: app/features/mec/meta_boxes/display_options.php:658
3500
+ msgid "The geolocation feature works only in secure (https) websites."
3501
+ msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
3502
+
3503
+ #: app/features/mec/meta_boxes/display_options.php:702
3504
+ #: app/features/mec/meta_boxes/display_options.php:748
3505
+ msgid "Current Week"
3506
+ msgstr "Aktuální týden"
3507
+
3508
+ #: app/features/mec/meta_boxes/display_options.php:703
3509
+ #: app/features/mec/meta_boxes/display_options.php:749
3510
+ msgid "Next Week"
3511
+ msgstr "Další týden"
3512
+
3513
+ #: app/features/mec/meta_boxes/display_options.php:764
3514
+ msgid "Number of Days"
3515
+ msgstr "Počet dnů"
3516
+
3517
+ #: app/features/mec/meta_boxes/display_options.php:772
3518
+ msgid "Week Start"
3519
+ msgstr "Začátek týdne"
3520
+
3521
+ #: app/features/mec/meta_boxes/display_options.php:774
3522
+ msgid "Inherite from WordPress options"
3523
+ msgstr "Zdědit z možností WordPressu"
3524
+
3525
+ #: app/features/mec/meta_boxes/display_options.php:831
3526
+ #: app/features/mec/meta_boxes/display_options.php:1018
3527
+ msgid "Default values are j and F"
3528
+ msgstr "Výchozí hodnoty jsou j a F"
3529
+
3530
+ #: app/features/mec/meta_boxes/display_options.php:838
3531
+ msgid "eg. 24"
3532
+ msgstr "např. 24"
3533
+
3534
+ #: app/features/mec/meta_boxes/display_options.php:841
3535
+ msgid "Filter By"
3536
+ msgstr "Filtrovat podle"
3537
+
3538
+ #: app/features/mec/meta_boxes/display_options.php:843
3539
+ msgid "None"
3540
+ msgstr "Žádný"
3541
+
3542
+ #: app/features/mec/meta_boxes/display_options.php:852
3543
+ msgid "Fit to row"
3544
+ msgstr "Přizpůsobit řádku"
3545
+
3546
+ #: app/features/mec/meta_boxes/display_options.php:853
3547
+ msgid ""
3548
+ "Items are arranged into rows. Rows progress vertically. Similar to what you "
3549
+ "would expect from a layout that uses CSS floats."
3550
+ msgstr ""
3551
+ "Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
3552
+ "očekávali od rozložení používajícího plovoucí CSS."
3553
+
3554
+ #: app/features/mec/meta_boxes/display_options.php:863
3555
+ msgid "Convert Masonry to Grid"
3556
+ msgstr "Převést zdivo na mřížku"
3557
+
3558
+ #: app/features/mec/meta_boxes/display_options.php:864
3559
+ msgid "For using this option, your events should come with image"
3560
+ msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
3561
+
3562
+ #: app/features/mec/meta_boxes/display_options.php:904
3563
+ msgid "Default values are d, M and Y"
3564
+ msgstr "Výchozí hodnoty jsou d, M a Y"
3565
+
3566
+ #: app/features/mec/meta_boxes/display_options.php:916
3567
+ msgid "Default values are \"F d\" and l"
3568
+ msgstr "Výchozí hodnota je \"F d\" a I"
3569
+
3570
+ #: app/features/mec/meta_boxes/display_options.php:927
3571
+ msgid "Default value is \"l, F d Y\""
3572
+ msgstr "Výchozí hodnota je \"I, F d Y\""
3573
+
3574
+ #: app/features/mec/meta_boxes/display_options.php:948
3575
+ msgid "Style 1"
3576
+ msgstr "Styl 1"
3577
+
3578
+ #: app/features/mec/meta_boxes/display_options.php:949
3579
+ msgid "Style 2"
3580
+ msgstr "Styl 2"
3581
+
3582
+ #: app/features/mec/meta_boxes/display_options.php:950
3583
+ msgid "Style 3"
3584
+ msgstr "Styl 3"
3585
+
3586
+ #: app/features/mec/meta_boxes/display_options.php:959
3587
+ #: app/features/mec/meta_boxes/display_options.php:970
3588
+ msgid "Default value is \"j F Y\""
3589
+ msgstr "Výchozí hodnota je \"j F Y\""
3590
+
3591
+ #: app/features/mec/meta_boxes/display_options.php:983
3592
+ msgid "Default values are j, F and Y"
3593
+ msgstr "Výchozí hodnoty jsou j, F a Y"
3594
+
3595
+ #: app/features/mec/meta_boxes/display_options.php:991
3596
+ #: app/features/mec/meta_boxes/display_options.php:1026
3597
+ msgid " -- Next Upcoming Event -- "
3598
+ msgstr " -- Další nadcházející událost -- "
3599
+
3600
+ #: app/features/mec/meta_boxes/display_options.php:998
3601
+ msgid "Background Color"
3602
+ msgstr "Barva pozadí"
3603
+
3604
+ #: app/features/mec/meta_boxes/display_options.php:1040
3605
+ #: app/features/mec/meta_boxes/display_options.php:1126
3606
+ msgid "Type 1"
3607
+ msgstr "Typ 1"
3608
+
3609
+ #: app/features/mec/meta_boxes/display_options.php:1041
3610
+ #: app/features/mec/meta_boxes/display_options.php:1127
3611
+ msgid "Type 2"
3612
+ msgstr "Typ 2"
3613
+
3614
+ #: app/features/mec/meta_boxes/display_options.php:1042
3615
+ #: app/features/mec/meta_boxes/display_options.php:1128
3616
+ msgid "Type 3"
3617
+ msgstr "Typ 3"
3618
+
3619
+ #: app/features/mec/meta_boxes/display_options.php:1043
3620
+ #: app/features/mec/meta_boxes/display_options.php:1129
3621
+ msgid "Type 4"
3622
+ msgstr "Typ 4"
3623
+
3624
+ #: app/features/mec/meta_boxes/display_options.php:1067
3625
+ msgid "Default values are d, F and Y"
3626
+ msgstr "Výchozí hodnoty jsou d, F a Y"
3627
+
3628
+ #: app/features/mec/meta_boxes/display_options.php:1078
3629
+ #: app/features/mec/meta_boxes/display_options.php:1089
3630
+ msgid "Default value is \"M d, Y\""
3631
+ msgstr "Výchozí hodnota je \"M d, Y\""
3632
+
3633
+ #: app/features/mec/meta_boxes/display_options.php:1108
3634
+ #: app/features/mec/meta_boxes/display_options.php:1216
3635
+ msgid "Auto Play Time"
3636
+ msgstr "Čas automatického přehrávání"
3637
+
3638
+ #: app/features/mec/meta_boxes/display_options.php:1109
3639
+ #: app/features/mec/meta_boxes/display_options.php:1217
3640
+ msgid "eg. 3000 default is 3 second"
3641
+ msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
3642
+
3643
+ #: app/features/mec/meta_boxes/display_options.php:1113
3644
+ msgid "Archive Link"
3645
+ msgstr "Odkaz na archiv"
3646
+
3647
+ #: app/features/mec/meta_boxes/display_options.php:1117
3648
+ msgid "Head Text"
3649
+ msgstr "Text hlavičky"
3650
+
3651
+ #: app/features/mec/meta_boxes/display_options.php:1130
3652
+ msgid "Type 5"
3653
+ msgstr "Typ 5"
3654
+
3655
+ #: app/features/mec/meta_boxes/filter.php:64
3656
+ msgid "No filter options applicable for this skin."
3657
+ msgstr "Pro tento vzhled nelze použít žádné možnosti filtru."
3658
+
3659
+ #: app/features/mec/meta_boxes/filter.php:80
3660
+ msgid "Choose your desired categories for filtering the events."
3661
+ msgstr "Vyberte požadované kategorie pro filtrování událostí."
3662
+
3663
+ #: app/features/mec/meta_boxes/filter.php:97
3664
+ msgid "Choose your desired locations for filtering the events."
3665
+ msgstr "Vyberte požadované umístění pro filtrování událostí."
3666
+
3667
+ #: app/features/mec/meta_boxes/filter.php:114
3668
+ msgid "Choose your desired organizers for filtering the events."
3669
+ msgstr "Vyberte požadované organizátory pro filtrování událostí."
3670
+
3671
+ #: app/features/mec/meta_boxes/filter.php:131
3672
+ msgid "Choose your desired labels for filtering the events."
3673
+ msgstr "Vyberte požadované štítky pro filtrování událostí."
3674
+
3675
+ #: app/features/mec/meta_boxes/filter.php:148
3676
+ msgid "Insert your desired tags comma separated."
3677
+ msgstr "Vložte požadované tagy oddělené čárkou."
3678
+
3679
+ #: app/features/mec/meta_boxes/filter.php:153
3680
+ msgid "Authors"
3681
+ msgstr "Autoři"
3682
+
3683
+ #: app/features/mec/meta_boxes/filter.php:154
3684
+ msgid "Choose your desired authors for filtering the events."
3685
+ msgstr "Vyberte požadované autory pro filtrování událostí."
3686
+
3687
+ #: app/features/mec/meta_boxes/filter.php:179
3688
+ msgid "Dates"
3689
+ msgstr "Data"
3690
+
3691
+ #: app/features/mec/meta_boxes/filter.php:183
3692
+ msgid "Include Expired Events"
3693
+ msgstr "Zahrnout uplynulé události"
3694
+
3695
+ #: app/features/mec/meta_boxes/filter.php:190
3696
+ msgid ""
3697
+ "You have ability to include past/expired events if you like so it will show "
3698
+ "upcoming and expired events based on start date that you selected."
3699
+ msgstr ""
3700
+ "Máte-li zájem, můžete zahrnout minulé / uplynulé události, takže budou "
3701
+ "zobrazovat nadcházející a ukončené události na základě vybraného data "
3702
+ "zahájení."
3703
+
3704
+ #: app/features/mec/meta_boxes/filter.php:197
3705
+ msgid "Show Only Expired Events"
3706
+ msgstr "Zobrazit pouze uplynulé události"
3707
+
3708
+ #: app/features/mec/meta_boxes/filter.php:204
3709
+ #, php-format
3710
+ msgid ""
3711
+ "It shows %s expired/past events. It will use selected start date as first "
3712
+ "day and then go to %s dates."
3713
+ msgstr ""
3714
+ "Zobrazuje% s uplynulé / minulé události. Jako první den použije vybrané "
3715
+ "počáteční datum a poté přejde na% s data."
3716
+
3717
+ #: app/features/mec/meta_boxes/filter.php:204
3718
+ msgid "only"
3719
+ msgstr "pouze"
3720
+
3721
+ #: app/features/mec/meta_boxes/filter.php:204
3722
+ msgid "older"
3723
+ msgstr "starší"
3724
+
3725
+ #: app/features/mec/meta_boxes/filter.php:212
3726
+ msgid "Show Only Ongoing Events"
3727
+ msgstr "Zobrazit pouze probíhající události"
3728
+
3729
+ #: app/features/mec/meta_boxes/filter.php:219
3730
+ msgid "It shows only ongoing events on List and Grid skins."
3731
+ msgstr "Ukazuje pouze probíhající události v seznamech a v mřížkách."
3732
+
3733
+ #: app/features/mec/meta_boxes/search_form.php:13
3734
+ msgid "Show Search Form"
3735
+ msgstr "Zobrazit vyhledávací formulář"
3736
+
3737
+ #: app/features/mec/meta_boxes/search_form.php:33
3738
+ #: app/features/mec/meta_boxes/search_form.php:40
3739
+ #: app/features/mec/meta_boxes/search_form.php:47
3740
+ #: app/features/mec/meta_boxes/search_form.php:54
3741
+ #: app/features/mec/meta_boxes/search_form.php:61
3742
+ #: app/features/mec/meta_boxes/search_form.php:68
3743
+ #: app/features/mec/meta_boxes/search_form.php:75
3744
+ #: app/features/mec/meta_boxes/search_form.php:82
3745
+ #: app/features/mec/meta_boxes/search_form.php:95
3746
+ #: app/features/mec/meta_boxes/search_form.php:102
3747
+ #: app/features/mec/meta_boxes/search_form.php:109
3748
+ #: app/features/mec/meta_boxes/search_form.php:116
3749
+ #: app/features/mec/meta_boxes/search_form.php:123
3750
+ #: app/features/mec/meta_boxes/search_form.php:130
3751
+ #: app/features/mec/meta_boxes/search_form.php:137
3752
+ #: app/features/mec/meta_boxes/search_form.php:144
3753
+ #: app/features/mec/meta_boxes/search_form.php:157
3754
+ #: app/features/mec/meta_boxes/search_form.php:164
3755
+ #: app/features/mec/meta_boxes/search_form.php:171
3756
+ #: app/features/mec/meta_boxes/search_form.php:178
3757
+ #: app/features/mec/meta_boxes/search_form.php:185
3758
+ #: app/features/mec/meta_boxes/search_form.php:192
3759
+ #: app/features/mec/meta_boxes/search_form.php:199
3760
+ #: app/features/mec/meta_boxes/search_form.php:206
3761
+ #: app/features/mec/meta_boxes/search_form.php:218
3762
+ #: app/features/mec/meta_boxes/search_form.php:225
3763
+ #: app/features/mec/meta_boxes/search_form.php:232
3764
+ #: app/features/mec/meta_boxes/search_form.php:239
3765
+ #: app/features/mec/meta_boxes/search_form.php:246
3766
+ #: app/features/mec/meta_boxes/search_form.php:253
3767
+ #: app/features/mec/meta_boxes/search_form.php:260
3768
+ #: app/features/mec/meta_boxes/search_form.php:267
3769
+ #: app/features/mec/meta_boxes/search_form.php:279
3770
+ #: app/features/mec/meta_boxes/search_form.php:286
3771
+ #: app/features/mec/meta_boxes/search_form.php:293
3772
+ #: app/features/mec/meta_boxes/search_form.php:300
3773
+ #: app/features/mec/meta_boxes/search_form.php:307
3774
+ #: app/features/mec/meta_boxes/search_form.php:314
3775
+ #: app/features/mec/meta_boxes/search_form.php:321
3776
+ #: app/features/mec/meta_boxes/search_form.php:328
3777
+ #: app/features/mec/meta_boxes/search_form.php:340
3778
+ #: app/features/mec/meta_boxes/search_form.php:347
3779
+ #: app/features/mec/meta_boxes/search_form.php:354
3780
+ #: app/features/mec/meta_boxes/search_form.php:361
3781
+ #: app/features/mec/meta_boxes/search_form.php:368
3782
+ #: app/features/mec/meta_boxes/search_form.php:375
3783
+ #: app/features/mec/meta_boxes/search_form.php:382
3784
+ #: app/features/mec/meta_boxes/search_form.php:389
3785
+ #: app/features/mec/meta_boxes/search_form.php:401
3786
+ #: app/features/mec/meta_boxes/search_form.php:408
3787
+ #: app/features/mec/meta_boxes/search_form.php:415
3788
+ #: app/features/mec/meta_boxes/search_form.php:422
3789
+ #: app/features/mec/meta_boxes/search_form.php:429
3790
+ #: app/features/mec/meta_boxes/search_form.php:436
3791
+ #: app/features/mec/meta_boxes/search_form.php:443
3792
+ #: app/features/mec/meta_boxes/search_form.php:455
3793
+ #: app/features/mec/meta_boxes/search_form.php:462
3794
+ #: app/features/mec/meta_boxes/search_form.php:469
3795
+ #: app/features/mec/meta_boxes/search_form.php:476
3796
+ #: app/features/mec/meta_boxes/search_form.php:483
3797
+ #: app/features/mec/meta_boxes/search_form.php:490
3798
+ #: app/features/mec/meta_boxes/search_form.php:497
3799
+ #: app/features/mec/meta_boxes/search_form.php:504
3800
+ #: app/features/mec/meta_boxes/search_form.php:516
3801
+ #: app/features/mec/meta_boxes/search_form.php:523
3802
+ #: app/features/mec/meta_boxes/search_form.php:530
3803
+ #: app/features/mec/meta_boxes/search_form.php:537
3804
+ #: app/features/mec/meta_boxes/search_form.php:544
3805
+ #: app/features/mec/meta_boxes/search_form.php:551
3806
+ #: app/features/mec/meta_boxes/search_form.php:558
3807
+ #: app/features/mec/meta_boxes/search_form.php:565
3808
+ #: app/features/mec/meta_boxes/search_form.php:577
3809
+ #: app/features/mec/meta_boxes/search_form.php:584
3810
+ #: app/features/mec/meta_boxes/search_form.php:591
3811
+ #: app/features/mec/meta_boxes/search_form.php:598
3812
+ #: app/features/mec/meta_boxes/search_form.php:605
3813
+ #: app/features/mec/meta_boxes/search_form.php:612
3814
+ #: app/features/mec/meta_boxes/search_form.php:619
3815
+ #: app/features/mec/meta_boxes/search_form.php:626
3816
+ #: app/features/mec/modules.php:125 app/features/mec/settings.php:118
3817
+ #: app/features/mec/settings.php:389
3818
+ msgid "Disabled"
3819
+ msgstr "Zakázaný"
3820
+
3821
+ #: app/features/mec/meta_boxes/search_form.php:52
3822
+ #: app/features/mec/meta_boxes/search_form.php:114
3823
+ #: app/features/mec/meta_boxes/search_form.php:176
3824
+ #: app/features/mec/meta_boxes/search_form.php:237
3825
+ #: app/features/mec/meta_boxes/search_form.php:298
3826
+ #: app/features/mec/meta_boxes/search_form.php:359
3827
+ #: app/features/mec/meta_boxes/search_form.php:420
3828
+ #: app/features/mec/meta_boxes/search_form.php:474
3829
+ #: app/features/mec/meta_boxes/search_form.php:535
3830
+ #: app/features/mec/meta_boxes/search_form.php:596
3831
+ #: app/features/mec/settings.php:795 app/features/mec/single.php:217
3832
+ #: app/features/search.php:79 app/features/speakers.php:61
3833
+ #: app/features/speakers.php:254 app/libraries/main.php:4925
3834
+ #: app/libraries/skins.php:887
3835
+ msgid "Speaker"
3836
+ msgstr "Řečník"
3837
+
3838
+ #: app/features/mec/meta_boxes/search_form.php:59
3839
+ #: app/features/mec/meta_boxes/search_form.php:121
3840
+ #: app/features/mec/meta_boxes/search_form.php:183
3841
+ #: app/features/mec/meta_boxes/search_form.php:244
3842
+ #: app/features/mec/meta_boxes/search_form.php:305
3843
+ #: app/features/mec/meta_boxes/search_form.php:366
3844
+ #: app/features/mec/meta_boxes/search_form.php:427
3845
+ #: app/features/mec/meta_boxes/search_form.php:481
3846
+ #: app/features/mec/meta_boxes/search_form.php:542
3847
+ #: app/features/mec/meta_boxes/search_form.php:603
3848
+ #: app/features/mec/settings.php:802 app/features/mec/single.php:226
3849
+ #: app/features/search.php:83 app/libraries/skins.php:913
3850
+ msgid "Tag"
3851
+ msgstr "Štítek"
3852
+
3853
+ #: app/features/mec/meta_boxes/search_form.php:73
3854
+ #: app/features/mec/meta_boxes/search_form.php:135
3855
+ #: app/features/mec/meta_boxes/search_form.php:197
3856
+ #: app/features/mec/meta_boxes/search_form.php:258
3857
+ #: app/features/mec/meta_boxes/search_form.php:319
3858
+ #: app/features/mec/meta_boxes/search_form.php:380
3859
+ #: app/features/mec/meta_boxes/search_form.php:495
3860
+ #: app/features/mec/meta_boxes/search_form.php:556
3861
+ #: app/features/mec/meta_boxes/search_form.php:617
3862
+ msgid "Month Filter"
3863
+ msgstr "Měsíční filtr"
3864
+
3865
+ #: app/features/mec/meta_boxes/search_form.php:80
3866
+ #: app/features/mec/meta_boxes/search_form.php:142
3867
+ #: app/features/mec/meta_boxes/search_form.php:204
3868
+ #: app/features/mec/meta_boxes/search_form.php:265
3869
+ #: app/features/mec/meta_boxes/search_form.php:326
3870
+ #: app/features/mec/meta_boxes/search_form.php:387
3871
+ #: app/features/mec/meta_boxes/search_form.php:441
3872
+ #: app/features/mec/meta_boxes/search_form.php:502
3873
+ #: app/features/mec/meta_boxes/search_form.php:563
3874
+ #: app/features/mec/meta_boxes/search_form.php:624
3875
+ msgid "Text Search"
3876
+ msgstr "Vyhledat text"
3877
+
3878
+ #: app/features/mec/meta_boxes/search_form.php:83
3879
+ #: app/features/mec/meta_boxes/search_form.php:145
3880
+ #: app/features/mec/meta_boxes/search_form.php:207
3881
+ #: app/features/mec/meta_boxes/search_form.php:268
3882
+ #: app/features/mec/meta_boxes/search_form.php:329
3883
+ #: app/features/mec/meta_boxes/search_form.php:390
3884
+ #: app/features/mec/meta_boxes/search_form.php:444
3885
+ #: app/features/mec/meta_boxes/search_form.php:505
3886
+ #: app/features/mec/meta_boxes/search_form.php:566
3887
+ #: app/features/mec/meta_boxes/search_form.php:627
3888
+ msgid "Text Input"
3889
+ msgstr "Zadávání textu"
3890
+
3891
+ #: app/features/mec/meta_boxes/search_form.php:635
3892
+ #: app/features/mec/meta_boxes/search_form.php:641
3893
+ #: app/features/mec/meta_boxes/search_form.php:647
3894
+ #: app/features/mec/meta_boxes/search_form.php:653
3895
+ #: app/features/mec/meta_boxes/search_form.php:659
3896
+ #: app/features/mec/meta_boxes/search_form.php:665
3897
+ msgid "No Search Options"
3898
+ msgstr "Žádné možnosti vyhledávání"
3899
+
3900
+ #: app/features/mec/modules.php:43
3901
+ msgid "Speakers Options"
3902
+ msgstr "Možnosti řečníka"
3903
+
3904
+ #: app/features/mec/modules.php:49
3905
+ msgid "Enable speakers feature"
3906
+ msgstr "Povolit vlastnosti řečníků"
3907
+
3908
+ #: app/features/mec/modules.php:53
3909
+ msgid ""
3910
+ "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3911
+ "after enabling it to see the Speakers menu under MEC dashboard."
3912
+ msgstr ""
3913
+ "Povolte tuto možnost, chcete-li mít řečníka v hodinovém rozvrhu v "
3914
+ "samostatném režimu. Obnovte po povolení, aby se zobrazila nabídka Řečníci na "
3915
+ "řídícím panelu MEC."
3916
+
3917
+ #: app/features/mec/modules.php:58
3918
+ msgid ""
3919
+ "After enabling and saving the settings, you should reload the page to see a "
3920
+ "new menu on the Dashboard > MEC"
3921
+ msgstr ""
3922
+ "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
3923
+ "novou nabídku na řídícím panelu > MEC"
3924
+
3925
+ #: app/features/mec/modules.php:75
3926
+ msgid "Show Google Maps on event page"
3927
+ msgstr "Zobrazit Mapy Google na stránce události"
3928
+
3929
+ #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
3930
+ #: app/features/mec/settings.php:832 app/features/mec/settings.php:837
3931
+ msgid "API Key"
3932
+ msgstr "API Key"
3933
+
3934
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:838
3935
+ #: app/features/mec/settings.php:851
3936
+ msgid "Required!"
3937
+ msgstr "Požadované!"
3938
+
3939
+ #: app/features/mec/modules.php:93 app/features/mec/modules.php:102
3940
+ msgid "Zoom level"
3941
+ msgstr "Úroveň přiblížení"
3942
+
3943
+ #: app/features/mec/modules.php:103
3944
+ msgid ""
3945
+ "For Google Maps module in single event page. In Google Maps skin, it will "
3946
+ "caculate the zoom level automatically based on event boundaries."
3947
+ msgstr ""
3948
+ "Pro modul Mapy Google na stránce s jednou událostí. Ve vzhledu Map Google "
3949
+ "vypočítá úroveň přiblížení automaticky na základě hranic událostí."
3950
+
3951
+ #: app/features/mec/modules.php:110
3952
+ msgid "Google Maps Style"
3953
+ msgstr "Styl Map Google"
3954
+
3955
+ #: app/features/mec/modules.php:114 app/features/mec/single.php:88
3956
+ msgid "Default"
3957
+ msgstr "Výchozí"
3958
+
3959
+ #: app/features/mec/modules.php:122
3960
+ msgid "Direction on single event"
3961
+ msgstr "Směr na jednu událost"
3962
+
3963
+ #: app/features/mec/modules.php:126
3964
+ msgid "Simple Method"
3965
+ msgstr "Jednoduchá metoda"
3966
+
3967
+ #: app/features/mec/modules.php:127
3968
+ msgid "Advanced Method"
3969
+ msgstr "Pokročilá metoda"
3970
+
3971
+ #: app/features/mec/modules.php:132 app/features/mec/modules.php:137
3972
+ msgid "Lightbox Date Format"
3973
+ msgstr "Formát data Lightbox"
3974
+
3975
+ #: app/features/mec/modules.php:138
3976
+ msgid "Default value is M d Y"
3977
+ msgstr "Výchozí jednota je M d Y"
3978
+
3979
+ #: app/features/mec/modules.php:145 app/features/mec/modules.php:153
3980
+ msgid "Google Maps API"
3981
+ msgstr "Google Maps API"
3982
+
3983
+ #: app/features/mec/modules.php:149
3984
+ msgid "Don't load Google Maps API library"
3985
+ msgstr "Nenačítejte knihovnu Google Maps API"
3986
+
3987
+ #: app/features/mec/modules.php:154
3988
+ msgid "Check it only if another plugin/theme is loading the Google Maps API"
3989
+ msgstr ""
3990
+ "Zkontrolujte to, pouze pokud jiný plugin / motiv načítá rozhraní Google Maps "
3991
+ "API"
3992
+
3993
+ #: app/features/mec/modules.php:167 app/libraries/main.php:561
3994
+ msgid "Export Options"
3995
+ msgstr "Možnosti exportu"
3996
+
3997
+ #: app/features/mec/modules.php:171
3998
+ msgid ""
3999
+ "Show export module (iCal export and add to Google calendars) on event page"
4000
+ msgstr ""
4001
+ "Zobrazit modul exportu (export iCal a přidání do kalendářů Google) na "
4002
+ "stránce události"
4003
+
4004
+ #: app/features/mec/modules.php:178
4005
+ msgid "Google Calendar"
4006
+ msgstr "Kalendář Google"
4007
+
4008
+ #: app/features/mec/modules.php:194 app/libraries/main.php:562
4009
+ #: app/modules/local-time/details.php:42 app/widgets/single.php:99
4010
+ msgid "Local Time"
4011
+ msgstr "Místní čas"
4012
+
4013
+ #: app/features/mec/modules.php:198
4014
+ msgid "Show event time based on local time of visitor on event page"
4015
+ msgstr ""
4016
+ "Zobrazit čas události na základě místního času návštěvníka na stránce "
4017
+ "události"
4018
+
4019
+ #: app/features/mec/modules.php:208 app/libraries/main.php:563
4020
+ #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
4021
+ msgid "QR Code"
4022
+ msgstr "QR kód"
4023
+
4024
+ #: app/features/mec/modules.php:216
4025
+ msgid "Show QR code of event in details page and booking invoice"
4026
+ msgstr ""
4027
+ "Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
4028
+
4029
+ #: app/features/mec/modules.php:226 app/libraries/main.php:564
4030
+ #: app/modules/weather/details.php:37
4031
+ msgid "Weather"
4032
+ msgstr "Počasí"
4033
+
4034
+ #: app/features/mec/modules.php:233
4035
+ msgid "Show weather module on event page"
4036
+ msgstr "Zobrazit modul počasí na stránce události"
4037
+
4038
+ #: app/features/mec/modules.php:241
4039
+ #, php-format
4040
+ msgid "You can get a free API Key from %s"
4041
+ msgstr "Zdarma můžete získat klíč API od % s"
4042
+
4043
+ #: app/features/mec/modules.php:247
4044
+ msgid "Show weather imperial units"
4045
+ msgstr "Zobrazit britské jednotky počasí"
4046
+
4047
+ #: app/features/mec/modules.php:253
4048
+ msgid "Show weather change units button"
4049
+ msgstr "Zobrazit tlačítko Změna jednotek počasí"
4050
+
4051
+ #: app/features/mec/modules.php:267
4052
+ msgid "Show social network module"
4053
+ msgstr "Zobrazit modul sociální sítě"
4054
+
4055
+ #: app/features/mec/modules.php:288 app/libraries/main.php:566
4056
+ #: app/modules/next-event/details.php:82
4057
+ msgid "Next Event"
4058
+ msgstr "Další událost"
4059
+
4060
+ #: app/features/mec/modules.php:292
4061
+ msgid "Show next event module on event page"
4062
+ msgstr "Zobrazit další modul události na stránce události"
4063
+
4064
+ #: app/features/mec/modules.php:297
4065
+ msgid "Method"
4066
+ msgstr "Metoda"
4067
+
4068
+ #: app/features/mec/modules.php:300
4069
+ msgid "Next Occurrence of Current Event"
4070
+ msgstr "Další výskyt aktuální události"
4071
+
4072
+ #: app/features/mec/modules.php:301
4073
+ msgid "Next Occurrence of Other Events"
4074
+ msgstr "Další výskyt dalších událostí"
4075
+
4076
+ #: app/features/mec/modules.php:312 app/features/mec/single.php:42
4077
+ msgid "Default is M d Y"
4078
+ msgstr "Výchozí je M d Y"
4079
+
4080
+ #: app/features/mec/modules.php:328
4081
+ msgid "Enable BuddyPress Integration"
4082
+ msgstr "Povolit integraci BuddyPress"
4083
+
4084
+ #: app/features/mec/modules.php:335
4085
+ msgid "Show \"Attendees Module\" in event details page"
4086
+ msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
4087
+
4088
+ #: app/features/mec/modules.php:339
4089
+ msgid "Attendees Limit"
4090
+ msgstr "Limit účastníků"
4091
+
4092
+ #: app/features/mec/modules.php:347
4093
+ msgid "Add booking activity to user profile"
4094
+ msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
4095
+
4096
+ #: app/features/mec/notifications.php:39
4097
+ msgid "Enable booking notification"
4098
+ msgstr "Povolit upozornění na rezervaci"
4099
+
4100
+ #: app/features/mec/notifications.php:43
4101
+ msgid "It sends to attendee after booking for notifying him/her."
4102
+ msgstr "Po rezervaci odešle účastníkovi informační upozornění."
4103
+
4104
+ #: app/features/mec/notifications.php:45 app/features/mec/notifications.php:104
4105
+ #: app/features/mec/notifications.php:158
4106
+ #: app/features/mec/notifications.php:220
4107
+ #: app/features/mec/notifications.php:288
4108
+ #: app/features/mec/notifications.php:351
4109
+ #: app/features/mec/notifications.php:424
4110
+ #: app/features/mec/notifications.php:472
4111
+ msgid "Email Subject"
4112
+ msgstr "Předmět emailové zprávy"
4113
+
4114
+ #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:53
4115
+ #: app/features/mec/notifications.php:108
4116
+ #: app/features/mec/notifications.php:112
4117
+ #: app/features/mec/notifications.php:162
4118
+ #: app/features/mec/notifications.php:166
4119
+ #: app/features/mec/notifications.php:224
4120
+ #: app/features/mec/notifications.php:228
4121
+ #: app/features/mec/notifications.php:292
4122
+ #: app/features/mec/notifications.php:296
4123
+ #: app/features/mec/notifications.php:355
4124
+ #: app/features/mec/notifications.php:359
4125
+ #: app/features/mec/notifications.php:370
4126
+ #: app/features/mec/notifications.php:428
4127
+ #: app/features/mec/notifications.php:432
4128
+ #: app/features/mec/notifications.php:476
4129
+ #: app/features/mec/notifications.php:480
4130
+ msgid "Custom Recipients"
4131
+ msgstr "Vlastní příjemci"
4132
+
4133
+ #: app/features/mec/notifications.php:54 app/features/mec/notifications.php:113
4134
+ #: app/features/mec/notifications.php:167
4135
+ #: app/features/mec/notifications.php:229
4136
+ #: app/features/mec/notifications.php:297
4137
+ #: app/features/mec/notifications.php:360
4138
+ #: app/features/mec/notifications.php:371
4139
+ #: app/features/mec/notifications.php:433
4140
+ #: app/features/mec/notifications.php:481
4141
+ msgid "Insert comma separated emails for multiple recipients."
4142
+ msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
4143
+
4144
+ #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:240
4145
+ #: app/features/mec/notifications.php:304
4146
+ msgid "Send the email to event organizer"
4147
+ msgstr "Pošlete e-mail organizátorovi události"
4148
+
4149
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:119
4150
+ #: app/features/mec/notifications.php:173
4151
+ #: app/features/mec/notifications.php:247
4152
+ #: app/features/mec/notifications.php:307
4153
+ #: app/features/mec/notifications.php:377
4154
+ #: app/features/mec/notifications.php:439
4155
+ #: app/features/mec/notifications.php:487
4156
+ msgid "Email Content"
4157
+ msgstr "Obsah zprávy"
4158
+
4159
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:122
4160
+ #: app/features/mec/notifications.php:176
4161
+ #: app/features/mec/notifications.php:250
4162
+ #: app/features/mec/notifications.php:310
4163
+ #: app/features/mec/notifications.php:380
4164
+ #: app/features/mec/notifications.php:442
4165
+ #: app/features/mec/notifications.php:490
4166
+ msgid "You can use following placeholders"
4167
+ msgstr "Můžete použít následující zástupné symboly"
4168
+
4169
+ #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:124
4170
+ #: app/features/mec/notifications.php:178
4171
+ #: app/features/mec/notifications.php:252
4172
+ #: app/features/mec/notifications.php:312
4173
+ #: app/features/mec/notifications.php:382
4174
+ msgid "First name of attendee"
4175
+ msgstr "První jméno účastníka"
4176
+
4177
+ #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:125
4178
+ #: app/features/mec/notifications.php:179
4179
+ #: app/features/mec/notifications.php:253
4180
+ #: app/features/mec/notifications.php:313
4181
+ #: app/features/mec/notifications.php:383
4182
+ msgid "Last name of attendee"
4183
+ msgstr "Příjmení účastníka"
4184
+
4185
+ #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:126
4186
+ #: app/features/mec/notifications.php:180
4187
+ #: app/features/mec/notifications.php:254
4188
+ #: app/features/mec/notifications.php:314
4189
+ #: app/features/mec/notifications.php:384
4190
+ msgid "Email of attendee"
4191
+ msgstr "Email účastníka"
4192
+
4193
+ #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:127
4194
+ #: app/features/mec/notifications.php:181
4195
+ #: app/features/mec/notifications.php:255
4196
+ #: app/features/mec/notifications.php:315
4197
+ #: app/features/mec/notifications.php:385
4198
+ msgid "Booked date of event"
4199
+ msgstr "Datum rezervace akce"
4200
+
4201
+ #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:128
4202
+ #: app/features/mec/notifications.php:182
4203
+ #: app/features/mec/notifications.php:256
4204
+ #: app/features/mec/notifications.php:316
4205
+ #: app/features/mec/notifications.php:386
4206
+ msgid "Booked time of event"
4207
+ msgstr "Čas rezervace akce"
4208
+
4209
+ #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:129
4210
+ #: app/features/mec/notifications.php:183
4211
+ #: app/features/mec/notifications.php:257
4212
+ #: app/features/mec/notifications.php:317
4213
+ #: app/features/mec/notifications.php:387
4214
+ msgid "Booking Price"
4215
+ msgstr "Cena rezervace"
4216
+
4217
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:130
4218
+ #: app/features/mec/notifications.php:184
4219
+ #: app/features/mec/notifications.php:258
4220
+ #: app/features/mec/notifications.php:318
4221
+ #: app/features/mec/notifications.php:388
4222
+ #: app/features/mec/notifications.php:450
4223
+ #: app/features/mec/notifications.php:498
4224
+ msgid "Your website title"
4225
+ msgstr "Název vašeho webu"
4226
+
4227
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:131
4228
+ #: app/features/mec/notifications.php:185
4229
+ #: app/features/mec/notifications.php:259
4230
+ #: app/features/mec/notifications.php:319
4231
+ #: app/features/mec/notifications.php:389
4232
+ #: app/features/mec/notifications.php:451
4233
+ #: app/features/mec/notifications.php:499
4234
+ msgid "Your website URL"
4235
+ msgstr "URL vašeho webu"
4236
+
4237
+ #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:132
4238
+ #: app/features/mec/notifications.php:186
4239
+ #: app/features/mec/notifications.php:260
4240
+ #: app/features/mec/notifications.php:320
4241
+ #: app/features/mec/notifications.php:390
4242
+ #: app/features/mec/notifications.php:452
4243
+ #: app/features/mec/notifications.php:500
4244
+ msgid "Your website description"
4245
+ msgstr "Popis vašeho webu"
4246
+
4247
+ #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:133
4248
+ #: app/features/mec/notifications.php:187
4249
+ #: app/features/mec/notifications.php:261
4250
+ #: app/features/mec/notifications.php:321
4251
+ #: app/features/mec/notifications.php:391
4252
+ msgid "Event title"
4253
+ msgstr "Název události"
4254
+
4255
+ #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:134
4256
+ #: app/features/mec/notifications.php:188
4257
+ #: app/features/mec/notifications.php:262
4258
+ #: app/features/mec/notifications.php:322
4259
+ #: app/features/mec/notifications.php:392
4260
+ msgid "Event link"
4261
+ msgstr "Odkaz události"
4262
+
4263
+ #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:135
4264
+ #: app/features/mec/notifications.php:189
4265
+ #: app/features/mec/notifications.php:446
4266
+ #: app/features/mec/notifications.php:494
4267
+ #, fuzzy
4268
+ #| msgid "Start Date"
4269
+ msgid "Event Start Date"
4270
+ msgstr "Počátečná den"
4271
+
4272
+ #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:136
4273
+ #: app/features/mec/notifications.php:190
4274
+ #: app/features/mec/notifications.php:447
4275
+ #: app/features/mec/notifications.php:495
4276
+ #, fuzzy
4277
+ #| msgid "End Date"
4278
+ msgid "Event End Date"
4279
+ msgstr "Konečný den"
4280
+
4281
+ #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:137
4282
+ #: app/features/mec/notifications.php:191
4283
+ #: app/features/mec/notifications.php:263
4284
+ #: app/features/mec/notifications.php:323
4285
+ #: app/features/mec/notifications.php:393
4286
+ msgid "Speaker name of booked event"
4287
+ msgstr "Jméno řečníka rezervované události"
4288
+
4289
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:138
4290
+ #: app/features/mec/notifications.php:192
4291
+ #: app/features/mec/notifications.php:264
4292
+ #: app/features/mec/notifications.php:324
4293
+ #: app/features/mec/notifications.php:394
4294
+ msgid "Organizer name of booked event"
4295
+ msgstr "Jméno organizátora rezervované události"
4296
+
4297
+ #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:139
4298
+ #: app/features/mec/notifications.php:193
4299
+ #: app/features/mec/notifications.php:265
4300
+ #: app/features/mec/notifications.php:325
4301
+ #: app/features/mec/notifications.php:395
4302
+ msgid "Organizer tel of booked event"
4303
+ msgstr "Telefon organizátora rezervované události"
4304
+
4305
+ #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:140
4306
+ #: app/features/mec/notifications.php:194
4307
+ #: app/features/mec/notifications.php:266
4308
+ #: app/features/mec/notifications.php:326
4309
+ #: app/features/mec/notifications.php:396
4310
+ msgid "Organizer email of booked event"
4311
+ msgstr "Email organizátora rezervované události"
4312
+
4313
+ #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:141
4314
+ #: app/features/mec/notifications.php:195
4315
+ #: app/features/mec/notifications.php:267
4316
+ #: app/features/mec/notifications.php:327
4317
+ #: app/features/mec/notifications.php:397
4318
+ msgid "Location name of booked event"
4319
+ msgstr "Název místa rezervované události"
4320
+
4321
+ #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:142
4322
+ #: app/features/mec/notifications.php:196
4323
+ #: app/features/mec/notifications.php:268
4324
+ #: app/features/mec/notifications.php:328
4325
+ #: app/features/mec/notifications.php:398
4326
+ msgid "Location address of booked event"
4327
+ msgstr "Adresa místa rezervované události"
4328
+
4329
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:270
4330
+ #: app/features/mec/notifications.php:330
4331
+ msgid "Full Attendee info such as booking form data, name, email etc."
4332
+ msgstr ""
4333
+ "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
4334
+ "jméno, e-mail atd."
4335
+
4336
+ #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:198
4337
+ #: app/features/mec/notifications.php:400
4338
+ msgid "Invoice Link"
4339
+ msgstr "Odkaz na fakturu"
4340
+
4341
+ #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:144
4342
+ #: app/features/mec/notifications.php:199
4343
+ #: app/features/mec/notifications.php:271
4344
+ #: app/features/mec/notifications.php:331
4345
+ #: app/features/mec/notifications.php:401
4346
+ msgid "Total Attendees"
4347
+ msgstr "Celkový počet účastníků"
4348
+
4349
+ #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:145
4350
+ #: app/features/mec/notifications.php:201
4351
+ #: app/features/mec/notifications.php:402
4352
+ msgid "Ticket name"
4353
+ msgstr "Název vstupenky"
4354
+
4355
+ #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:146
4356
+ #: app/features/mec/notifications.php:202
4357
+ #: app/features/mec/notifications.php:403
4358
+ msgid "Ticket time"
4359
+ msgstr "Čas vstupenky"
4360
+
4361
+ #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:147
4362
+ #: app/features/mec/notifications.php:203
4363
+ #: app/features/mec/notifications.php:404
4364
+ msgid "Download ICS file"
4365
+ msgstr "Stáhnout ICS soubor"
4366
+
4367
+ #: app/features/mec/notifications.php:101 app/libraries/main.php:572
4368
+ msgid "Booking Verification"
4369
+ msgstr "Ověření rezervace"
4370
+
4371
+ #: app/features/mec/notifications.php:102
4372
+ msgid "It sends to attendee email for verifying their booking/email."
4373
+ msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
4374
+
4375
+ #: app/features/mec/notifications.php:143
4376
+ msgid "Email/Booking verification link."
4377
+ msgstr "Ověřovací odkaz E-mailu / Rezervace."
4378
+
4379
+ #: app/features/mec/notifications.php:156
4380
+ msgid "It sends to attendee after confirming the booking by admin."
4381
+ msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
4382
+
4383
+ #: app/features/mec/notifications.php:197
4384
+ #: app/features/mec/notifications.php:399
4385
+ msgid "Booking cancellation link."
4386
+ msgstr "Odkaz na zrušení rezervace."
4387
+
4388
+ #: app/features/mec/notifications.php:200
4389
+ msgid "Amount Tickets"
4390
+ msgstr "Počet vstupenek"
4391
+
4392
+ #: app/features/mec/notifications.php:210 app/libraries/main.php:574
4393
+ msgid "Booking Cancellation"
4394
+ msgstr "Zrušení rezervace"
4395
+
4396
+ #: app/features/mec/notifications.php:214
4397
+ msgid "Enable cancellation notification"
4398
+ msgstr "Povolit oznámení o zrušení"
4399
+
4400
+ #: app/features/mec/notifications.php:218
4401
+ msgid ""
4402
+ "It sends to selected recipients after booking cancellation for notifying "
4403
+ "them."
4404
+ msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
4405
+
4406
+ #: app/features/mec/notifications.php:236
4407
+ msgid "Send the email to admin"
4408
+ msgstr "Odeslat email administrátorovi"
4409
+
4410
+ #: app/features/mec/notifications.php:244
4411
+ msgid "Send the email to booking user"
4412
+ msgstr "Pošlete rezervační e-mail uživateli"
4413
+
4414
+ #: app/features/mec/notifications.php:269
4415
+ #: app/features/mec/notifications.php:329
4416
+ msgid "Admin booking management link."
4417
+ msgstr "Odkaz administrátora na správu rezervace."
4418
+
4419
+ #: app/features/mec/notifications.php:278 app/libraries/main.php:576
4420
+ msgid "Admin"
4421
+ msgstr "Administrátor"
4422
+
4423
+ #: app/features/mec/notifications.php:282
4424
+ msgid "Enable admin notification"
4425
+ msgstr "Povolit oznámení správce"
4426
+
4427
+ #: app/features/mec/notifications.php:286
4428
+ msgid "It sends to admin to notify him/her that a new booking received."
4429
+ msgstr "Zašle správci informaci o přijetí nové rezervace."
4430
+
4431
+ #: app/features/mec/notifications.php:338 app/libraries/main.php:575
4432
+ #: app/libraries/notifications.php:478
4433
+ msgid "Booking Reminder"
4434
+ msgstr "Připomenutí rezervace"
4435
+
4436
+ #: app/features/mec/notifications.php:342
4437
+ msgid "Enable booking reminder notification"
4438
+ msgstr "Povolit upozornění na připomenutí rezervace"
4439
+
4440
+ #: app/features/mec/notifications.php:348
4441
+ #, php-format
4442
+ msgid ""
4443
+ "Set a cronjob to call %s file once per day otherwise it won't send the "
4444
+ "reminders. Please note that you should call this file %s otherwise it may "
4445
+ "send the reminders multiple times."
4446
+ msgstr ""
4447
+ "Nastavit cronjob tak, aby zavolal %s soubor jednou denně, jinak nebude "
4448
+ "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
4449
+ "% s, jinak může zasílat připomenutí několikrát."
4450
+
4451
+ #: app/features/mec/notifications.php:348
4452
+ msgid "only once per day"
4453
+ msgstr "pouze jednou denně"
4454
+
4455
+ #: app/features/mec/notifications.php:366
4456
+ msgid "Days"
4457
+ msgstr "Dny"
4458
+
4459
+ #: app/features/mec/notifications.php:414 app/features/mec/support-page.php:106
4460
+ #: app/libraries/main.php:577
4461
+ msgid "New Event"
4462
+ msgstr "Nová událost"
4463
+
4464
+ #: app/features/mec/notifications.php:418
4465
+ msgid "Enable new event notification"
4466
+ msgstr "Povolit oznámení na novou událost"
4467
+
4468
+ #: app/features/mec/notifications.php:422
4469
+ msgid ""
4470
+ "It sends after adding a new event from frontend event submission or from "
4471
+ "website backend."
4472
+ msgstr ""
4473
+ "Odesílá se po přidání nové události z webových stránek události (frontend) "
4474
+ "nebo z administrace webových stránek (backend)."
4475
+
4476
+ #: app/features/mec/notifications.php:444
4477
+ #: app/features/mec/notifications.php:492
4478
+ msgid "Title of event"
4479
+ msgstr "Název události"
4480
+
4481
+ #: app/features/mec/notifications.php:445
4482
+ #: app/features/mec/notifications.php:493
4483
+ msgid "Link of event"
4484
+ msgstr "Odkaz události"
4485
+
4486
+ #: app/features/mec/notifications.php:448
4487
+ #: app/features/mec/notifications.php:496
4488
+ msgid "Status of event"
4489
+ msgstr "Stav události"
4490
+
4491
+ #: app/features/mec/notifications.php:449
4492
+ #: app/features/mec/notifications.php:497 app/features/mec/settings.php:710
4493
+ #: app/features/mec/settings.php:714
4494
+ msgid "Event Note"
4495
+ msgstr "Poznámka události"
4496
+
4497
+ #: app/features/mec/notifications.php:453
4498
+ #: app/features/mec/notifications.php:501
4499
+ msgid "Admin events management link."
4500
+ msgstr "Odkaz administrátora na správu událostí."
4501
+
4502
+ #: app/features/mec/notifications.php:462 app/libraries/main.php:578
4503
+ msgid "User Event Publishing"
4504
+ msgstr "Publikování uživatelských událostí"
4505
+
4506
+ #: app/features/mec/notifications.php:466
4507
+ msgid "Enable user event publishing notification"
4508
+ msgstr "Povolit oznámení o zveřejnění události uživatele"
4509
+
4510
+ #: app/features/mec/notifications.php:470
4511
+ msgid ""
4512
+ "It sends after published a new event from frontend event submission or from "
4513
+ "website backend."
4514
+ msgstr ""
4515
+ "Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
4516
+ "nebo z administrace webových stránek (backend)."
4517
+
4518
+ #: app/features/mec/settings.php:76 app/features/mec/settings.php:86
4519
+ msgid "Hide Events"
4520
+ msgstr "Skrýt události"
4521
+
4522
+ #: app/features/mec/settings.php:79
4523
+ msgid "On Event Start"
4524
+ msgstr "Při spuštění události"
4525
+
4526
+ #: app/features/mec/settings.php:80
4527
+ msgid "+1 Hour after start"
4528
+ msgstr "+1 hodinu po zahájení"
4529
+
4530
+ #: app/features/mec/settings.php:81
4531
+ msgid "+2 Hours after start"
4532
+ msgstr "+2 hodiny po zahájení"
4533
+
4534
+ #: app/features/mec/settings.php:82
4535
+ msgid "On Event End"
4536
+ msgstr "Na konci události"
4537
+
4538
+ #: app/features/mec/settings.php:87
4539
+ msgid ""
4540
+ "This option is for showing start/end time of events on frontend of website."
4541
+ msgstr ""
4542
+ "Tato možnost slouží k zobrazení času zahájení / ukončení událostí na "
4543
+ "rozhraní webových stránek (frontend)."
4544
+
4545
+ #: app/features/mec/settings.php:96 app/features/mec/settings.php:105
4546
+ msgid "Multiple Day Events"
4547
+ msgstr "Vícedenní událost"
4548
+
4549
+ #: app/features/mec/settings.php:99
4550
+ msgid "Show only first day on List/Grid/Slider skins"
4551
+ msgstr "Zobrazit pouze první den ve vzhledu Seznam / Mřížka / Posuvník"
4552
+
4553
+ #: app/features/mec/settings.php:100
4554
+ msgid "Show only first day on all skins"
4555
+ msgstr "Zobrazit pouze první den ve všech vzhledech"
4556
+
4557
+ #: app/features/mec/settings.php:101
4558
+ msgid "Show all days"
4559
+ msgstr "Zobrazit všechny dny"
4560
+
4561
+ #: app/features/mec/settings.php:106
4562
+ msgid ""
4563
+ "For showing all days of multiple day events on frontend or only show the "
4564
+ "first day."
4565
+ msgstr ""
4566
+ "Pro zobrazení všech dnů vícedenních událostí na webových stránkách "
4567
+ "(frontend) nebo zobrazení pouze prvního dne."
4568
+
4569
+ #: app/features/mec/settings.php:115
4570
+ msgid "Remove MEC Data on Plugin Uninstall"
4571
+ msgstr "Odebrat data při odinstalování doplňku MEC"
4572
+
4573
+ #: app/features/mec/settings.php:119
4574
+ msgid "Enabled"
4575
+ msgstr "Povoleno"
4576
+
4577
+ #: app/features/mec/settings.php:125
4578
+ msgid "Exclude Date Suffix"
4579
+ msgstr "Vyloučit příponu data"
4580
+
4581
+ #: app/features/mec/settings.php:128
4582
+ msgid "Remove suffix from calendars"
4583
+ msgstr "Odebrat příponu z kalendářů"
4584
+
4585
+ #: app/features/mec/settings.php:132
4586
+ msgid "Remove \"Th\" on calendar"
4587
+ msgstr "Odebrat „Th“ z kalendáře"
4588
+
4589
+ #: app/features/mec/settings.php:133
4590
+ msgid ""
4591
+ "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4592
+ "showing just '12' )"
4593
+ msgstr ""
4594
+ "Zaškrtnutím tohoto políčka odstraníte „Th“ z kalendáře (např .: „12Th“ "
4595
+ "odstraní Th, zobrazí se pouze „12“)"
4596
+
4597
+ #: app/features/mec/settings.php:140 app/features/mec/settings.php:147
4598
+ msgid "Schema"
4599
+ msgstr "Schéma"
4600
+
4601
+ #: app/features/mec/settings.php:143
4602
+ msgid "Enable Schema Code"
4603
+ msgstr "Povolit kód schématu"
4604
+
4605
+ #: app/features/mec/settings.php:148
4606
+ msgid "You can enable/disable Schema scripts"
4607
+ msgstr "Můžete povolit nebo zakázat skripty schématu"
4608
+
4609
+ #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
4610
+ #: app/libraries/main.php:4929
4611
+ msgid "Weekdays"
4612
+ msgstr "Pracovní dny"
4613
+
4614
+ #: app/features/mec/settings.php:168
4615
+ msgid ""
4616
+ "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
4617
+ "and Friday ( you can change 'Week Starts' on WordPress Dashboard > Settings "
4618
+ "> General - bottom of the page )."
4619
+ msgstr ""
4620
+ "Postupujte opatrně. Výchozí nastavení je Pondělí, Úterý, Středa, Čtvrtek a "
4621
+ "Pátek (můžete to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > "
4622
+ "Nastavení > Obecné - spodní část stránky)."
4623
+
4624
+ #: app/features/mec/settings.php:178 app/features/mec/settings.php:188
4625
+ msgid "Weekends"
4626
+ msgstr "Víkendy"
4627
+
4628
+ #: app/features/mec/settings.php:189
4629
+ msgid ""
4630
+ "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4631
+ "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4632
+ "page )."
4633
+ msgstr ""
4634
+ "Postupujte opatrně. Výchozí hodnota je nastavena na sobotu a neděli (můžete "
4635
+ "to změnit pomocí „Začátek týdne“ na řídícím panelu WordPress > Nastavení > "
4636
+ "Obecné - dolní část stránky )."
4637
+
4638
+ #: app/features/mec/settings.php:200 app/libraries/main.php:529
4639
+ msgid "Archive Pages"
4640
+ msgstr "Archivní stránky"
4641
+
4642
+ #: app/features/mec/settings.php:203 app/features/mec/settings.php:208
4643
+ msgid "Archive Page Title"
4644
+ msgstr "Název stránky archivu"
4645
+
4646
+ #: app/features/mec/settings.php:209
4647
+ msgid "Default value is Events - It's title of the page"
4648
+ msgstr "Výchozí hodnota je Události - to je název stránky"
4649
+
4650
+ #: app/features/mec/settings.php:217 app/features/mec/settings.php:285
4651
+ msgid "Archive Page Skin"
4652
+ msgstr "Vzhled archivní stránky"
4653
+
4654
+ #: app/features/mec/settings.php:225
4655
+ msgid "Put shortcode..."
4656
+ msgstr "Vložte zkrácený kód..."
4657
+
4658
+ #: app/features/mec/settings.php:228 app/features/mec/settings.php:243
4659
+ #: app/features/mec/settings.php:246 app/features/mec/settings.php:255
4660
+ #: app/features/mec/settings.php:281 app/features/mec/settings.php:302
4661
+ #: app/features/mec/settings.php:317 app/features/mec/settings.php:320
4662
+ #: app/features/mec/settings.php:329 app/features/mec/settings.php:355
4663
+ msgid "There is no skins"
4664
+ msgstr "Neexistuje žádný vzhled"
4665
+
4666
+ #: app/features/mec/settings.php:231 app/features/mec/settings.php:305
4667
+ #: app/features/mec/single.php:69
4668
+ msgid "Modern Style"
4669
+ msgstr "Moderní styl"
4670
+
4671
+ #: app/features/mec/settings.php:273 app/features/mec/settings.php:347
4672
+ msgid "colorful"
4673
+ msgstr "pestrý"
4674
+
4675
+ #: app/features/mec/settings.php:278 app/features/mec/settings.php:352
4676
+ msgid "Clean Style"
4677
+ msgstr "Čistý styl"
4678
+
4679
+ #: app/features/mec/settings.php:286
4680
+ msgid "Default value is Calendar/Monthly View, But you can change it "
4681
+ msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
4682
+
4683
+ #: app/features/mec/settings.php:286 app/features/mec/settings.php:360
4684
+ msgid "See Demo"
4685
+ msgstr "Viz Demo"
4686
+
4687
+ #: app/features/mec/settings.php:294 app/features/mec/settings.php:359
4688
+ msgid "Category Page Skin"
4689
+ msgstr "Vzhled stránky kategorie"
4690
+
4691
+ #: app/features/mec/settings.php:360
4692
+ msgid ""
4693
+ "Default value is List View - But you can change it Set a skin for all "
4694
+ "categories."
4695
+ msgstr ""
4696
+ "Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
4697
+ "pro všechny kategorie."
4698
+
4699
+ #: app/features/mec/settings.php:368 app/features/mec/settings.php:376
4700
+ msgid "Category Events Method"
4701
+ msgstr "Kategorie Metoda události"
4702
+
4703
+ #: app/features/mec/settings.php:372
4704
+ msgid "Expired Events"
4705
+ msgstr "Události vypršely"
4706
+
4707
+ #: app/features/mec/settings.php:377
4708
+ msgid "Default value is Upcoming Events"
4709
+ msgstr "Výchozí hodnota je Nadcházející události"
4710
+
4711
+ #: app/features/mec/settings.php:385 app/features/mec/settings.php:393
4712
+ msgid "Events Archive Status"
4713
+ msgstr "Stav archivu událostí"
4714
+
4715
+ #: app/features/mec/settings.php:388
4716
+ msgid "Enabled (Recommended)"
4717
+ msgstr "Povoleno (doporučeno)"
4718
+
4719
+ # Slug
4720
+ #: app/features/mec/settings.php:394
4721
+ msgid ""
4722
+ "If you disable it, then you should create a page as archive page of MEC. "
4723
+ "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4724
+ "MEC rewrite rules."
4725
+ msgstr ""
4726
+ "Pokud ji zakážete, měli byste vytvořit stránku jako archivní stránku MEC. "
4727
+ "Slug stránky se musí rovnat „Main slug“ MEC. Zakáže také všechna pravidla "
4728
+ "přepisování MEC."
4729
+
4730
+ # Hlavní slug
4731
+ #: app/features/mec/settings.php:407 app/features/mec/settings.php:412
4732
+ msgid "Main Slug"
4733
+ msgstr "Main Slug"
4734
+
4735
+ #: app/features/mec/settings.php:413
4736
+ msgid ""
4737
+ "Default value is events. You can not have a page with this name. MEC allows "
4738
+ "you to create custom URLs for the permalinks and archives to enhance the "
4739
+ "applicability and forward-compatibility of the links."
4740
+ msgstr ""
4741
+ "Výchozí hodnota jsou události. Nemůžete mít stránku s tímto názvem. MEC "
4742
+ "umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
4743
+ "se zvýšila použitelnost a dopředná kompatibilita odkazů."
4744
+
4745
+ #: app/features/mec/settings.php:417 app/features/mec/settings.php:431
4746
+ msgid "Valid characters are lowercase a-z, - character and numbers."
4747
+ msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
4748
+
4749
+ # Slug
4750
+ #: app/features/mec/settings.php:421 app/features/mec/settings.php:426
4751
+ msgid "Category Slug"
4752
+ msgstr "Kategorie Slug"
4753
+
4754
+ #: app/features/mec/settings.php:427
4755
+ msgid ""
4756
+ "It's slug of MEC categories, you can change it to events-cat or something "
4757
+ "else. Default value is mec-category. You can not have a page with this name."
4758
+ msgstr ""
4759
+ "Je to Slug kategorie MEC, můžete ho změnit na kategorii událostinebo něco "
4760
+ "jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
4761
+ "názvem."
4762
+
4763
+ #: app/features/mec/settings.php:439
4764
+ msgid "Currency"
4765
+ msgstr "Měna"
4766
+
4767
+ #: app/features/mec/settings.php:449 app/features/mec/settings.php:454
4768
+ msgid "Currency Sign"
4769
+ msgstr "Symbol měny"
4770
+
4771
+ #: app/features/mec/settings.php:455
4772
+ msgid "Default value will be \"currency\" if you leave it empty."
4773
+ msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
4774
+
4775
+ #: app/features/mec/settings.php:462
4776
+ msgid "Currency Position"
4777
+ msgstr "Pozice měny"
4778
+
4779
+ #: app/features/mec/settings.php:465
4780
+ msgid "Before $10"
4781
+ msgstr "Před $10"
4782
+
4783
+ #: app/features/mec/settings.php:466
4784
+ msgid "After 10$"
4785
+ msgstr "Po 10$"
4786
+
4787
+ #: app/features/mec/settings.php:471
4788
+ msgid "Thousand Separator"
4789
+ msgstr "Oddělovač tisíců"
4790
+
4791
+ #: app/features/mec/settings.php:477
4792
+ msgid "Decimal Separator"
4793
+ msgstr "Oddělovač desítel"
4794
+
4795
+ #: app/features/mec/settings.php:487
4796
+ msgid "No decimal"
4797
+ msgstr "Bez desetinných míst"
4798
+
4799
+ #: app/features/mec/settings.php:498
4800
+ msgid "Enable Google Recaptcha"
4801
+ msgstr "Povolit Google Recaptcha"
4802
+
4803
+ #: app/features/mec/settings.php:505
4804
+ msgid "Enable on booking form"
4805
+ msgstr "Povolit rezervační formulář"
4806
+
4807
+ #: app/features/mec/settings.php:511
4808
+ msgid "Enable on \"Frontend Event Submission\" form"
4809
+ msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
4810
+
4811
+ # místa
4812
+ #: app/features/mec/settings.php:515
4813
+ msgid "Site Key"
4814
+ msgstr "Klíč webu"
4815
+
4816
+ #: app/features/mec/settings.php:521
4817
+ msgid "Secret Key"
4818
+ msgstr "Tajný klíč"
4819
+
4820
+ #: app/features/mec/settings.php:533 app/features/mec/settings.php:541
4821
+ msgid "Time Format"
4822
+ msgstr "Formát času"
4823
+
4824
+ #: app/features/mec/settings.php:536
4825
+ msgid "12 hours format with AM/PM"
4826
+ msgstr "12 hodinový formát s dop./odp."
4827
+
4828
+ #: app/features/mec/settings.php:537
4829
+ msgid "24 hours format"
4830
+ msgstr "24 hodinový fotmát"
4831
+
4832
+ #: app/features/mec/settings.php:542
4833
+ msgid "This option, affects the selection of Start/End time."
4834
+ msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
4835
+
4836
+ #: app/features/mec/settings.php:550
4837
+ msgid "Events List Page"
4838
+ msgstr "Stránka seznamu událostí"
4839
+
4840
+ #: app/features/mec/settings.php:559 app/features/mec/settings.php:571
4841
+ #, php-format
4842
+ msgid "Put %s shortcode into the page."
4843
+ msgstr "Vložte %s na stránku zkrácené kódy."
4844
+
4845
+ #: app/features/mec/settings.php:562
4846
+ msgid "Add/Edit Events Page"
4847
+ msgstr "Přidat / Editovat stránku událostí"
4848
+
4849
+ #: app/features/mec/settings.php:586
4850
+ #, fuzzy
4851
+ #| msgid ""
4852
+ #| "User redirects to this page after booking. Leave it empty if you want to "
4853
+ #| "disable it."
4854
+ msgid ""
4855
+ "User redirects to this page after new event submission. Leave it empty if "
4856
+ "you want to disable it."
4857
+ msgstr ""
4858
+ "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
4859
+ "vypnout, ponechte ji prázdnou."
4860
+
4861
+ #: app/features/mec/settings.php:611
4862
+ msgid "Enable event submission by guest (Not logged-in) users"
4863
+ msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
4864
+
4865
+ #: app/features/mec/settings.php:618
4866
+ msgid "Enable mandatory email and name for guest user"
4867
+ msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
4868
+
4869
+ #: app/features/mec/settings.php:622
4870
+ msgid "Frontend Event Submission Sections"
4871
+ msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
4872
+
4873
+ #: app/features/mec/settings.php:644 app/widgets/single.php:119
4874
+ msgid "Event Categories"
4875
+ msgstr "Kategorie události"
4876
+
4877
+ #: app/features/mec/settings.php:650
4878
+ msgid "Event Labels"
4879
+ msgstr "Štítky události"
4880
+
4881
+ #: app/features/mec/settings.php:662
4882
+ msgid "Event Tags"
4883
+ msgstr "Tagy události"
4884
+
4885
+ #: app/features/mec/settings.php:674 app/widgets/single.php:123
4886
+ msgid "Event Organizer"
4887
+ msgstr "Organizátor události"
4888
+
4889
+ #: app/features/mec/settings.php:692
4890
+ msgid "Booking Options"
4891
+ msgstr "Možnosti rezervace"
4892
+
4893
+ #: app/features/mec/settings.php:698
4894
+ msgid "Fees / Taxes Options"
4895
+ msgstr "Možnosti Poplatky / Daně"
4896
+
4897
+ #: app/features/mec/settings.php:715
4898
+ #, php-format
4899
+ msgid ""
4900
+ "Users can put a note for editors while they're submitting the event. Also "
4901
+ "you can put %%event_note%% into the new event notification in order to get "
4902
+ "users' note in email."
4903
+ msgstr ""
4904
+ "Uživatelé mohou při odesílání události vložit poznámku pro editory. Do "
4905
+ "oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
4906
+ "mail s poznámkami uživatelů."
4907
+
4908
+ #: app/features/mec/settings.php:722 app/features/mec/settings.php:730
4909
+ msgid "Visibility of Note"
4910
+ msgstr "Viditelnost poznámky"
4911
+
4912
+ #: app/features/mec/settings.php:725
4913
+ msgid "Always"
4914
+ msgstr "Vždy"
4915
+
4916
+ #: app/features/mec/settings.php:726
4917
+ msgid "While event is not published"
4918
+ msgstr "I když událost není zveřejněna"
4919
+
4920
+ #: app/features/mec/settings.php:731
4921
+ msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4922
+ msgstr ""
4923
+ "Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
4924
+ "(frontend) a Upravit událost v administraci stránek (backend)."
4925
+
4926
+ #: app/features/mec/settings.php:742 app/libraries/main.php:534
4927
+ msgid "User Profile"
4928
+ msgstr "Uživatelský profil"
4929
+
4930
+ #: app/features/mec/settings.php:744
4931
+ #, php-format
4932
+ msgid ""
4933
+ "Put %s shortcode into your desired page. Then users are able to see history "
4934
+ "of their bookings."
4935
+ msgstr ""
4936
+ "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
4937
+ "historii svých rezervací."
4938
+
4939
+ #: app/features/mec/settings.php:749 app/libraries/main.php:535
4940
+ msgid "Search Bar"
4941
+ msgstr "Vyhledávací panel"
4942
+
4943
+ #: app/features/mec/settings.php:751
4944
+ #, php-format
4945
+ msgid ""
4946
+ "Put %s shortcode into your desired page. Then users are able to search events"
4947
+ msgstr ""
4948
+ "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
4949
+ "události"
4950
+
4951
+ #: app/features/mec/settings.php:755
4952
+ msgid "Ajax Live mode"
4953
+ msgstr "Ajax Live mód"
4954
+
4955
+ #: app/features/mec/settings.php:759
4956
+ msgid "Ajax mode"
4957
+ msgstr "Ajax mód"
4958
+
4959
+ #: app/features/mec/settings.php:760
4960
+ msgid ""
4961
+ "if you enable this option, search button disappeared and to use this "
4962
+ "feature, text input field must be enabled."
4963
+ msgstr ""
4964
+ "pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
4965
+ "této funkce musí být povoleno pole pro zadávání textu."
4966
+
4967
+ #: app/features/mec/settings.php:768
4968
+ msgid "Modern Type"
4969
+ msgstr "Moderní typ"
4970
+
4971
+ #: app/features/mec/settings.php:772
4972
+ msgid "Search bar fields"
4973
+ msgstr "Pole vyhledávacího panelu"
4974
+
4975
+ #: app/features/mec/settings.php:814
4976
+ msgid "Text input"
4977
+ msgstr "Zadávání textu"
4978
+
4979
+ #: app/features/mec/settings.php:827
4980
+ msgid "Enable Mailchimp Integration"
4981
+ msgstr "Povolit integraci Mailchimp"
4982
+
4983
+ #: app/features/mec/settings.php:845 app/features/mec/settings.php:850
4984
+ msgid "List ID"
4985
+ msgstr "ID seznamu"
4986
+
4987
+ #: app/features/mec/settings.php:858 app/features/mec/settings.php:866
4988
+ msgid "Subscription Status"
4989
+ msgstr "Stav odběru"
4990
+
4991
+ #: app/features/mec/settings.php:861
4992
+ msgid "Subscribe automatically"
4993
+ msgstr "Odebírat automaticky"
4994
+
4995
+ #: app/features/mec/settings.php:862
4996
+ msgid "Subscribe by verification"
4997
+ msgstr "Přihlaste se k odběru pomocí ověření"
4998
+
4999
+ #: app/features/mec/settings.php:867
5000
+ msgid ""
5001
+ "If you choose \"Subscribe by verification\" then an email will send to user "
5002
+ "by mailchimp for subscription verification."
5003
+ msgstr ""
5004
+ "Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
5005
+ "uživateli mailchimp k ověření oběru."
5006
+
5007
+ #: app/features/mec/settings.php:879
5008
+ msgid "Upload Field Options"
5009
+ msgstr "Možnosti pole Nahrát"
5010
+
5011
+ #: app/features/mec/settings.php:881
5012
+ msgid "Mime types"
5013
+ msgstr "MIME typy"
5014
+
5015
+ #: app/features/mec/settings.php:885
5016
+ msgid "Split mime types with \",\"."
5017
+ msgstr "Rozdělte typy MIME pomocí “,“."
5018
+
5019
+ #: app/features/mec/settings.php:885
5020
+ msgid "Default: jpeg,jpg,png,pdf"
5021
+ msgstr "Výchozí: jpeg,jpg,png,pdf"
5022
+
5023
+ #: app/features/mec/settings.php:888
5024
+ msgid "Maximum file size"
5025
+ msgstr "Maximální velikost souboru"
5026
+
5027
+ #: app/features/mec/settings.php:892
5028
+ msgid "The unit is Megabyte \"MB\""
5029
+ msgstr "Jednotkou je Megabyte \"MB\""
5030
+
5031
+ #: app/features/mec/single.php:34 app/libraries/main.php:541
5032
+ msgid "Single Event Page"
5033
+ msgstr "Stránka jedné události"
5034
+
5035
+ #: app/features/mec/single.php:36 app/features/mec/single.php:41
5036
+ msgid "Single Event Date Format"
5037
+ msgstr "Formát data jedné události"
5038
+
5039
+ #: app/features/mec/single.php:49 app/features/mec/single.php:57
5040
+ msgid "Date Method"
5041
+ msgstr "Metoda data"
5042
+
5043
+ #: app/features/mec/single.php:52
5044
+ msgid "Next occurrence date"
5045
+ msgstr "Datum dalšího výskytu"
5046
+
5047
+ #: app/features/mec/single.php:53
5048
+ msgid "Referred date"
5049
+ msgstr "Doporučené datum"
5050
+
5051
+ # uvozovky?
5052
+ #: app/features/mec/single.php:58
5053
+ msgid ""
5054
+ "Referred date\" shows the event date based on referred date in event list."
5055
+ msgstr ""
5056
+ "Doporučené datum“ zobrazuje datum události na základě uvedeného data v "
5057
+ "seznamu událostí."
5058
+
5059
+ #: app/features/mec/single.php:65 app/features/mec/single.php:76
5060
+ msgid "Single Event Style"
5061
+ msgstr "Styl jedné události"
5062
+
5063
+ #: app/features/mec/single.php:68
5064
+ msgid "Default Style"
5065
+ msgstr "Výchozí styl"
5066
+
5067
+ # ??? český výraz
5068
+ #: app/features/mec/single.php:71
5069
+ msgid "Elementor Single Builder"
5070
+ msgstr "Elementor Single Builder"
5071
+
5072
+ #: app/features/mec/single.php:77
5073
+ msgid "Choose your single event style."
5074
+ msgstr "Vyberte si styl jedné události."
5075
+
5076
+ #: app/features/mec/single.php:85 app/features/mec/single.php:93
5077
+ msgid "Booking Style"
5078
+ msgstr "Styl rezervace"
5079
+
5080
+ #: app/features/mec/single.php:89
5081
+ msgid "Modal"
5082
+ msgstr "Modální"
5083
+
5084
+ #: app/features/mec/single.php:94
5085
+ msgid ""
5086
+ "Choose your Booking style, Please Note: When you set this feature to modal "
5087
+ "you can not see booking box if you set popoup module view on shortcodes"
5088
+ msgstr ""
5089
+ "Vyberte si svůj rezervační styl, prosím Poznámka: Když nastavíte tuto funkci "
5090
+ "na modální, nevidíte rezervační box, pokud nastavíte zobrazení vyskakovacího "
5091
+ "modulu na krátké kódy"
5092
+
5093
+ #: app/features/mec/single.php:102
5094
+ msgid "Disable Block Editor (Gutenberg)"
5095
+ msgstr "Zakázat Editor bloků (Gutenberg)"
5096
+
5097
+ #: app/features/mec/single.php:105
5098
+ msgid "Disable Block Editor"
5099
+ msgstr "Zakázat Editor bloků"
5100
+
5101
+ #: app/features/mec/single.php:109
5102
+ msgid "Block Editor"
5103
+ msgstr "Editor bloků"
5104
+
5105
+ #: app/features/mec/single.php:110
5106
+ msgid ""
5107
+ "If you want to use the new WordPress block editor you should keep this "
5108
+ "checkbox unchecked."
5109
+ msgstr ""
5110
+ "Pokud chcete použít nový editor bloků WordPress, měli byste ponechat toto "
5111
+ "políčko prázdné."
5112
+
5113
+ #: app/features/mec/single.php:116 app/features/mec/single.php:123
5114
+ msgid "Breadcrumbs"
5115
+ msgstr "Drobečková navigace"
5116
+
5117
+ #: app/features/mec/single.php:119
5118
+ msgid "Enable Breadcrumbs."
5119
+ msgstr "Povolit drobečkovou navigaci."
5120
+
5121
+ #: app/features/mec/single.php:124
5122
+ msgid "Check this option, for showing the breadcrumbs on single event page"
5123
+ msgstr ""
5124
+ "Zaškrtněte tuto možnost, chcete-li zobrazit drobečkovou navigaci na stránce "
5125
+ "jedné události"
5126
+
5127
+ #: app/features/mec/single.php:137
5128
+ msgid "Show countdown module on event page"
5129
+ msgstr "Zobrazit modul odpočítávání na stránce události"
5130
+
5131
+ #: app/features/mec/single.php:142
5132
+ msgid "Countdown Style"
5133
+ msgstr "Styl Odpočítávání"
5134
+
5135
+ #: app/features/mec/single.php:145
5136
+ msgid "Plain Style"
5137
+ msgstr "Prostý styl"
5138
+
5139
+ #: app/features/mec/single.php:146
5140
+ msgid "Flip Style"
5141
+ msgstr "Styl překlopení"
5142
+
5143
+ #: app/features/mec/single.php:154 app/features/mec/single.php:161
5144
+ msgid "Exceptional days (Exclude Dates)"
5145
+ msgstr "Výjimečné dny (kromě dat)"
5146
+
5147
+ #: app/features/mec/single.php:158
5148
+ msgid "Show exceptional days option on Add/Edit events page"
5149
+ msgstr "Zobrazit možnost výjimečných dnů na stránce Přidat / Upravit události"
5150
+
5151
+ #: app/features/mec/single.php:162
5152
+ msgid ""
5153
+ "Using this option you can exclude certain days from event occurrence dates."
5154
+ msgstr ""
5155
+ "Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
5156
+
5157
+ #: app/features/mec/single.php:171 app/libraries/main.php:544
5158
+ msgid "Additional Organizers"
5159
+ msgstr "Další organizátoři"
5160
+
5161
+ #: app/features/mec/single.php:175
5162
+ msgid ""
5163
+ "Show additional organizers option on Add/Edit events page and single event "
5164
+ "page."
5165
+ msgstr ""
5166
+ "Zobrazit další možnost organizátorů na stránce Přidat / Upravit události a "
5167
+ "na stránce jedné události."
5168
+
5169
+ #: app/features/mec/single.php:181
5170
+ msgid "Additional locations"
5171
+ msgstr "Další místa"
5172
+
5173
+ #: app/features/mec/single.php:185
5174
+ msgid ""
5175
+ "Show additional locations option on Add/Edit events page and single event "
5176
+ "page."
5177
+ msgstr ""
5178
+ "Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
5179
+ "jediné události."
5180
+
5181
+ #: app/features/mec/single.php:191 app/libraries/main.php:546
5182
+ #: app/skins/single.php:163
5183
+ msgid "Related Events"
5184
+ msgstr "Související události"
5185
+
5186
+ #: app/features/mec/single.php:195
5187
+ msgid "Display related events based on taxonomy in single event page."
5188
+ msgstr ""
5189
+ "Zobrazte související události na základě taxonomie na stránce s jednou "
5190
+ "událostí."
5191
+
5192
+ #: app/features/mec/single.php:201
5193
+ msgid "Select Taxonomies:"
5194
+ msgstr "Vyberte taxonomie:"
5195
+
5196
+ #: app/features/mec/styles.php:24
5197
+ msgid "Custom Styles"
5198
+ msgstr "Vlastní styly"
5199
+
5200
+ #: app/features/mec/styles.php:29
5201
+ msgid ""
5202
+ "If you're a developer or you have some knowledge about CSS codes, you can "
5203
+ "place your desired styles codes here. These codes will be included in your "
5204
+ "theme frontend after all styles so they will override MEC default (or theme) "
5205
+ "styles."
5206
+ msgstr ""
5207
+ "Pokud jste vývojář nebo máte nějaké znalosti o kódech CSS, můžete zde "
5208
+ "umístit požadované kódy stylů. Tyto kódy budou zahrnuty do vašeho "
5209
+ "tematického rozhraní po všech stylech, takže přepíší výchozí MEC (nebo "
5210
+ "tématické) styly."
5211
+
5212
+ #: app/features/mec/styling.php:10 app/features/mec/styling.php:158
5213
+ #: app/features/mec/styling.php:184
5214
+ msgid "Default Font"
5215
+ msgstr "Výchozí písmo"
5216
+
5217
+ #: app/features/mec/styling.php:50
5218
+ msgid "Styling Option"
5219
+ msgstr "Možnosti stylování"
5220
+
5221
+ #: app/features/mec/styling.php:55
5222
+ msgid "Color Skin"
5223
+ msgstr "Barva vzhledu"
5224
+
5225
+ #: app/features/mec/styling.php:58
5226
+ msgid "Predefined Color Skin"
5227
+ msgstr "Předdefinovaná barva vzhledu"
5228
+
5229
+ #: app/features/mec/styling.php:101
5230
+ msgid "Custom Color Skin"
5231
+ msgstr "Vlastní barevný vzhled"
5232
+
5233
+ #: app/features/mec/styling.php:107
5234
+ msgid ""
5235
+ "If you want to select a predefined color skin, you must clear the color of "
5236
+ "this item"
5237
+ msgstr ""
5238
+ "Pokud chcete vybrat předdefinovaný vzhled barev, musíte vymazat barvu této "
5239
+ "položky"
5240
+
5241
+ #: app/features/mec/styling.php:112
5242
+ msgid "Advanced Color Options (shortcodes)"
5243
+ msgstr "Pokročilé možnosti barev (zkrácené kódy)"
5244
+
5245
+ # Efekt přejetí myši
5246
+ #: app/features/mec/styling.php:124
5247
+ msgid "Title Hover"
5248
+ msgstr "Pohyb myši nad názvem"
5249
+
5250
+ #: app/features/mec/styling.php:141
5251
+ msgid "Typography"
5252
+ msgstr "Typografie"
5253
+
5254
+ #: app/features/mec/styling.php:143
5255
+ msgid "Heading (Events Title) Font Family"
5256
+ msgstr "Záhlaví (Název události) Rodina písma"
5257
+
5258
+ #: app/features/mec/styling.php:169
5259
+ msgid "Paragraph Font Family"
5260
+ msgstr "Rodina písma odstavce"
5261
+
5262
+ #: app/features/mec/styling.php:196 app/features/mec/styling.php:202
5263
+ msgid "Disable Google Fonts"
5264
+ msgstr "Zakázat Google písma"
5265
+
5266
+ #: app/features/mec/styling.php:203
5267
+ msgid "To be GDPR compliant you may need to disable Google fonts!"
5268
+ msgstr "Chcete-li vyhovět GDPR, možná budete muset zakázat písma Google!"
5269
+
5270
+ #: app/features/mec/styling.php:212
5271
+ msgid "Container Width"
5272
+ msgstr "Šířka kontejneru"
5273
+
5274
+ #: app/features/mec/styling.php:214 app/features/mec/styling.php:219
5275
+ msgid "Desktop Normal Screens"
5276
+ msgstr "Desktop Normální obrazovky"
5277
+
5278
+ #: app/features/mec/styling.php:220 app/features/mec/styling.php:233
5279
+ msgid "You can enter your theme container size in this field"
5280
+ msgstr "Do tohoto pole můžete zadat velikost kontejneru tématu"
5281
+
5282
+ #: app/features/mec/styling.php:227 app/features/mec/styling.php:232
5283
+ msgid "Desktop Large Screens"
5284
+ msgstr "Desktop velké obrazovky"
5285
+
5286
+ #: app/features/mec/support-page.php:12
5287
+ msgid "All videos"
5288
+ msgstr "Všechna videa"
5289
+
5290
+ #: app/features/mec/support-page.php:13 app/features/mec/support.php:147
5291
+ msgid "All Articles"
5292
+ msgstr "Všechny články"
5293
+
5294
+ #: app/features/mec/support-page.php:15
5295
+ msgid ""
5296
+ "If you have any questions regarding Modern Events Calendar and how to use "
5297
+ "it, you can use the following four methods we have prepared in this page. "
5298
+ "The detailed documentations of MEC along with its instructional videos will "
5299
+ "help you have a great experience working with it.So, if you need futher "
5300
+ "instructions using the plugin, please first refer to the following to find "
5301
+ "your answers."
5302
+ msgstr ""
5303
+ "Máte-li jakékoli dotazy týkající se moderního kalendáře událostí MEC a jeho "
5304
+ "použití, můžete použít následující čtyři metody, které jsme na této stránce "
5305
+ "připravili. Podrobná dokumentace MEC spolu s jejími instruktážními videi vám "
5306
+ "pomohou získat velké zkušenosti. Pokud tedy potřebujete další instrukce s "
5307
+ "používáním doplňku, nejprve se prosím zaměřte na vyhledání odpovědí."
5308
+
5309
+ #: app/features/mec/support-page.php:31
5310
+ #, php-format
5311
+ msgid ""
5312
+ "%s, if you need support, you can purchase our Extra Support feature through "
5313
+ "links below:"
5314
+ msgstr ""
5315
+
5316
+ #: app/features/mec/support-page.php:31 app/features/mec/support-page.php:43
5317
+ msgid "Dear user"
5318
+ msgstr ""
5319
+
5320
+ #: app/features/mec/support-page.php:43
5321
+ #, php-format
5322
+ msgid ""
5323
+ "%s, we won't charge you for any extra price after a year for using MEC or "
5324
+ "receiving updates, but you will need to renew your license if you needed "
5325
+ "support by then. You can use links below in order to do that:"
5326
+ msgstr ""
5327
+
5328
+ #: app/features/mec/support-page.php:57
5329
+ msgid "Advice and answers from the Webnus Team"
5330
+ msgstr "Rady a odpovědi týmu Webnus"
5331
+
5332
+ #: app/features/mec/support-page.php:72
5333
+ msgid "Quick Setup"
5334
+ msgstr "Rychlé nastavení"
5335
+
5336
+ #: app/features/mec/support-page.php:76
5337
+ msgid "Download the Plugin"
5338
+ msgstr "Stažení doplňku"
5339
+
5340
+ #: app/features/mec/support-page.php:77
5341
+ msgid "Install and Activate the Plugin"
5342
+ msgstr "Instalace a aktivace doplňku"
5343
+
5344
+ #: app/features/mec/support-page.php:78
5345
+ msgid "Add a New Event"
5346
+ msgstr "Přidat Novou událost"
5347
+
5348
+ #: app/features/mec/support-page.php:81 app/features/mec/support-page.php:98
5349
+ #: app/features/mec/support-page.php:115 app/features/mec/support-page.php:132
5350
+ #: app/features/mec/support-page.php:152 app/features/mec/support-page.php:169
5351
+ #: app/features/mec/support-page.php:186 app/features/mec/support-page.php:203
5352
+ msgid "Watch Video"
5353
+ msgstr "Sledovat video"
5354
+
5355
+ #: app/features/mec/support-page.php:89
5356
+ msgid "Activate License"
5357
+ msgstr "Aktivovat licenci"
5358
+
5359
+ #: app/features/mec/support-page.php:93
5360
+ msgid "Login to Dashboard"
5361
+ msgstr "Přihlásit se do řídícímu panelu"
5362
+
5363
+ #: app/features/mec/support-page.php:94
5364
+ msgid "Get the License Key"
5365
+ msgstr "Získat licenční klíč"
5366
+
5367
+ #: app/features/mec/support-page.php:95
5368
+ msgid "Activate the plugin"
5369
+ msgstr "Aktivace doplňku"
5370
+
5371
+ #: app/features/mec/support-page.php:110
5372
+ msgid "Add New Events, Date and Time"
5373
+ msgstr "Přidat novou událost, datum a čas"
5374
+
5375
+ #: app/features/mec/support-page.php:111
5376
+ msgid "Tags, Categories, Organizer, Location"
5377
+ msgstr "Tagy, Kategorie, Organizátoři, Místa"
5378
+
5379
+ #: app/features/mec/support-page.php:112
5380
+ msgid "Hourly Schedule, Set Up Shortcodes"
5381
+ msgstr "Hodinový rozvrh, nastavení zkrácených kódů"
5382
+
5383
+ #: app/features/mec/support-page.php:123 app/features/mec/support-page.php:127
5384
+ msgid "Enable Booking"
5385
+ msgstr "Povolit rezervace"
5386
+
5387
+ #: app/features/mec/support-page.php:128 app/features/mec/support-page.php:149
5388
+ msgid "Customize the Booking Form"
5389
+ msgstr "Přizpůsobit rezervační formulář"
5390
+
5391
+ #: app/features/mec/support-page.php:129
5392
+ msgid "Set Up a Payment Gateway"
5393
+ msgstr "Nastavení platební brány"
5394
+
5395
+ #: app/features/mec/support-page.php:143
5396
+ msgid "Add booking form to event"
5397
+ msgstr "Přidat rezervační formulář k události"
5398
+
5399
+ #: app/features/mec/support-page.php:147
5400
+ msgid "Enable Booking from Settings"
5401
+ msgstr "Povolit rezervaci z nastavení"
5402
+
5403
+ #: app/features/mec/support-page.php:148
5404
+ msgid "Set Up a Booking Form"
5405
+ msgstr "Nastavit rezervační formulář"
5406
+
5407
+ #: app/features/mec/support-page.php:160
5408
+ msgid "Create Shortcodes"
5409
+ msgstr "Vytvořit zkrácené kódy"
5410
+
5411
+ #: app/features/mec/support-page.php:164
5412
+ msgid "Create a New Shortcode"
5413
+ msgstr "Vytvořit nové zkrácený kód"
5414
+
5415
+ #: app/features/mec/support-page.php:165
5416
+ msgid "Customize Shortcodes"
5417
+ msgstr "Přizpůsobit zkrácené kódy"
5418
+
5419
+ #: app/features/mec/support-page.php:166
5420
+ msgid "Use Filters in Shortcodes"
5421
+ msgstr "Použít filtry ve zkrácených kódech"
5422
+
5423
+ #: app/features/mec/support-page.php:177
5424
+ msgid "WooCommerce gateways"
5425
+ msgstr "Brána WooCommerce"
5426
+
5427
+ #: app/features/mec/support-page.php:181
5428
+ msgid "Install and Activate WooCommerce"
5429
+ msgstr "Instalace a aktivace WooCommerce"
5430
+
5431
+ #: app/features/mec/support-page.php:182
5432
+ msgid "Integrate with MEC"
5433
+ msgstr "Integrovat s MEC"
5434
+
5435
+ #: app/features/mec/support-page.php:183
5436
+ msgid "Set Up WooCommerce Gateway"
5437
+ msgstr "Nastavit bránu WooCommerce"
5438
+
5439
+ #: app/features/mec/support-page.php:198
5440
+ msgid "An Overview of the Settings"
5441
+ msgstr "Přehled nastavení"
5442
+
5443
+ #: app/features/mec/support-page.php:199
5444
+ msgid "Set Up Different Settings"
5445
+ msgstr "Nastavit různá nastavení"
5446
+
5447
+ #: app/features/mec/support-page.php:200
5448
+ msgid "Use Different Options"
5449
+ msgstr "Použít různé možnosti"
5450
+
5451
+ #: app/features/mec/support-page.php:214
5452
+ msgid "FAQ"
5453
+ msgstr "FAQ"
5454
+
5455
+ #: app/features/mec/support-page.php:218
5456
+ msgid "How should I update plugin?"
5457
+ msgstr "Jak mám aktualizovat doplněk?"
5458
+
5459
+ #: app/features/mec/support-page.php:220
5460
+ #, php-format
5461
+ msgid ""
5462
+ "You have two options:<br>\n"
5463
+ " 1-\tUploading the plugin file using FTP. For "
5464
+ "more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
5465
+ "<br>\n"
5466
+ " 2-\tUsing the auto-update feature which needs "
5467
+ "the adding of the purchase code in the corresponding section in the plugin. "
5468
+ "For more information, please <a href=\"%s\" target=\"_blank\">click here</a>."
5469
+ msgstr ""
5470
+ "Máte dvě možnosti:<br>\n"
5471
+ " 1-\tNahrání doplňku souboru pomocí FTP. Pro "
5472
+ "další informace, prosím <a href=\"%s\" target=\"_blank\">klikněte sem</a>."
5473
+ "<br>\n"
5474
+ " 2-\tPomocí funkce automatické aktualizace, která "
5475
+ "vyžaduje přidání nákupního kódu v odpovídající sekci pluginu. Pro další "
5476
+ "informace, prosím <a href=\"%s\" target=\"_blank\">klikněte sem</a>."
5477
+
5478
+ #: app/features/mec/support-page.php:225
5479
+ msgid "Do I lose all my data or customization if I update MEC?"
5480
+ msgstr "Ztratím všechna moje data nebo přizpůsobení, pokud aktualizuji MEC?"
5481
+
5482
+ #: app/features/mec/support-page.php:226
5483
+ msgid ""
5484
+ "If you’ve added a file to the main folder of MEC, this file will be removed "
5485
+ "after the update. Therefore, please do get a full back up before proceeding "
5486
+ "with the update process."
5487
+ msgstr ""
5488
+ "Pokud jste do hlavní složky MEC přidali soubor, bude tento soubor po "
5489
+ "aktualizaci odstraněn. Před pokračováním v procesu aktualizace proto prosím "
5490
+ "proveďte úplné zálohování."
5491
+
5492
+ #: app/features/mec/support-page.php:229
5493
+ msgid "Can I customize the event pages?"
5494
+ msgstr "Mohu přizpůsobit stránky událostí?"
5495
+
5496
+ #: app/features/mec/support-page.php:231
5497
+ #, php-format
5498
+ msgid ""
5499
+ "Yes, it is possible. In order to see the related documentations, please <a "
5500
+ "href=\"%s\" target=\"_blank\">click here</a>."
5501
+ msgstr ""
5502
+ "Ano, je to možné. Chcete-li zobrazit související dokumentaci, prosím <a href="
5503
+ "\"%s\" target=\"_blank\">klikněte sem</a>."
5504
+
5505
+ #: app/features/mec/support-page.php:234
5506
+ msgid "Does MEC have default languages or it needs to be translated?"
5507
+ msgstr "Má MEC výchozí jazyky nebo je třeba jej přeložit?"
5508
+
5509
+ #: app/features/mec/support-page.php:236
5510
+ #, php-format
5511
+ msgid ""
5512
+ "Yes, for some of the languages MEC has the translation file as default. "
5513
+ "However, since these translations have been done by the users, they may be "
5514
+ "incomplete, hence updating them might be required. For more information, "
5515
+ "please <a href=\"%s\" target=\"_blank\">click here</a>."
5516
+ msgstr ""
5517
+ "Ano, pro některé jazyky má MEC jako výchozí překladový soubor. Protože však "
5518
+ "tyto překlady provedli uživatelé, mohou být neúplné, a proto je může "
5519
+ "vyžadovat jejich aktualizace. Další informace naleznete <a href=\"%s\" "
5520
+ "target=\"_blank\"> kliknutím sem</a>."
5521
+
5522
+ #: app/features/mec/support-page.php:239
5523
+ msgid "Can I have more than one calendar in one website?"
5524
+ msgstr "Mohu mít na jednom webu více než jeden kalendář?"
5525
+
5526
+ #: app/features/mec/support-page.php:240
5527
+ msgid ""
5528
+ "Unfortunately, MEC does not support more than 1 calendar in a single "
5529
+ "website, however, it will be added in its upcoming updates."
5530
+ msgstr ""
5531
+ "MEC bohužel nepodporuje více než 1 kalendář na jednom webu, bude však přidán "
5532
+ "do nadcházejících aktualizací."
5533
+
5534
+ #: app/features/mec/support-page.php:242
5535
+ msgid "Can I import/export from/to MEC?"
5536
+ msgstr "Mohu importovat / exportovat z / do MEC?"
5537
+
5538
+ #: app/features/mec/support-page.php:243
5539
+ msgid ""
5540
+ "Yes, you can get an XML export from MEC data or import the file you've "
5541
+ "exported to MEC. Also, if you are using one of the following plugins (The "
5542
+ "event calendar, calendarize it, EventOn, Events Schedule WP Plugin), then "
5543
+ "you can easily transfer your events to MEC."
5544
+ msgstr ""
5545
+ "Ano, můžete exportovat XML z dat MEC nebo importovat exportovaný soubor do "
5546
+ "MEC. Také pokud používáte jeden z následujících pluginů (The event calendar, "
5547
+ "calendarize it, EventOn, Events Schedule WP Plugin), pak můžete své události "
5548
+ "snadno přenést do MEC."
5549
+
5550
+ #: app/features/mec/support-page.php:251
5551
+ msgid "Articles"
5552
+ msgstr "Články"
5553
+
5554
+ #: app/features/mec/support-page.php:254
5555
+ msgid "MEC And Integrate With WooCommerce"
5556
+ msgstr "(MEC) a integrace s WooCommerce"
5557
+
5558
+ #: app/features/mec/support-page.php:255
5559
+ msgid "Create Events With Your Page Builder"
5560
+ msgstr "Vytvářejte události pomocí Tvůrce stránek"
5561
+
5562
+ #: app/features/mec/support-page.php:256
5563
+ msgid "Why can't I use HTML tags?"
5564
+ msgstr "Proč nemohu používat značky HTML?"
5565
+
5566
+ #: app/features/mec/support-page.php:257
5567
+ msgid "Setup Date Option On Shortcodes"
5568
+ msgstr "Možnost nastavení data na zkrácené kódy"
5569
+
5570
+ #: app/features/mec/support-page.php:258
5571
+ msgid "I want to export booking, what should I do?"
5572
+ msgstr "Chci exportovat rezervaci, co mám dělat?"
5573
+
5574
+ #: app/features/mec/support-page.php:259
5575
+ msgid "I Can't Export iCal"
5576
+ msgstr "Nemohu exportovat iCal"
5577
+
5578
+ #: app/features/mec/support-page.php:260
5579
+ msgid "Booking Module Not Working"
5580
+ msgstr "Rezervační modul nefunguje"
5581
+
5582
+ #: app/features/mec/support-page.php:261
5583
+ msgid "Translate MEC"
5584
+ msgstr "Přeložit MEC"
5585
+
5586
+ #: app/features/mec/support-page.php:262
5587
+ msgid "No Event Found!"
5588
+ msgstr "Nebyla nalezena žádná událost!"
5589
+
5590
+ #: app/features/mec/support-page.php:263
5591
+ msgid "MEC Theme Integration Guide"
5592
+ msgstr "Průvodce integrací motivů MEC"
5593
+
5594
+ #: app/features/mec/support-page.php:264
5595
+ msgid "Can I Override MEC Template ?"
5596
+ msgstr "Mohu přepsat šablonu MEC?"
5597
+
5598
+ #: app/features/mec/support-page.php:274
5599
+ msgid ""
5600
+ "Webnus is an elite and trusted author with a high percentage of satisfied "
5601
+ "users. If you have any issues please don't hesitate to contact us, we will "
5602
+ "reply as soon as possible."
5603
+ msgstr ""
5604
+ "Webnus je elitní a spolehlivý autor s vysokým procentem spokojených "
5605
+ "uživatelů. Pokud máte nějaké problémy, neváhejte nás kontaktovat, odpovíme "
5606
+ "vám co nejdříve."
5607
+
5608
+ #: app/features/mec/support-page.php:275
5609
+ msgid "Create a support ticket"
5610
+ msgstr "Vytvořte lístek podpory"
5611
+
5612
+ #: app/features/mec/support.php:52 app/libraries/main.php:775
5613
+ msgid "Styling Options"
5614
+ msgstr "Možnosti stylování"
5615
+
5616
+ #: app/features/mec/support.php:59 app/libraries/main.php:782
5617
+ msgid "Custom CSS"
5618
+ msgstr "Vlastní CSS"
5619
+
5620
+ #: app/features/mec/support.php:104
5621
+ msgid ""
5622
+ "Our documentation is simple and functional with full details and cover all "
5623
+ "essential aspects from beginning to the most advanced parts."
5624
+ msgstr ""
5625
+ "Naše dokumentace je jednoduchá a funkční s úplnými detaily a pokrývá všechny "
5626
+ "podstatné aspekty od začátku až po nejpokročilejší části."
5627
+
5628
+ #: app/features/mec/support.php:107
5629
+ msgid "DOCUMENTATION"
5630
+ msgstr "DOKUMENTACE"
5631
+
5632
+ #: app/features/mec/support.php:116
5633
+ msgid "Support Forum"
5634
+ msgstr "Fórum podpory"
5635
+
5636
+ #: app/features/mec/support.php:120
5637
+ msgid ""
5638
+ "Webnus is elite and trusted author with high percentage of satisfied user. "
5639
+ "If you want to use this service you need to upgrade your plugin to Pro "
5640
+ "version. Click on the following button."
5641
+ msgstr ""
5642
+ "Webnus je elitní a spolehlivý autor s vysokým procentem spokojených "
5643
+ "uživatelů. Pokud chcete tuto službu používat, musíte upgradovat plugin na "
5644
+ "verzi Pro. Klikněte na následující tlačítko."
5645
+
5646
+ #: app/features/mec/support.php:122
5647
+ msgid ""
5648
+ "Webnus is elite and trusted author with high percentage of satisfied user. "
5649
+ "If you have any issues please don't hesitate to contact us, we will reply as "
5650
+ "soon as possible."
5651
+ msgstr ""
5652
+ "Webnus je elitní a spolehlivý autor s vysokým procentem spokojených "
5653
+ "uživatelů. Pokud máte nějaké problémy, neváhejte nás kontaktovat, odpovíme "
5654
+ "vám co nejdříve."
5655
+
5656
+ #: app/features/mec/support.php:128
5657
+ msgid "OPEN A TICKET"
5658
+ msgstr "OTEVŘÍT VSTUPENKU"
5659
+
5660
+ #: app/features/mec/support.php:138
5661
+ msgid "Knowledgebase"
5662
+ msgstr "Znalostní databáze"
5663
+
5664
+ #: app/features/mec/support.php:142
5665
+ msgid "How to create a new event?"
5666
+ msgstr "Jak vytvořit novou událost?"
5667
+
5668
+ #: app/features/mec/support.php:143
5669
+ msgid "Booking module doesn't work"
5670
+ msgstr "Rezervační modul nefunguje"
5671
+
5672
+ #: app/features/mec/support.php:144
5673
+ msgid "How to export events in iCal format?"
5674
+ msgstr "Jak exportovat události ve formátu iCal?"
5675
+
5676
+ #: app/features/mec/support.php:145
5677
+ msgid "How to override MEC template files?"
5678
+ msgstr "Jak přepsat soubory šablony MEC?"
5679
+
5680
+ #: app/features/mec/support.php:146
5681
+ msgid "How to add/manage shortcodes?"
5682
+ msgstr "Jak přidat / spravovat zkrácené kódy?"
5683
+
5684
+ #: app/features/organizers.php:106 app/features/organizers.php:149
5685
+ msgid "Insert organizer phone number."
5686
+ msgstr "Vložit telefonní číslo organizátora."
5687
+
5688
+ #: app/features/organizers.php:114 app/features/organizers.php:153
5689
+ msgid "Insert organizer email address."
5690
+ msgstr "Vložit email organizátora."
5691
+
5692
+ #: app/features/organizers.php:119 app/features/organizers.php:156
5693
+ #: app/features/organizers.php:291
5694
+ msgid "Link to organizer page"
5695
+ msgstr "Odkaz na stránku organizátora"
5696
+
5697
+ #: app/features/organizers.php:122 app/features/organizers.php:157
5698
+ msgid "Use this field to link organizer to other user profile pages"
5699
+ msgstr ""
5700
+ "Toto pole slouží k propojení organizátora s jinými stránkami uživatelského "
5701
+ "profilu"
5702
+
5703
+ #: app/features/organizers.php:205
5704
+ msgid "Contact info"
5705
+ msgstr "Kontaktní informace"
5706
+
5707
+ #: app/features/organizers.php:260
5708
+ #, php-format
5709
+ msgid "Event Main %s"
5710
+ msgstr "Hlavní událost %s"
5711
+
5712
+ #: app/features/organizers.php:263
5713
+ msgid "Hide organizer"
5714
+ msgstr "Skrýt organizátora"
5715
+
5716
+ #: app/features/organizers.php:264
5717
+ msgid "Insert a new organizer"
5718
+ msgstr "Vložit nového organizátora"
5719
+
5720
+ #: app/features/organizers.php:272
5721
+ msgid "Choose one of saved organizers or insert new one below."
5722
+ msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
5723
+
5724
+ #: app/features/organizers.php:283
5725
+ msgid "Phone number."
5726
+ msgstr "Telefonní číslo."
5727
+
5728
+ #: app/features/organizers.php:284
5729
+ msgid "eg. +1 (234) 5678"
5730
+ msgstr "např. + 420 123 456 789"
5731
+
5732
+ #: app/features/organizers.php:287
5733
+ msgid "Email address."
5734
+ msgstr "Emailová adresa."
5735
+
5736
+ #: app/features/organizers.php:288
5737
+ msgid "eg. john@smith.com"
5738
+ msgstr "např. info@itreseni.cz"
5739
+
5740
+ #: app/features/organizers.php:292
5741
+ msgid "eg. https://webnus.net"
5742
+ msgstr "např. https://webnus.net"
5743
+
5744
+ #: app/features/organizers.php:311 app/libraries/main.php:4953
5745
+ #: app/skins/single.php:847
5746
+ msgid "Other Organizers"
5747
+ msgstr "Další organizátoři"
5748
+
5749
+ #: app/features/organizers.php:313
5750
+ msgid ""
5751
+ "You can select extra organizers in addition to main organizer if you like."
5752
+ msgstr ""
5753
+ "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
5754
+
5755
+ #: app/features/profile.php:74
5756
+ #, php-format
5757
+ msgid "Please %s/%s in order to see your bookings / profile."
5758
+ msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
5759
+
5760
+ #: app/features/profile/profile.php:18 app/libraries/main.php:1959
5761
+ msgid "Your booking already canceled!"
5762
+ msgstr "Vaše rezervace již byla zrušena!"
5763
+
5764
+ #: app/features/profile/profile.php:47 app/features/profile/profile.php:177
5765
+ msgid "#"
5766
+ msgstr "#"
5767
+
5768
+ #: app/features/profile/profile.php:56 app/libraries/main.php:2929
5769
+ msgid "Status"
5770
+ msgstr "Stav"
5771
+
5772
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2074
5773
+ msgid "Attendees"
5774
+ msgstr "Účastníci"
5775
+
5776
+ #: app/features/profile/profile.php:62
5777
+ msgid "Invoice"
5778
+ msgstr "Faktura"
5779
+
5780
+ #: app/features/profile/profile.php:65
5781
+ msgid "Map"
5782
+ msgstr "Mapa"
5783
+
5784
+ #: app/features/profile/profile.php:68
5785
+ msgid "Cancel"
5786
+ msgstr "Zrušit"
5787
+
5788
+ #: app/features/profile/profile.php:96
5789
+ msgid "N/A"
5790
+ msgstr ""
5791
+
5792
+ #: app/features/profile/profile.php:123
5793
+ #, php-format
5794
+ msgid "<i class=\"mec-sl-eye\"></i> %s"
5795
+ msgstr "<i class=\"mec-sl-eye\"></i> %s"
5796
+
5797
+ #: app/features/profile/profile.php:189
5798
+ msgid "Variations"
5799
+ msgstr "Variace"
5800
+
5801
+ #: app/features/profile/profile.php:232
5802
+ msgid "No bookings found!"
5803
+ msgstr "Nebyly nalezeny žádné rezervace!"
5804
+
5805
+ #: app/features/search.php:87 app/libraries/main.php:4919
5806
+ msgid "label"
5807
+ msgstr "štítek"
5808
+
5809
+ #: app/features/search.php:121
5810
+ msgid "Please enter at least 3 characters and try again"
5811
+ msgstr "Zadejte prosím alespoň 3 znaky a zkuste to znovu"
5812
+
5813
+ #: app/features/search_bar/search_bar.php:32
5814
+ msgid "Please enter at least 3 characters"
5815
+ msgstr "Zadejte alespoň 3 znaky"
5816
+
5817
+ #: app/features/search_bar/search_bar.php:34
5818
+ msgid "Search results will show here"
5819
+ msgstr "Zde se zobrazí výsledky vyhledávání"
5820
+
5821
+ #: app/features/search_bar/search_bar.php:45
5822
+ msgid "Search"
5823
+ msgstr "Vyhledat"
5824
+
5825
+ #: app/features/search_bar/search_noresult.php:1
5826
+ msgid "No search result."
5827
+ msgstr "Žádný výsledek vyhledávání."
5828
+
5829
+ #: app/features/search_bar/search_result.php:11
5830
+ #: app/libraries/notifications.php:751 app/libraries/render.php:452
5831
+ #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5832
+ #: app/skins/single.php:160 app/skins/single.php:738
5833
+ #: app/skins/single/default.php:101 app/skins/single/default.php:313
5834
+ #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5835
+ msgid "All of the day"
5836
+ msgstr "Celý den"
5837
+
5838
+ #: app/features/speakers.php:110 app/features/speakers.php:179
5839
+ #: app/features/speakers.php:255
5840
+ msgid "Job Title"
5841
+ msgstr "Pracovní pozice"
5842
+
5843
+ #: app/features/speakers.php:113 app/features/speakers.php:180
5844
+ msgid "Insert speaker job title."
5845
+ msgstr "Vložte pracovní pozici řečníka."
5846
+
5847
+ #: app/features/speakers.php:121 app/features/speakers.php:184
5848
+ msgid "Insert speaker phone number."
5849
+ msgstr "Vložte telefonní číslo řečníka."
5850
+
5851
+ #: app/features/speakers.php:129 app/features/speakers.php:188
5852
+ msgid "Insert speaker email address."
5853
+ msgstr "Vložte email řečníka."
5854
+
5855
+ #: app/features/speakers.php:134 app/features/speakers.php:191
5856
+ msgid "Facebook Page"
5857
+ msgstr "Stránka na Facebooku"
5858
+
5859
+ #: app/features/speakers.php:137 app/features/speakers.php:192
5860
+ msgid "Insert URL of Facebook Page"
5861
+ msgstr "Vložte URL stránky na Facebooku"
5862
+
5863
+ #: app/features/speakers.php:142 app/features/speakers.php:195
5864
+ msgid "Instagram"
5865
+ msgstr "Instagram"
5866
+
5867
+ #: app/features/speakers.php:145 app/features/speakers.php:196
5868
+ msgid "Insert URL of Instagram"
5869
+ msgstr "Vložte URL Instagramu"
5870
+
5871
+ #: app/features/speakers.php:150 app/features/speakers.php:199
5872
+ msgid "Twitter Page"
5873
+ msgstr "Stránka na Twitteru"
5874
+
5875
+ #: app/features/speakers.php:153 app/features/speakers.php:200
5876
+ msgid "Insert URL of Twitter Page"
5877
+ msgstr "Vložte URL stránky na Twitteru"
5878
+
5879
+ #: app/features/speakers.php:315
5880
+ msgid "Sorry, You must insert speaker name!"
5881
+ msgstr "Litujeme, musíte zadat jméno řečníka!"
5882
+
5883
+ #: app/features/speakers.php:364
5884
+ msgid ""
5885
+ "Note: You can use the speakers in your event edit/add page > hourly schedule "
5886
+ "section and speaker widget section!"
5887
+ msgstr ""
5888
+ "Poznámka: Řečníky můžete použít na vaší stránce úprav / přidání > sekce "
5889
+ "hodinového plánu a v sekci widgetu řečníka!"
5890
+
5891
+ #: app/libraries/book.php:60
5892
+ #, php-format
5893
+ msgid "%s Price"
5894
+ msgstr "%s Cena"
5895
+
5896
+ #: app/libraries/book.php:561
5897
+ msgid "Discount"
5898
+ msgstr "Sleva"
5899
+
5900
+ #: app/libraries/book.php:651 app/modules/booking/default.php:314
5901
+ #: app/modules/booking/default.php:412
5902
+ msgid "Download Invoice"
5903
+ msgstr "Stáhnout fakturu"
5904
+
5905
+ #: app/libraries/factory.php:156
5906
+ msgid "M.E. Calendar"
5907
+ msgstr "M.E. Kalendář"
5908
+
5909
+ #: app/libraries/factory.php:195
5910
+ msgctxt "plugin link"
5911
+ msgid "Upgrade to Pro