Modern Events Calendar Lite - Version 5.8.5

Version Description

21 July 2020 = - Added: Booking button to all skins and ability to open the booking button in modal window (pro) - Added: An ability to change subject and content of notifications per event (pro) - Added: %%book_datetime%% placeholder to show book date and time together (pro) - Improved: The %%book_date%% and %%book_time%% placeholders (pro) - Hide: Subtotal in WooCommerce checkout for orders created by MEC (pro) - Fixed Number of attendees in added bookings from backend (pro) - Fixed Showing times of same day events in some situations - Fixed Expired events and Show only one Ocuurrence option - Fixed Showing an invalid sold out label (pro) - Fixed SEO Schema

Download this release

Release Info

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

Code changes from version 5.8.0 to 5.8.5

Files changed (55) hide show
  1. app/features/events.php +12 -0
  2. app/features/mec.php +17 -0
  3. app/features/mec/dyncss.php +4 -4
  4. app/features/mec/meta_boxes/display_options.php +13 -0
  5. app/features/mec/modules.php +10 -0
  6. app/features/mec/notifications.php +11 -0
  7. app/features/notifications.php +163 -0
  8. app/features/schema.php +2 -2
  9. app/libraries/factory.php +4 -1
  10. app/libraries/main.php +52 -24
  11. app/libraries/notifications.php +127 -24
  12. app/libraries/skins.php +33 -7
  13. app/skins/agenda.php +3 -0
  14. app/skins/agenda/render.php +2 -0
  15. app/skins/available_spot/tpl.php +1 -0
  16. app/skins/carousel.php +3 -0
  17. app/skins/carousel/render.php +8 -5
  18. app/skins/countdown/tpl.php +3 -3
  19. app/skins/cover/tpl.php +3 -3
  20. app/skins/custom.php +3 -0
  21. app/skins/daily_view.php +3 -0
  22. app/skins/daily_view/render.php +2 -1
  23. app/skins/default_full_calendar.php +3 -0
  24. app/skins/full_calendar.php +3 -0
  25. app/skins/grid.php +3 -0
  26. app/skins/grid/render.php +12 -7
  27. app/skins/list.php +3 -0
  28. app/skins/list/render.php +10 -6
  29. app/skins/masonry.php +2 -0
  30. app/skins/masonry/render.php +2 -1
  31. app/skins/monthly_view.php +3 -0
  32. app/skins/monthly_view/calendar.php +3 -2
  33. app/skins/monthly_view/calendar_clean.php +2 -1
  34. app/skins/monthly_view/calendar_novel.php +1 -1
  35. app/skins/monthly_view/calendar_simple.php +2 -1
  36. app/skins/single/default.php +7 -0
  37. app/skins/single/m1.php +4 -0
  38. app/skins/single/m2.php +4 -0
  39. app/skins/single/modern.php +6 -1
  40. app/skins/slider/render.php +5 -5
  41. app/skins/tile.php +3 -0
  42. app/skins/tile/render.php +2 -1
  43. app/skins/timeline.php +3 -0
  44. app/skins/timeline/render.php +2 -1
  45. app/skins/timetable.php +3 -0
  46. app/skins/timetable/render.php +1 -0
  47. app/skins/weekly_view.php +3 -0
  48. app/skins/weekly_view/render.php +2 -1
  49. app/skins/yearly_view.php +3 -0
  50. app/skins/yearly_view/render.php +2 -1
  51. assets/css/frontend.css +360 -2
  52. assets/css/frontend.min.css +1 -1
  53. changelog.txt +13 -1
  54. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  55. languages/modern-events-calendar-lite-cs_CZ.po +1311 -1254
app/features/events.php CHANGED
@@ -349,6 +349,7 @@ class MEC_feature_events extends MEC_base
349
  __('Organizer', 'modern-events-calendar-lite') => 'mec-organizer',
350
  __('Cost', 'modern-events-calendar-lite') => 'mec-cost',
351
  __('SEO Schema / Event Status', 'modern-events-calendar-lite') => 'mec-schema',
 
352
  );
353
 
354
  $single_event_meta_title = apply_filters('mec-single-event-meta-title', $tabs, $activated);
@@ -367,6 +368,10 @@ class MEC_feature_events extends MEC_base
367
  {
368
  if(count($event_fields)) echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
369
  }
 
 
 
 
370
  else
371
  {
372
  echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
@@ -3271,6 +3276,13 @@ class MEC_feature_events extends MEC_base
3271
  update_post_meta($post_id, 'mec_dl_file', $dl_file);
3272
  }
3273
 
 
 
 
 
 
 
 
3274
  $mec_update = (isset($_REQUEST['original_publish']) and strtolower(trim($_REQUEST['original_publish'])) == 'publish') ? false : true;
3275
  do_action('mec_after_publish_admin_event', $post_id, $mec_update);
3276
  }
349
  __('Organizer', 'modern-events-calendar-lite') => 'mec-organizer',
350
  __('Cost', 'modern-events-calendar-lite') => 'mec-cost',
351
  __('SEO Schema / Event Status', 'modern-events-calendar-lite') => 'mec-schema',
352
+ __('Notifications', 'modern-events-calendar-lite') => 'mec-notifications',
353
  );
354
 
355
  $single_event_meta_title = apply_filters('mec-single-event-meta-title', $tabs, $activated);
368
  {
369
  if(count($event_fields)) echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
370
  }
371
+ elseif($link_address == 'mec-notifications')
372
+ {
373
+ if(isset($this->settings['notif_per_event']) and $this->settings['notif_per_event']) echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
374
+ }
375
  else
376
  {
377
  echo '<a class="mec-add-event-tabs-link" data-href="'.$link_address.'" href="#">'.$link_name.'</a>';
3276
  update_post_meta($post_id, 'mec_dl_file', $dl_file);
3277
  }
3278
 
3279
+ // Notifications
3280
+ if(isset($_mec['notifications']))
3281
+ {
3282
+ $notifications = (isset($_mec['notifications']) and is_array($_mec['notifications'])) ? $_mec['notifications'] : array();
3283
+ update_post_meta($post_id, 'mec_notifications', $notifications);
3284
+ }
3285
+
3286
  $mec_update = (isset($_REQUEST['original_publish']) and strtolower(trim($_REQUEST['original_publish'])) == 'publish') ? false : true;
3287
  do_action('mec_after_publish_admin_event', $post_id, $mec_update);
3288
  }
app/features/mec.php CHANGED
@@ -948,6 +948,7 @@ class MEC_feature_mec extends MEC_base
948
  * Single Event Display Method
949
  * @param string $skin
950
  * @param int $value
 
951
  * @return string
952
  */
953
  public function sed_method_field($skin, $value = 0, $image_popup = 0)
@@ -980,6 +981,22 @@ class MEC_feature_mec extends MEC_base
980
  </div>' . $image_popup_html;
981
  }
982
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
983
  /**
984
  * Disable Gutenberg Editor for MEC Post Types
985
  * @param boolean $status
948
  * Single Event Display Method
949
  * @param string $skin
950
  * @param int $value
951
+ * @param int $image_popup
952
  * @return string
953
  */
954
  public function sed_method_field($skin, $value = 0, $image_popup = 0)
981
  </div>' . $image_popup_html;
982
  }
983
 
984
+ public function booking_button_field($skin, $value = 0)
985
+ {
986
+ $booking_status = (!isset($this->settings['booking_status']) or (isset($this->settings['booking_status']) and !$this->settings['booking_status'])) ? false : true;
987
+ if(!$booking_status) return '';
988
+
989
+ return '<div class="mec-form-row mec-booking-button-wrap mec-switcher">
990
+ <div class="mec-col-4">
991
+ <label for="mec_skin_'.$skin.'_booking_button">'.__('Booking Button / Icon', 'modern-events-calendar-lite').'</label>
992
+ </div>
993
+ <div class="mec-col-4">
994
+ <input type="hidden" name="mec[sk-options]['.$skin.'][booking_button]" value="0" />
995
+ <input type="checkbox" name="mec[sk-options]['.$skin.'][booking_button]" id="mec_skin_'.$skin.'_booking_button" value="1" '.($value == '1' ? 'checked="checked"' : '').' /><label for="mec_skin_'.$skin.'_booking_button"></label>
996
+ </div>
997
+ </div>';
998
+ }
999
+
1000
  /**
1001
  * Disable Gutenberg Editor for MEC Post Types
1002
  * @param boolean $status
app/features/mec/dyncss.php CHANGED
@@ -139,19 +139,19 @@ if($mec_p_fontfamily_arr): ?>
139
  if($color && $color != '#40d9f1'): ?>
140
  /* == TextColors
141
  ---------------- */
142
- .mec-timeline-month-divider, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover,.mec-wrap.colorskin-custom .mec-next-event-details li i, .mec-next-event-details i:before, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-next-event-details a,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,.lity .mec-color,.lity .mec-color-before :before,.lity .mec-color-hover:hover,.lity .mec-wrap .mec-color,.lity .mec-wrap .mec-color-before :before,.lity .mec-wrap .mec-color-hover:hover,.leaflet-popup-content .mec-color,.leaflet-popup-content .mec-color-before :before,.leaflet-popup-content .mec-color-hover:hover,.leaflet-popup-content .mec-wrap .mec-color,.leaflet-popup-content .mec-wrap .mec-color-before :before,.leaflet-popup-content .mec-wrap .mec-color-hover:hover, .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active.mec-color, .mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail i,.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail:hover,.mec-map-boxshow .mec-color,.mec-map-boxshow .mec-color-before :before,.mec-map-boxshow .mec-color-hover:hover,.mec-map-boxshow .mec-wrap .mec-color,.mec-map-boxshow .mec-wrap .mec-color-before :before,.mec-map-boxshow .mec-wrap .mec-color-hover:hover
143
  {color: <?php echo $color; ?>}
144
 
145
  /* == Backgrounds
146
  ----------------- */
147
- .mec-wrap .mec-map-lightbox-wp.mec-event-list-classic .mec-event-date,.mec-wrap.colorskin-custom .mec-event-sharing .mec-event-share:hover .event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-grid-clean .mec-event-date,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing li:hover a i,.mec-wrap.colorskin-custom .mec-calendar:not(.mec-event-calendar-classic) .mec-selected-day,.mec-wrap.colorskin-custom .mec-calendar .mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-row dt.mec-has-event:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-has-event:after, .mec-wrap.colorskin-custom .mec-bg-color, .mec-wrap.colorskin-custom .mec-bg-color-hover:hover, .colorskin-custom .mec-event-sharing-wrap:hover > li, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .flip-clock-wrapper ul li a div div.inn,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel,.mec-event-countdown-style3 .mec-event-date,#wrap .mec-wrap article.mec-event-countdown-style1,.mec-event-countdown-style1 .mec-event-countdown-part3 a.mec-event-button,.mec-wrap .mec-event-countdown-style2,.mec-map-get-direction-btn-cnt input[type="submit"],.mec-booking button,span.mec-marker-wrap,.mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:before
148
  {background-color: <?php echo $color; ?>;}
149
 
150
 
151
 
152
  /* == BorderColors
153
  ------------------ */
154
- .mec-timeline-month-divider, .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover
155
  {border-color: <?php echo $color; ?>;}
156
  .mec-wrap.colorskin-custom .mec-event-countdown-style3 .mec-event-date:after,.mec-wrap.colorskin-custom .mec-month-divider span:before
157
  {border-bottom-color:<?php echo $color; ?>;}
@@ -165,7 +165,7 @@ if($color && $color != '#40d9f1'): ?>
165
 
166
  /* == Timeline View
167
  ------------------ */
168
- .mec-events-timeline-wrap:before, .mec-wrap.colorskin-custom .mec-timeline-event-local-time, .mec-wrap.colorskin-custom .mec-timeline-event-time ,.mec-wrap.colorskin-custom .mec-timeline-event-location { background: rgba(<?php echo $rgb_color['red']; ?>,<?php echo $rgb_color['green']; ?>,<?php echo $rgb_color['blue']; ?>,.11);}
169
  .mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:after { background: rgba(<?php echo $rgb_color['red']; ?>,<?php echo $rgb_color['green']; ?>,<?php echo $rgb_color['blue']; ?>,.3);}
170
  <?php endif;
171
 
139
  if($color && $color != '#40d9f1'): ?>
140
  /* == TextColors
141
  ---------------- */
142
+ .mec-event-grid-minimal .mec-modal-booking-button:hover, .mec-timeline-event .mec-modal-booking-button, .mec-timetable-t2-col .mec-modal-booking-button:hover, .mec-event-container-classic .mec-modal-booking-button:hover, .mec-calendar-events-side .mec-modal-booking-button:hover, .mec-event-grid-yearly .mec-modal-booking-button, .mec-events-agenda .mec-modal-booking-button, .mec-event-grid-simple .mec-modal-booking-button, .mec-event-list-minimal .mec-modal-booking-button:hover, .mec-timeline-month-divider, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover,.mec-wrap.colorskin-custom .mec-next-event-details li i, .mec-next-event-details i:before, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-next-event-details a,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,.lity .mec-color,.lity .mec-color-before :before,.lity .mec-color-hover:hover,.lity .mec-wrap .mec-color,.lity .mec-wrap .mec-color-before :before,.lity .mec-wrap .mec-color-hover:hover,.leaflet-popup-content .mec-color,.leaflet-popup-content .mec-color-before :before,.leaflet-popup-content .mec-color-hover:hover,.leaflet-popup-content .mec-wrap .mec-color,.leaflet-popup-content .mec-wrap .mec-color-before :before,.leaflet-popup-content .mec-wrap .mec-color-hover:hover, .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active.mec-color, .mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail i,.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail:hover,.mec-map-boxshow .mec-color,.mec-map-boxshow .mec-color-before :before,.mec-map-boxshow .mec-color-hover:hover,.mec-map-boxshow .mec-wrap .mec-color,.mec-map-boxshow .mec-wrap .mec-color-before :before,.mec-map-boxshow .mec-wrap .mec-color-hover:hover
143
  {color: <?php echo $color; ?>}
144
 
145
  /* == Backgrounds
146
  ----------------- */
147
+ .mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button:hover, .mec-wrap .mec-map-lightbox-wp.mec-event-list-classic .mec-event-date,.mec-wrap.colorskin-custom .mec-event-sharing .mec-event-share:hover .event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-grid-clean .mec-event-date,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing li:hover a i,.mec-wrap.colorskin-custom .mec-calendar:not(.mec-event-calendar-classic) .mec-selected-day,.mec-wrap.colorskin-custom .mec-calendar .mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-row dt.mec-has-event:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-has-event:after, .mec-wrap.colorskin-custom .mec-bg-color, .mec-wrap.colorskin-custom .mec-bg-color-hover:hover, .colorskin-custom .mec-event-sharing-wrap:hover > li, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .flip-clock-wrapper ul li a div div.inn,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel,.mec-event-countdown-style3 .mec-event-date,#wrap .mec-wrap article.mec-event-countdown-style1,.mec-event-countdown-style1 .mec-event-countdown-part3 a.mec-event-button,.mec-wrap .mec-event-countdown-style2,.mec-map-get-direction-btn-cnt input[type="submit"],.mec-booking button,span.mec-marker-wrap,.mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:before
148
  {background-color: <?php echo $color; ?>;}
149
 
150
 
151
 
152
  /* == BorderColors
153
  ------------------ */
154
+ .mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button:hover, .mec-timeline-month-divider, .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover
155
  {border-color: <?php echo $color; ?>;}
156
  .mec-wrap.colorskin-custom .mec-event-countdown-style3 .mec-event-date:after,.mec-wrap.colorskin-custom .mec-month-divider span:before
157
  {border-bottom-color:<?php echo $color; ?>;}
165
 
166
  /* == Timeline View
167
  ------------------ */
168
+ .mec-timeline-event .mec-modal-booking-button, .mec-events-timeline-wrap:before, .mec-wrap.colorskin-custom .mec-timeline-event-local-time, .mec-wrap.colorskin-custom .mec-timeline-event-time ,.mec-wrap.colorskin-custom .mec-timeline-event-location { background: rgba(<?php echo $rgb_color['red']; ?>,<?php echo $rgb_color['green']; ?>,<?php echo $rgb_color['blue']; ?>,.11);}
169
  .mec-wrap.colorskin-custom .mec-timeline-events-container .mec-timeline-event-date:after { background: rgba(<?php echo $rgb_color['red']; ?>,<?php echo $rgb_color['green']; ?>,<?php echo $rgb_color['blue']; ?>,.3);}
170
  <?php endif;
171
 
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -243,6 +243,7 @@ $events = $this->main->get_events();
243
  </div>
244
  </div>
245
  <!-- End Set Map Geolocation -->
 
246
  <div class="mec-sed-methode-container">
247
  <?php echo $this->sed_method_field('list', (isset($sk_options_list['sed_method']) ? $sk_options_list['sed_method'] : 0), (isset($sk_options_list['image_popup']) ? $sk_options_list['image_popup'] : 0)); ?>
248
  </div>
@@ -495,6 +496,7 @@ $events = $this->main->get_events();
495
  </div>
496
  </div>
497
  <!-- End Set Map Geolocation -->
 
498
  <?php echo $this->sed_method_field('grid', (isset($sk_options_grid['sed_method']) ? $sk_options_grid['sed_method'] : 0), (isset($sk_options_grid['image_popup']) ? $sk_options_grid['image_popup'] : 0)); ?>
499
  <?php do_action('mec_skin_options_grid_end', $sk_options_grid); ?>
500
  </div>
@@ -612,6 +614,7 @@ $events = $this->main->get_events();
612
  <label for="mec_skin_agenda_month_divider"></label>
613
  </div>
614
  </div>
 
615
  <?php echo $this->sed_method_field('agenda', (isset($sk_options_agenda['sed_method']) ? $sk_options_agenda['sed_method'] : 0), (isset($sk_options_agenda['image_popup']) ? $sk_options_agenda['image_popup'] : 0)); ?>
616
  <?php do_action('mec_skin_options_agenda_end', $sk_options_agenda); ?>
617
  </div>
@@ -803,6 +806,7 @@ $events = $this->main->get_events();
803
  </div>
804
  </div>
805
  <!-- End Display Reason for Cancellation -->
 
806
  <?php echo $this->sed_method_field('full_calendar', (isset($sk_options_full_calendar['sed_method']) ? $sk_options_full_calendar['sed_method'] : 0), (isset($sk_options_full_calendar['image_popup']) ? $sk_options_full_calendar['image_popup'] : 0)); ?>
807
  <?php do_action('mec_skin_options_full_calendar_end', $sk_options_full_calendar); ?>
808
  </div>
@@ -896,6 +900,7 @@ $events = $this->main->get_events();
896
  </div>
897
  <!-- End Display Reason for Cancellation -->
898
  <p class="description"><?php _e('For showing next/previous year navigation.', 'modern-events-calendar-lite'); ?></p>
 
899
  <?php echo $this->sed_method_field('yearly_view', (isset($sk_options_yearly_view['sed_method']) ? $sk_options_yearly_view['sed_method'] : 0), (isset($sk_options_yearly_view['image_popup']) ? $sk_options_yearly_view['image_popup'] : 0)); ?>
900
  <?php do_action('mec_skin_options_yearly_view_end', $sk_options_yearly_view); ?>
901
  </div>
@@ -986,6 +991,7 @@ $events = $this->main->get_events();
986
  </div>
987
  </div> -->
988
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
 
989
  <?php echo $this->sed_method_field('monthly_view', (isset($sk_options_monthly_view['sed_method']) ? $sk_options_monthly_view['sed_method'] : 0), (isset($sk_options_monthly_view['image_popup']) ? $sk_options_monthly_view['image_popup'] : 0)); ?>
990
  <?php do_action('mec_skin_options_monthly_view_end', $sk_options_monthly_view); ?>
991
  </div>
@@ -1108,6 +1114,7 @@ $events = $this->main->get_events();
1108
  </div>
1109
  <!-- End Display Reason for Cancellation -->
1110
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
 
1111
  <?php echo $this->sed_method_field('daily_view', (isset($sk_options_daily_view['sed_method']) ? $sk_options_daily_view['sed_method'] : 0), (isset($sk_options_daily_view['image_popup']) ? $sk_options_daily_view['image_popup'] : 0)); ?>
1112
  <?php do_action('mec_skin_options_daily_view_end', $sk_options_daily_view); ?>
1113
  </div>
@@ -1180,6 +1187,7 @@ $events = $this->main->get_events();
1180
  </div>
1181
  </div>
1182
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
 
1183
  <?php echo $this->sed_method_field('weekly_view', (isset($sk_options_weekly_view['sed_method']) ? $sk_options_weekly_view['sed_method'] : 0), (isset($sk_options_weekly_view['image_popup']) ? $sk_options_weekly_view['image_popup'] : 0)); ?>
1184
  <?php do_action('mec_skin_options_weekly_view_end', $sk_options_weekly_view); ?>
1185
  </div>
@@ -1324,6 +1332,7 @@ $events = $this->main->get_events();
1324
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
1325
  </div>
1326
  <div class="mec-timetable-sed-methode-container">
 
1327
  <?php echo $this->sed_method_field('timetable', (isset($sk_options_timetable['sed_method']) ? $sk_options_timetable['sed_method'] : 0), (isset($sk_options_timetable['image_popup']) ? $sk_options_timetable['image_popup'] : 0)); ?>
1328
  </div>
1329
  <?php do_action('mec_skin_options_timetable_end', $sk_options_timetable); ?>
@@ -1457,6 +1466,7 @@ $events = $this->main->get_events();
1457
  <label for="mec_skin_masonry_load_more_button"></label>
1458
  </div>
1459
  </div>
 
1460
  <?php echo $this->sed_method_field('masonry', (isset($sk_options_masonry['sed_method']) ? $sk_options_masonry['sed_method'] : 0), (isset($sk_options_masonry['image_popup']) ? $sk_options_masonry['image_popup'] : 0)); ?>
1461
  <?php do_action('mec_skin_options_masonry_end', $sk_options_masonry); ?>
1462
  </div>
@@ -1802,6 +1812,7 @@ $events = $this->main->get_events();
1802
  <label class="mec-col-4" for="mec_skin_carousel_autoplay"><?php _e('Auto Play Time', 'modern-events-calendar-lite'); ?></label>
1803
  <input class="mec-col-4" type="number" name="mec[sk-options][carousel][autoplay]" id="mec_skin_carousel_autoplay" placeholder="<?php _e('eg. 3000 default is 3 second', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_carousel['autoplay']) && $sk_options_carousel['autoplay'] != '' ) echo $sk_options_carousel['autoplay']; ?>" />
1804
  </div>
 
1805
  <div class="mec-sed-methode-container">
1806
  <?php echo $this->sed_method_field('carousel', (isset($sk_options_carousel['sed_method']) ? $sk_options_carousel['sed_method'] : 0), (isset($sk_options_carousel['image_popup']) ? $sk_options_carousel['image_popup'] : 0)); ?>
1807
  </div>
@@ -2092,6 +2103,7 @@ $events = $this->main->get_events();
2092
  <label for="mec_skin_timeline_month_divider"></label>
2093
  </div>
2094
  </div>
 
2095
  <?php echo $this->sed_method_field('timeline', (isset($sk_options_timeline['sed_method']) ? $sk_options_timeline['sed_method'] : 0), (isset($sk_options_timeline['image_popup']) ? $sk_options_timeline['image_popup'] : 0)); ?>
2096
  </div>
2097
 
@@ -2181,6 +2193,7 @@ $events = $this->main->get_events();
2181
  </div>
2182
  </div>
2183
  </div>
 
2184
  <?php echo $this->sed_method_field('tile', (isset($sk_options_tile['sed_method']) ? $sk_options_tile['sed_method'] : 0), (isset($sk_options_tile['image_popup']) ? $sk_options_tile['image_popup'] : 0)); ?>
2185
  </div>
2186
 
243
  </div>
244
  </div>
245
  <!-- End Set Map Geolocation -->
246
+ <?php echo $this->booking_button_field('list', (isset($sk_options_list['booking_button']) ? $sk_options_list['booking_button'] : 0)); ?>
247
  <div class="mec-sed-methode-container">
248
  <?php echo $this->sed_method_field('list', (isset($sk_options_list['sed_method']) ? $sk_options_list['sed_method'] : 0), (isset($sk_options_list['image_popup']) ? $sk_options_list['image_popup'] : 0)); ?>
249
  </div>
496
  </div>
497
  </div>
498
  <!-- End Set Map Geolocation -->
499
+ <?php echo $this->booking_button_field('grid', (isset($sk_options_grid['booking_button']) ? $sk_options_grid['booking_button'] : 0)); ?>
500
  <?php echo $this->sed_method_field('grid', (isset($sk_options_grid['sed_method']) ? $sk_options_grid['sed_method'] : 0), (isset($sk_options_grid['image_popup']) ? $sk_options_grid['image_popup'] : 0)); ?>
501
  <?php do_action('mec_skin_options_grid_end', $sk_options_grid); ?>
502
  </div>
614
  <label for="mec_skin_agenda_month_divider"></label>
615
  </div>
616
  </div>
617
+ <?php echo $this->booking_button_field('agenda', (isset($sk_options_agenda['booking_button']) ? $sk_options_agenda['booking_button'] : 0)); ?>
618
  <?php echo $this->sed_method_field('agenda', (isset($sk_options_agenda['sed_method']) ? $sk_options_agenda['sed_method'] : 0), (isset($sk_options_agenda['image_popup']) ? $sk_options_agenda['image_popup'] : 0)); ?>
619
  <?php do_action('mec_skin_options_agenda_end', $sk_options_agenda); ?>
620
  </div>
806
  </div>
807
  </div>
808
  <!-- End Display Reason for Cancellation -->
809
+ <?php echo $this->booking_button_field('full_calendar', (isset($sk_options_full_calendar['booking_button']) ? $sk_options_full_calendar['booking_button'] : 0)); ?>
810
  <?php echo $this->sed_method_field('full_calendar', (isset($sk_options_full_calendar['sed_method']) ? $sk_options_full_calendar['sed_method'] : 0), (isset($sk_options_full_calendar['image_popup']) ? $sk_options_full_calendar['image_popup'] : 0)); ?>
811
  <?php do_action('mec_skin_options_full_calendar_end', $sk_options_full_calendar); ?>
812
  </div>
900
  </div>
901
  <!-- End Display Reason for Cancellation -->
902
  <p class="description"><?php _e('For showing next/previous year navigation.', 'modern-events-calendar-lite'); ?></p>
903
+ <?php echo $this->booking_button_field('yearly_view', (isset($sk_options_yearly_view['booking_button']) ? $sk_options_yearly_view['booking_button'] : 0)); ?>
904
  <?php echo $this->sed_method_field('yearly_view', (isset($sk_options_yearly_view['sed_method']) ? $sk_options_yearly_view['sed_method'] : 0), (isset($sk_options_yearly_view['image_popup']) ? $sk_options_yearly_view['image_popup'] : 0)); ?>
905
  <?php do_action('mec_skin_options_yearly_view_end', $sk_options_yearly_view); ?>
906
  </div>
991
  </div>
992
  </div> -->
993
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
994
+ <?php echo $this->booking_button_field('monthly_view', (isset($sk_options_monthly_view['booking_button']) ? $sk_options_monthly_view['booking_button'] : 0)); ?>
995
  <?php echo $this->sed_method_field('monthly_view', (isset($sk_options_monthly_view['sed_method']) ? $sk_options_monthly_view['sed_method'] : 0), (isset($sk_options_monthly_view['image_popup']) ? $sk_options_monthly_view['image_popup'] : 0)); ?>
996
  <?php do_action('mec_skin_options_monthly_view_end', $sk_options_monthly_view); ?>
997
  </div>
1114
  </div>
1115
  <!-- End Display Reason for Cancellation -->
1116
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
1117
+ <?php echo $this->booking_button_field('daily_view', (isset($sk_options_daily_view['booking_button']) ? $sk_options_daily_view['booking_button'] : 0)); ?>
1118
  <?php echo $this->sed_method_field('daily_view', (isset($sk_options_daily_view['sed_method']) ? $sk_options_daily_view['sed_method'] : 0), (isset($sk_options_daily_view['image_popup']) ? $sk_options_daily_view['image_popup'] : 0)); ?>
1119
  <?php do_action('mec_skin_options_daily_view_end', $sk_options_daily_view); ?>
1120
  </div>
1187
  </div>
1188
  </div>
1189
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
1190
+ <?php echo $this->booking_button_field('weekly_view', (isset($sk_options_weekly_view['booking_button']) ? $sk_options_weekly_view['booking_button'] : 0)); ?>
1191
  <?php echo $this->sed_method_field('weekly_view', (isset($sk_options_weekly_view['sed_method']) ? $sk_options_weekly_view['sed_method'] : 0), (isset($sk_options_weekly_view['image_popup']) ? $sk_options_weekly_view['image_popup'] : 0)); ?>
1192
  <?php do_action('mec_skin_options_weekly_view_end', $sk_options_weekly_view); ?>
1193
  </div>
1332
  <p class="description"><?php _e('For showing next/previous month navigation.', 'modern-events-calendar-lite'); ?></p>
1333
  </div>
1334
  <div class="mec-timetable-sed-methode-container">
1335
+ <?php echo $this->booking_button_field('timetable', (isset($sk_options_timetable['booking_button']) ? $sk_options_timetable['booking_button'] : 0)); ?>
1336
  <?php echo $this->sed_method_field('timetable', (isset($sk_options_timetable['sed_method']) ? $sk_options_timetable['sed_method'] : 0), (isset($sk_options_timetable['image_popup']) ? $sk_options_timetable['image_popup'] : 0)); ?>
1337
  </div>
1338
  <?php do_action('mec_skin_options_timetable_end', $sk_options_timetable); ?>
1466
  <label for="mec_skin_masonry_load_more_button"></label>
1467
  </div>
1468
  </div>
1469
+ <?php echo $this->booking_button_field('masonry', (isset($sk_options_masonry['booking_button']) ? $sk_options_masonry['booking_button'] : 0)); ?>
1470
  <?php echo $this->sed_method_field('masonry', (isset($sk_options_masonry['sed_method']) ? $sk_options_masonry['sed_method'] : 0), (isset($sk_options_masonry['image_popup']) ? $sk_options_masonry['image_popup'] : 0)); ?>
1471
  <?php do_action('mec_skin_options_masonry_end', $sk_options_masonry); ?>
1472
  </div>
1812
  <label class="mec-col-4" for="mec_skin_carousel_autoplay"><?php _e('Auto Play Time', 'modern-events-calendar-lite'); ?></label>
1813
  <input class="mec-col-4" type="number" name="mec[sk-options][carousel][autoplay]" id="mec_skin_carousel_autoplay" placeholder="<?php _e('eg. 3000 default is 3 second', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_carousel['autoplay']) && $sk_options_carousel['autoplay'] != '' ) echo $sk_options_carousel['autoplay']; ?>" />
1814
  </div>
1815
+ <?php echo $this->booking_button_field('carousel', (isset($sk_options_carousel['booking_button']) ? $sk_options_carousel['booking_button'] : 0)); ?>
1816
  <div class="mec-sed-methode-container">
1817
  <?php echo $this->sed_method_field('carousel', (isset($sk_options_carousel['sed_method']) ? $sk_options_carousel['sed_method'] : 0), (isset($sk_options_carousel['image_popup']) ? $sk_options_carousel['image_popup'] : 0)); ?>
1818
  </div>
2103
  <label for="mec_skin_timeline_month_divider"></label>
2104
  </div>
2105
  </div>
2106
+ <?php echo $this->booking_button_field('timeline', (isset($sk_options_timeline['booking_button']) ? $sk_options_timeline['booking_button'] : 0)); ?>
2107
  <?php echo $this->sed_method_field('timeline', (isset($sk_options_timeline['sed_method']) ? $sk_options_timeline['sed_method'] : 0), (isset($sk_options_timeline['image_popup']) ? $sk_options_timeline['image_popup'] : 0)); ?>
2108
  </div>
2109
 
2193
  </div>
2194
  </div>
2195
  </div>
2196
+ <?php echo $this->booking_button_field('tile', (isset($sk_options_tile['booking_button']) ? $sk_options_tile['booking_button'] : 0)); ?>
2197
  <?php echo $this->sed_method_field('tile', (isset($sk_options_tile['sed_method']) ? $sk_options_tile['sed_method'] : 0), (isset($sk_options_tile['image_popup']) ? $sk_options_tile['image_popup'] : 0)); ?>
2198
  </div>
2199
 
app/features/mec/modules.php CHANGED
@@ -361,6 +361,16 @@ if($this->getPRO())
361
  </div>
362
  </div>
363
 
 
 
 
 
 
 
 
 
 
 
364
  <?php endif; ?>
365
 
366
  <div class="mec-options-fields">
361
  </div>
362
  </div>
363
 
364
+ <div id="notifications_per_event" class="mec-options-fields">
365
+ <h4 class="mec-form-subtitle"><?php _e('Notifications Per Event', 'modern-events-calendar-lite'); ?></h4>
366
+ <div class="mec-form-row">
367
+ <label>
368
+ <input type="hidden" name="mec[settings][notif_per_event]" value="0" />
369
+ <input value="1" type="checkbox" name="mec[settings][notif_per_event]" <?php if(isset($settings['notif_per_event']) and $settings['notif_per_event']) echo 'checked="checked"'; ?> /> <?php _e('Edit Notifications Per Event', 'modern-events-calendar-lite'); ?>
370
+ </label>
371
+ </div>
372
+ </div>
373
+
374
  <?php endif; ?>
375
 
376
  <div class="mec-options-fields">
app/features/mec/notifications.php CHANGED
@@ -104,6 +104,7 @@ $notifications = $this->main->get_notifications();
104
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
105
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
106
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
 
107
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
108
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
109
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -135,6 +136,7 @@ $notifications = $this->main->get_notifications();
135
  <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
136
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
137
  <li><span>%%google_calendar_link%%</span>: <?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></li>
 
138
  </ul>
139
  </div>
140
  </div>
@@ -204,6 +206,7 @@ $notifications = $this->main->get_notifications();
204
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
205
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
206
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
 
207
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
208
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
209
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -235,6 +238,7 @@ $notifications = $this->main->get_notifications();
235
  <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
236
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
237
  <li><span>%%google_calendar_link%%</span>: <?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></li>
 
238
  </ul>
239
 
240
  </div>
@@ -316,6 +320,7 @@ $notifications = $this->main->get_notifications();
316
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
317
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
318
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
 
319
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
320
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
321
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -348,6 +353,7 @@ $notifications = $this->main->get_notifications();
348
  <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
349
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
350
  <li><span>%%google_calendar_link%%</span>: <?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></li>
 
351
  </ul>
352
 
353
  </div>
@@ -437,6 +443,7 @@ $notifications = $this->main->get_notifications();
437
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
438
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
439
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
 
440
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
441
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
442
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -544,6 +551,7 @@ $notifications = $this->main->get_notifications();
544
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
545
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
546
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
 
547
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
548
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
549
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -661,6 +669,7 @@ $notifications = $this->main->get_notifications();
661
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
662
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
663
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
 
664
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
665
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
666
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
@@ -780,6 +789,7 @@ $notifications = $this->main->get_notifications();
780
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
781
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
782
  <li><span>%%admin_link%%</span>: <?php _e('Admin events management link.', 'modern-events-calendar-lite'); ?></li>
 
783
  </ul>
784
  </div>
785
 
@@ -863,6 +873,7 @@ $notifications = $this->main->get_notifications();
863
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
864
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
865
  <li><span>%%admin_link%%</span>: <?php _e('Admin events management link.', 'modern-events-calendar-lite'); ?></li>
 
866
  </ul>
867
  </div>
868
 
104
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
105
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
106
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
107
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
108
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
109
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
110
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
136
  <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
137
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
138
  <li><span>%%google_calendar_link%%</span>: <?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></li>
139
+ <?php do_action('mec_extra_field_notifications'); ?>
140
  </ul>
141
  </div>
142
  </div>
206
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
207
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
208
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
209
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
210
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
211
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
212
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
238
  <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
239
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
240
  <li><span>%%google_calendar_link%%</span>: <?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></li>
241
+ <?php do_action('mec_extra_field_notifications'); ?>
242
  </ul>
243
 
244
  </div>
320
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
321
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
322
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
323
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
324
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
325
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
326
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
353
  <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
354
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
355
  <li><span>%%google_calendar_link%%</span>: <?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></li>
356
+ <?php do_action('mec_extra_field_notifications'); ?>
357
  </ul>
358
 
359
  </div>
443
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
444
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
445
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
446
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
447
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
448
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
449
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
551
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
552
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
553
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
554
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
555
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
556
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
557
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
669
  <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
670
  <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
671
  <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
672
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
673
  <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
674
  <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
675
  <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
789
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
790
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
791
  <li><span>%%admin_link%%</span>: <?php _e('Admin events management link.', 'modern-events-calendar-lite'); ?></li>
792
+ <?php do_action('mec_extra_field_notifications'); ?>
793
  </ul>
794
  </div>
795
 
873
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
874
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
875
  <li><span>%%admin_link%%</span>: <?php _e('Admin events management link.', 'modern-events-calendar-lite'); ?></li>
876
+ <?php do_action('mec_extra_field_notifications'); ?>
877
  </ul>
878
  </div>
879
 
app/features/notifications.php ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * Webnus MEC Notifications Per Event class.
7
+ * @author Webnus <info@webnus.biz>
8
+ */
9
+ class MEC_feature_notifications extends MEC_base
10
+ {
11
+ public $factory;
12
+ public $main;
13
+ public $settings;
14
+ public $notif_settings;
15
+
16
+ /**
17
+ * Constructor method
18
+ * @author Webnus <info@webnus.biz>
19
+ */
20
+ public function __construct()
21
+ {
22
+ // Import MEC Factory
23
+ $this->factory = $this->getFactory();
24
+
25
+ // Import MEC Main
26
+ $this->main = $this->getMain();
27
+
28
+ // MEC Settings
29
+ $this->settings = $this->main->get_settings();
30
+
31
+ // MEC Notification Settings
32
+ $this->notif_settings = $this->main->get_notifications();
33
+ }
34
+
35
+ /**
36
+ * Initialize notifications feature
37
+ * @author Webnus <info@webnus.biz>
38
+ */
39
+ public function init()
40
+ {
41
+ // Module is disabled
42
+ if(!isset($this->settings['notif_per_event']) or (isset($this->settings['notif_per_event']) and !$this->settings['notif_per_event'])) return;
43
+
44
+ $this->factory->action('mec_metabox_details', array($this, 'meta_box_notifications'), 30);
45
+ }
46
+
47
+ /**
48
+ * Show notification meta box
49
+ * @author Webnus <info@webnus.biz>
50
+ * @param object $post
51
+ */
52
+ public function meta_box_notifications($post)
53
+ {
54
+ $values = get_post_meta($post->ID, 'mec_notifications', true);
55
+ if(!is_array($values)) $values = array();
56
+
57
+ $notifications = $this->get_notifications();
58
+ ?>
59
+ <div class="mec-meta-box-fields mec-event-tab-content" id="mec-notifications">
60
+ <?php foreach($notifications as $key => $notification): if(isset($this->notif_settings[$key]) and isset($this->notif_settings[$key]['status']) and !$this->notif_settings[$key]['status']) continue; ?>
61
+ <div class="mec-form-row">
62
+ <h4><?php echo $notification['label']; ?></h4>
63
+ <div class="mec-form-row">
64
+ <label>
65
+ <input type="hidden" name="mec[notifications][<?php echo $key; ?>][status]" value="0" />
66
+ <input onchange="jQuery('#mec_notification_<?php echo $key; ?>_container_toggle').toggle();" value="1" type="checkbox" name="mec[notifications][<?php echo $key; ?>][status]" <?php if(isset($values[$key]) and isset($values[$key]['status']) and $values[$key]['status']) echo 'checked="checked"'; ?> /> <?php echo __("Modify", 'modern-events-calendar-lite'); ?>
67
+ </label>
68
+ </div>
69
+ <div id="mec_notification_<?php echo $key; ?>_container_toggle" class="<?php if(!isset($values[$key]) or (isset($values[$key]) and !$values[$key]['status'])) echo 'mec-util-hidden'; ?>">
70
+ <div class="mec-form-row">
71
+ <div class="mec-col-2">
72
+ <label for="mec_notifications_<?php echo $key; ?>_subject"><?php esc_html_e('Email Subject', 'modern-events-calendar-lite'); ?></label>
73
+ </div>
74
+ <div class="mec-col-10">
75
+ <input id="mec_notifications_<?php echo $key; ?>_subject" type="text" name="mec[notifications][<?php echo $key; ?>][subject]" value="<?php echo ((isset($values[$key]) and isset($values[$key]['subject']) and trim($values[$key]['subject'])) ? $values[$key]['subject'] : ((isset($this->notif_settings[$key]) and isset($this->notif_settings[$key]['subject']) and trim($this->notif_settings[$key]['subject'])) ? $this->notif_settings[$key]['subject'] : '')); ?>">
76
+ </div>
77
+ </div>
78
+ <div class="mec-form-row">
79
+ <div class="mec-col-2">
80
+ <label for="mec_notifications_<?php echo $key; ?>_content"><?php esc_html_e('Email Content', 'modern-events-calendar-lite'); ?></label>
81
+ </div>
82
+ <div class="mec-col-10">
83
+ <?php wp_editor(((isset($values[$key]) and isset($values[$key]['content']) and trim($values[$key]['content'])) ? $values[$key]['content'] : ((isset($this->notif_settings[$key]) and isset($this->notif_settings[$key]['content']) and trim($this->notif_settings[$key]['content'])) ? $this->notif_settings[$key]['content'] : '')), 'mec_notifications_'.$key.'_content', array('textarea_name'=>'mec[notifications]['.$key.'][content]')); ?>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ <?php endforeach; ?>
89
+ <h4><?php echo __('Placeholders', 'modern-events-calendar-lite'); ?></h4>
90
+ <ul>
91
+ <li><span>%%first_name%%</span>: <?php _e('First name of attendee', 'modern-events-calendar-lite'); ?></li>
92
+ <li><span>%%last_name%%</span>: <?php _e('Last name of attendee', 'modern-events-calendar-lite'); ?></li>
93
+ <li><span>%%user_email%%</span>: <?php _e('Email of attendee', 'modern-events-calendar-lite'); ?></li>
94
+ <li><span>%%book_date%%</span>: <?php _e('Booked date of event', 'modern-events-calendar-lite'); ?></li>
95
+ <li><span>%%book_time%%</span>: <?php _e('Booked time of event', 'modern-events-calendar-lite'); ?></li>
96
+ <li><span>%%book_datetime%%</span>: <?php _e('Booked date and time of event', 'modern-events-calendar-lite'); ?></li>
97
+ <li><span>%%book_price%%</span>: <?php _e('Booking Price', 'modern-events-calendar-lite'); ?></li>
98
+ <li><span>%%book_order_time%%</span>: <?php _e('Date and time of booking', 'modern-events-calendar-lite'); ?></li>
99
+ <li><span>%%blog_name%%</span>: <?php _e('Your website title', 'modern-events-calendar-lite'); ?></li>
100
+ <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
101
+ <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
102
+ <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
103
+ <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
104
+ <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
105
+ <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
106
+ <li><span>%%event_organizer_tel%%</span>: <?php _e('Organizer tel of booked event', 'modern-events-calendar-lite'); ?></li>
107
+ <li><span>%%event_organizer_email%%</span>: <?php _e('Organizer email of booked event', 'modern-events-calendar-lite'); ?></li>
108
+ <li><span>%%event_location_name%%</span>: <?php _e('Location name of booked event', 'modern-events-calendar-lite'); ?></li>
109
+ <li><span>%%event_location_address%%</span>: <?php _e('Location address of booked event', 'modern-events-calendar-lite'); ?></li>
110
+ <li><span>%%event_other_locations_name%%</span>: <?php _e('Additional locations name of booked event', 'modern-events-calendar-lite'); ?></li>
111
+ <li><span>%%event_other_locations_address%%</span>: <?php _e('Additional locations address of booked event', 'modern-events-calendar-lite'); ?></li>
112
+ <li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
113
+ <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
114
+ <li><span>%%booking_id%%</span>: <?php _e('Booking ID', 'modern-events-calendar-lite'); ?></li>
115
+ <li><span>%%booking_transaction_id%%</span>: <?php _e('Transaction ID of Booking', 'modern-events-calendar-lite'); ?></li>
116
+ <li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
117
+ <li><span>%%total_attendees%%</span>: <?php _e('Total attendees of current booking', 'modern-events-calendar-lite'); ?></li>
118
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets (Total attendees of all bookings)', 'modern-events-calendar-lite'); ?></li>
119
+ <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
120
+ <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
121
+ <li><span>%%ticket_name_time%%</span>: <?php _e('Ticket name & time', 'modern-events-calendar-lite'); ?></li>
122
+ <li><span>%%payment_gateway%%</span>: <?php _e('Payment Gateway', 'modern-events-calendar-lite'); ?></li>
123
+ <li><span>%%dl_file%%</span>: <?php _e('Link to the downloadable file', 'modern-events-calendar-lite'); ?></li>
124
+ <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
125
+ <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
126
+ <li><span>%%event_status%%</span>: <?php _e('Status of event', 'modern-events-calendar-lite'); ?></li>
127
+ <li><span>%%event_note%%</span>: <?php _e('Event Note', 'modern-events-calendar-lite'); ?></li>
128
+ <?php do_action('mec_extra_field_notifications'); ?>
129
+ </ul>
130
+ </div>
131
+ <?php
132
+ }
133
+
134
+ public function get_notifications()
135
+ {
136
+ return array(
137
+ 'email_verification' => array(
138
+ 'label' => __('Email Verification', 'modern-events-calendar-lite')
139
+ ),
140
+ 'booking_notification' => array(
141
+ 'label' => __('Booking Notification', 'modern-events-calendar-lite')
142
+ ),
143
+ 'booking_confirmation' => array(
144
+ 'label' => __('Booking Confirmation', 'modern-events-calendar-lite')
145
+ ),
146
+ 'cancellation_notification' => array(
147
+ 'label' => __('Booking Cancellation', 'modern-events-calendar-lite')
148
+ ),
149
+ 'admin_notification' => array(
150
+ 'label' => __('Admin Notification', 'modern-events-calendar-lite')
151
+ ),
152
+ 'booking_reminder' => array(
153
+ 'label' => __('Booking Reminder', 'modern-events-calendar-lite')
154
+ ),
155
+ // 'new_event' => array(
156
+ // 'label' => __('New Event', 'modern-events-calendar-lite')
157
+ // ),
158
+ // 'user_event_publishing' => array(
159
+ // 'label' => __('User Event Publishing', 'modern-events-calendar-lite')
160
+ // ),
161
+ );
162
+ }
163
+ }
app/features/schema.php CHANGED
@@ -219,8 +219,8 @@ class MEC_feature_schema extends MEC_base
219
  "@context": "http://schema.org",
220
  "@type": "Event",
221
  "eventStatus": "https://schema.org/<?php echo $event_status; ?>",
222
- "startDate": "<?php echo !empty($event->data->meta['mec_date']['start']['date']) ? $event->data->meta['mec_date']['start']['date'] : ''; ?>",
223
- "endDate": "<?php echo !empty($event->data->meta['mec_date']['end']['date']) ? $event->data->meta['mec_date']['end']['date'] : ''; ?>",
224
  "location":
225
  {
226
  "@type": "<?php echo (($event_status === 'EventMovedOnline') ? 'VirtualLocation' : 'Place'); ?>",
219
  "@context": "http://schema.org",
220
  "@type": "Event",
221
  "eventStatus": "https://schema.org/<?php echo $event_status; ?>",
222
+ "startDate": "<?php echo $event->date['start']['date']; ?>",
223
+ "endDate": "<?php echo $event->date['start']['date']; ?>",
224
  "location":
225
  {
226
  "@type": "<?php echo (($event_status === 'EventMovedOnline') ? 'VirtualLocation' : 'Place'); ?>",
app/libraries/factory.php CHANGED
@@ -80,6 +80,9 @@ class MEC_factory extends MEC_base
80
 
81
  // MEC Print Feature
82
  $this->action('init', array($this->main, 'print_calendar'), 9999);
 
 
 
83
 
84
  // Redirect to MEC Dashboard
85
  $this->action('admin_init', array($this->main, 'mec_redirect_after_activate'));
@@ -915,7 +918,7 @@ class MEC_factory extends MEC_base
915
  foreach($calendars as $calendar)
916
  {
917
  // Calendar exists
918
- if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
919
 
920
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
921
  $post_id = wp_insert_post($post);
80
 
81
  // MEC Print Feature
82
  $this->action('init', array($this->main, 'print_calendar'), 9999);
83
+
84
+ // MEC Print Feature
85
+ $this->action('wp', array($this->main, 'booking_modal'), 9999);
86
 
87
  // Redirect to MEC Dashboard
88
  $this->action('admin_init', array($this->main, 'mec_redirect_after_activate'));
918
  foreach($calendars as $calendar)
919
  {
920
  // Calendar exists
921
+ if(post_exists($calendar['title'], 'MEC')) continue;
922
 
923
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
924
  $post_id = wp_insert_post($post);
app/libraries/main.php CHANGED
@@ -592,6 +592,8 @@ class MEC_main extends MEC_base
592
  __('Booking Reminder', 'modern-events-calendar-lite') => 'booking_reminder',
593
  __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
594
  ), $notifications_items);
 
 
595
  }
596
 
597
  $notifications = apply_filters('mec-settings-item-notifications', $notifications_items, $active_menu);
@@ -672,7 +674,7 @@ class MEC_main extends MEC_base
672
  <ul class="<?php echo $active_menu == 'booking' ? 'subsection' : 'mec-settings-submenu'; ?>">
673
 
674
  <?php foreach ($booking as $booking_name => $booking_link) : ?>
675
- <?php if ( $booking_link == 'coupon_option' || $booking_link == 'taxes_option' || $booking_link == 'ticket_variations_option' || $booking_link == 'booking_form_option' || $booking_link == 'payment_gateways_option' ): ?>
676
  <?php if ( isset($options['booking_status']) and $options['booking_status'] ) : ?>
677
  <li>
678
  <a
@@ -2640,6 +2642,38 @@ class MEC_main extends MEC_base
2640
  }
2641
  }
2642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2643
  /**
2644
  * Generates ical output
2645
  * @author Webnus <info@webnus.biz>
@@ -3741,7 +3775,7 @@ class MEC_main extends MEC_base
3741
  if(!isset($settings['booking_status']) or (isset($settings['booking_status']) and !$settings['booking_status'])) return false;
3742
 
3743
  $tickets = isset($event->data->tickets) ? $event->data->tickets : array();
3744
- $dates = isset($event->dates) ? $event->dates : array();
3745
  $next_date = isset($dates[0]) ? $dates[0] : (isset($event->date) ? $event->date : array());
3746
 
3747
  // No Dates or no Tickets
@@ -3796,7 +3830,9 @@ class MEC_main extends MEC_base
3796
 
3797
  if(!trim($event->data->meta['mec_repeat_status']))
3798
  {
3799
- $render_date .= ' ' . sprintf('%02d', $next_date['start']['hour']) . ':' . sprintf('%02d', $next_date['start']['minutes']) . trim($next_date['start']['ampm']);
 
 
3800
  $time_format .= ' h:ia';
3801
  }
3802
 
@@ -5760,30 +5796,22 @@ class MEC_main extends MEC_base
5760
 
5761
  // No Tickets
5762
  if(!count($tickets)) return false;
5763
-
5764
- $bookings = $this->get_bookings($event->data->ID, $timestamp);
5765
-
5766
- // No Bookings
5767
- if(!count($bookings)) return false;
5768
-
5769
- $available_spots = '0';
5770
- foreach($tickets as $ticket)
5771
  {
5772
- if((isset($ticket['unlimited']) and $ticket['unlimited']) or !trim($ticket['limit']))
 
5773
  {
5774
- $available_spots = '-1';
5775
- break;
5776
  }
5777
-
5778
- $available_spots += $ticket['limit'];
 
5779
  }
5780
 
5781
- // There are unlimitted spots
5782
- if($available_spots == '-1') return false;
5783
-
5784
- // Bookings are higher than available spots so event is sold
5785
- if(count($bookings) >= $available_spots) return true;
5786
-
5787
  return false;
5788
  }
5789
 
@@ -6660,7 +6688,7 @@ class MEC_main extends MEC_base
6660
  public function get_start_of_multiple_days($event_id, $date)
6661
  {
6662
  $db = $this->getDB();
6663
- return $db->select("SELECT `dstart` FROM `#__mec_dates` WHERE `post_id`='".$event_id."' AND ((`dstart`='".$date."') OR (`dstart`<'".$date."' AND `dend`>='".$date."')) ORDER BY `dstart` ASC LIMIT 1", 'loadResult');
6664
  }
6665
 
6666
  public function get_start_time_of_multiple_days($event_id, $time)
@@ -6668,7 +6696,7 @@ class MEC_main extends MEC_base
6668
  if(!trim($time)) return NULL;
6669
 
6670
  $db = $this->getDB();
6671
- return $db->select("SELECT `tstart` FROM `#__mec_dates` WHERE `post_id`='".$event_id."' AND ((`tstart`='".$time."') OR (`tstart`<'".$time."' AND `tend`>'".$time."')) ORDER BY `tstart` ASC LIMIT 1", 'loadResult');
6672
  }
6673
 
6674
  public function is_midnight_event($event)
592
  __('Booking Reminder', 'modern-events-calendar-lite') => 'booking_reminder',
593
  __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
594
  ), $notifications_items);
595
+
596
+ $modules[__('Notifications Per Event', 'modern-events-calendar-lite')] = 'notifications_per_event';
597
  }
598
 
599
  $notifications = apply_filters('mec-settings-item-notifications', $notifications_items, $active_menu);
674
  <ul class="<?php echo $active_menu == 'booking' ? 'subsection' : 'mec-settings-submenu'; ?>">
675
 
676
  <?php foreach ($booking as $booking_name => $booking_link) : ?>
677
+ <?php if ( $booking_link == 'coupon_option' || $booking_link == 'taxes_option' || $booking_link == 'ticket_variations_option' || $booking_link == 'booking_form_option' || $booking_link == 'payment_gateways_option' || $booking_link == 'booking_shortcode' ): ?>
678
  <?php if ( isset($options['booking_status']) and $options['booking_status'] ) : ?>
679
  <li>
680
  <a
2642
  }
2643
  }
2644
 
2645
+ public function booking_modal()
2646
+ {
2647
+ // Print Calendar
2648
+ if(isset($_GET['method']) and sanitize_text_field($_GET['method']) == 'mec-booking-modal' and $this->getPro())
2649
+ {
2650
+ global $post;
2651
+
2652
+ // Current Post is not Event
2653
+ if($post->post_type != $this->get_main_post_type()) return;
2654
+
2655
+ $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : NULL;
2656
+ $time = isset($_GET['time']) ? sanitize_text_field($_GET['time']) : NULL;
2657
+
2658
+ ob_start();
2659
+ ?>
2660
+ <html>
2661
+ <head>
2662
+ <?php wp_head(); ?>
2663
+ </head>
2664
+ <body <?php body_class('mec-booking-modal'); ?>>
2665
+ <?php echo do_shortcode('[mec-booking event-id="'.$post->ID.'"]'); ?>
2666
+ <?php wp_footer(); ?>
2667
+ </body>
2668
+ </html>
2669
+ <?php
2670
+ $html = ob_get_clean();
2671
+
2672
+ echo $html;
2673
+ exit;
2674
+ }
2675
+ }
2676
+
2677
  /**
2678
  * Generates ical output
2679
  * @author Webnus <info@webnus.biz>
3775
  if(!isset($settings['booking_status']) or (isset($settings['booking_status']) and !$settings['booking_status'])) return false;
3776
 
3777
  $tickets = isset($event->data->tickets) ? $event->data->tickets : array();
3778
+ $dates = isset($event->dates) ? $event->dates : (isset($event->date) ? $event->date : array());
3779
  $next_date = isset($dates[0]) ? $dates[0] : (isset($event->date) ? $event->date : array());
3780
 
3781
  // No Dates or no Tickets
3830
 
3831
  if(!trim($event->data->meta['mec_repeat_status']))
3832
  {
3833
+ if(isset($next_date['start']['hour'])) $render_date .= ' ' . sprintf('%02d', $next_date['start']['hour']) . ':' . sprintf('%02d', $next_date['start']['minutes']) . trim($next_date['start']['ampm']);
3834
+ else $render_date .= ' '.date('h:ia', $event->data->time['start_timestamp']);
3835
+
3836
  $time_format .= ' h:ia';
3837
  }
3838
 
5796
 
5797
  // No Tickets
5798
  if(!count($tickets)) return false;
5799
+
5800
+ $book = $this->getBook();
5801
+ $availability = $book->get_tickets_availability($event->data->ID, $timestamp);
5802
+
5803
+ if(is_array($availability) and count($availability))
 
 
 
5804
  {
5805
+ $remained_tickets = 0;
5806
+ foreach($availability as $ticket_id => $remained)
5807
  {
5808
+ if(is_numeric($ticket_id)) $remained_tickets += $remained;
 
5809
  }
5810
+
5811
+ // Check For Return SoldOut Label Exist.
5812
+ if($remained_tickets === 0) return true;
5813
  }
5814
 
 
 
 
 
 
 
5815
  return false;
5816
  }
5817
 
6688
  public function get_start_of_multiple_days($event_id, $date)
6689
  {
6690
  $db = $this->getDB();
6691
+ return $db->select("SELECT `dstart` FROM `#__mec_dates` WHERE `post_id`='".$event_id."' AND ((`dstart`='".$date."') OR (`dstart`<'".$date."' AND `dend`>='".$date."')) ORDER BY `dstart` DESC LIMIT 1", 'loadResult');
6692
  }
6693
 
6694
  public function get_start_time_of_multiple_days($event_id, $time)
6696
  if(!trim($time)) return NULL;
6697
 
6698
  $db = $this->getDB();
6699
+ return $db->select("SELECT `tstart` FROM `#__mec_dates` WHERE `post_id`='".$event_id."' AND ((`tstart`='".$time."') OR (`tstart`<'".$time."' AND `tend`>'".$time."')) ORDER BY `tstart` DESC LIMIT 1", 'loadResult');
6700
  }
6701
 
6702
  public function is_midnight_event($event)
app/libraries/notifications.php CHANGED
@@ -57,7 +57,12 @@ class MEC_notifications extends MEC_base
57
  // Auto verification for paid bookings is enabled so don't send the verification email
58
  if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
59
 
60
- $subject = isset($this->notif_settings['email_verification']['subject']) ? $this->content(__($this->notif_settings['email_verification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Please verify your email.', 'modern-events-calendar-lite');
 
 
 
 
 
61
  $headers = array('Content-Type: text/html; charset=UTF-8');
62
 
63
  $recipients_str = isset($this->notif_settings['email_verification']['recipients']) ? $this->notif_settings['email_verification']['recipients'] : '';
@@ -91,7 +96,6 @@ class MEC_notifications extends MEC_base
91
 
92
  // Book Data
93
  $key = get_post_meta($book_id, 'mec_verification_key', true);
94
- $event_id = get_post_meta($book_id, 'mec_event_id', true);
95
  $link = trim(get_permalink($event_id), '/').'/verify/'.$key.'/';
96
 
97
  // Changing some sender email info.
@@ -106,7 +110,9 @@ class MEC_notifications extends MEC_base
106
  $to = isset($attendee['email']) ? $attendee['email'] : '';
107
  if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
108
 
109
- $message = isset($this->notif_settings['email_verification']['content']) ? $this->content($this->notif_settings['email_verification']['content'], $book_id, $attendee) : '';
 
 
110
  $message = str_replace('%%verification_link%%', $link, $message);
111
  $message = str_replace('%%link%%', $link, $message);
112
 
@@ -155,7 +161,12 @@ class MEC_notifications extends MEC_base
155
  // Booking Notification is disabled
156
  if(isset($this->notif_settings['booking_notification']['status']) and !$this->notif_settings['booking_notification']['status']) return false;
157
 
158
- $subject = isset($this->notif_settings['booking_notification']['subject']) ? $this->content(__($this->notif_settings['booking_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is received.', 'modern-events-calendar-lite');
 
 
 
 
 
159
  $headers = array('Content-Type: text/html; charset=UTF-8');
160
 
161
  $recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
@@ -206,7 +217,9 @@ class MEC_notifications extends MEC_base
206
  $to = isset($attendee['email']) ? $attendee['email'] : '';
207
  if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
208
 
209
- $message = isset($this->notif_settings['booking_notification']['content']) ? $this->content($this->notif_settings['booking_notification']['content'], $book_id, $attendee) : '';
 
 
210
  $message = $this->add_template($message);
211
 
212
  // Filter the email
@@ -258,7 +271,12 @@ class MEC_notifications extends MEC_base
258
  // Don't send the confirmation email
259
  if($mode == 'auto' and !$send_email_state) return false;
260
 
261
- $subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
 
 
 
 
 
262
  $headers = array('Content-Type: text/html; charset=UTF-8');
263
 
264
  $recipients_str = isset($this->notif_settings['booking_confirmation']['recipients']) ? $this->notif_settings['booking_confirmation']['recipients'] : '';
@@ -302,7 +320,9 @@ class MEC_notifications extends MEC_base
302
  $to = isset($attendee['email']) ? $attendee['email'] : '';
303
  if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
304
 
305
- $message = isset($this->notif_settings['booking_confirmation']['content']) ? $this->content($this->notif_settings['booking_confirmation']['content'], $book_id, $attendee) : '';
 
 
306
  $message = $this->add_template($message);
307
 
308
  // Filter the email
@@ -415,7 +435,11 @@ class MEC_notifications extends MEC_base
415
  $headers[] = 'BCC: '.$recipient;
416
  }
417
 
418
- $subject = isset($this->notif_settings['cancellation_notification']['subject']) ? $this->content(__($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('booking canceled.', 'modern-events-calendar-lite');
 
 
 
 
419
 
420
  // Changing some sender email info.
421
  $this->mec_sender_email_notification_filter();
@@ -432,7 +456,8 @@ class MEC_notifications extends MEC_base
432
  if(!trim($mailto) or !filter_var($mailto, FILTER_VALIDATE_EMAIL)) continue;
433
  if($i > 1) $headers = array('Content-Type: text/html; charset=UTF-8');
434
 
435
- $message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->content($this->notif_settings['cancellation_notification']['content'], $book_id, (is_array($to) ? $to : NULL)) : '';
 
436
 
437
  // Book Data
438
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
@@ -471,8 +496,13 @@ class MEC_notifications extends MEC_base
471
  // Admin Notification is disabled
472
  if(isset($this->notif_settings['admin_notification']['status']) and !$this->notif_settings['admin_notification']['status']) return;
473
 
 
 
 
474
  $to = get_bloginfo('admin_email');
475
- $subject = isset($this->notif_settings['admin_notification']['subject']) ? $this->content(__($this->notif_settings['admin_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('A new booking is received.', 'modern-events-calendar-lite');
 
 
476
  $headers = array('Content-Type: text/html; charset=UTF-8');
477
 
478
  $recipients_str = isset($this->notif_settings['admin_notification']['recipients']) ? $this->notif_settings['admin_notification']['recipients'] : '';
@@ -504,7 +534,8 @@ class MEC_notifications extends MEC_base
504
  if($organizer_email !== false) $headers[] = 'CC: '.trim($organizer_email);
505
  }
506
 
507
- $message = isset($this->notif_settings['admin_notification']['content']) ? $this->content($this->notif_settings['admin_notification']['content'], $book_id) : '';
 
508
 
509
  // Book Data
510
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
@@ -547,7 +578,12 @@ class MEC_notifications extends MEC_base
547
 
548
  if(!isset($booker->user_email)) return false;
549
 
550
- $subject = isset($this->notif_settings['booking_reminder']['subject']) ? $this->content(__($this->notif_settings['booking_reminder']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Booking Reminder', 'modern-events-calendar-lite');
 
 
 
 
 
551
  $headers = array('Content-Type: text/html; charset=UTF-8');
552
 
553
  $recipients_str = isset($this->notif_settings['booking_reminder']['recipients']) ? $this->notif_settings['booking_reminder']['recipients'] : '';
@@ -588,7 +624,8 @@ class MEC_notifications extends MEC_base
588
  if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
589
 
590
  $to = $attendee['email'];
591
- $message = isset($this->notif_settings['booking_reminder']['content']) ? $this->content($this->notif_settings['booking_reminder']['content'], $book_id, $attendee) : '';
 
592
 
593
  if(!trim($to)) continue;
594
 
@@ -668,6 +705,8 @@ class MEC_notifications extends MEC_base
668
  }
669
 
670
  $subject = (isset($this->notif_settings['new_event']['subject']) and trim($this->notif_settings['new_event']['subject'])) ? __($this->notif_settings['new_event']['subject'], 'modern-events-calendar-lite') : __('A new event is added.', 'modern-events-calendar-lite');
 
 
671
  $headers = array('Content-Type: text/html; charset=UTF-8');
672
 
673
  foreach($recipients as $recipient)
@@ -679,6 +718,7 @@ class MEC_notifications extends MEC_base
679
  }
680
 
681
  $message = (isset($this->notif_settings['new_event']['content']) and trim($this->notif_settings['new_event']['content'])) ? $this->notif_settings['new_event']['content'] : '';
 
682
 
683
  // Site Data
684
  $message = str_replace('%%blog_name%%', get_bloginfo('name'), $message);
@@ -688,12 +728,11 @@ class MEC_notifications extends MEC_base
688
  // Event Data
689
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
690
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
691
- $message = str_replace('%%event_link%%', get_post_permalink($event_id), $message);
692
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n(get_option('date_format'), strtotime(get_post_meta($event_id, 'mec_start_date', true))), $message);
693
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n(get_option('date_format'), strtotime(get_post_meta($event_id, 'mec_end_date', true))), $message);
694
  $message = str_replace('%%event_status%%', $status, $message);
695
  $message = str_replace('%%event_note%%', get_post_meta($event_id, 'mec_note', true), $message);
696
-
697
  // Data Fields
698
  $event_fields = $this->main->get_event_fields();
699
  $event_fields_data = get_post_meta($event_id, 'mec_fields', true);
@@ -713,6 +752,11 @@ class MEC_notifications extends MEC_base
713
  $message = str_replace('%%event_field_'.$f.'_with_name%%', trim((trim($event_field_name) ? $event_field_name.': ' : '').trim($field_value, ', ')), $message);
714
  }
715
 
 
 
 
 
 
716
  // Notification Subject
717
  $subject = str_replace('%%event_title%%', get_the_title($event_id), $subject);
718
 
@@ -765,6 +809,8 @@ class MEC_notifications extends MEC_base
765
 
766
  $to = $email;
767
  $subject = (isset($this->notif_settings['user_event_publishing']['subject']) and trim($this->notif_settings['user_event_publishing']['subject'])) ? __($this->notif_settings['user_event_publishing']['subject'], 'modern-events-calendar-lite') : __('Your event is published.', 'modern-events-calendar-lite');
 
 
768
  $headers = array('Content-Type: text/html; charset=UTF-8');
769
 
770
  $recipients_str = isset($this->notif_settings['user_event_publishing']['recipients']) ? $this->notif_settings['user_event_publishing']['recipients'] : '';
@@ -790,6 +836,7 @@ class MEC_notifications extends MEC_base
790
  }
791
 
792
  $message = (isset($this->notif_settings['user_event_publishing']['content']) and trim($this->notif_settings['user_event_publishing']['content'])) ? $this->notif_settings['user_event_publishing']['content'] : '';
 
793
 
794
  // User Data
795
  $message = str_replace('%%name%%', $guest_name, $message);
@@ -827,6 +874,11 @@ class MEC_notifications extends MEC_base
827
  $message = str_replace('%%event_field_'.$f.'_with_name%%', trim((trim($event_field_name) ? $event_field_name.': ' : '').trim($field_value, ', ')), $message);
828
  }
829
 
 
 
 
 
 
830
  // Notification Subject
831
  $subject = str_replace('%%event_title%%', get_the_title($post->ID), $subject);
832
 
@@ -914,29 +966,49 @@ class MEC_notifications extends MEC_base
914
  $timestamps = get_post_meta($book_id, 'mec_date', true);
915
  list($start_timestamp, $end_timestamp) = explode(':', $timestamps);
916
 
 
917
  if(trim($timestamps) and strpos($timestamps, ':') !== false)
918
  {
919
  if(trim($start_timestamp) != trim($end_timestamp))
920
  {
921
- $book_date = sprintf(__('%s to %s', 'modern-events-calendar-lite'), $this->main->date_i18n($date_format.' '.$time_format, $start_timestamp), $this->main->date_i18n($date_format.' '.$time_format, $end_timestamp));
922
  }
923
- else $book_date = get_the_date($date_format.' '.$time_format, $book_id);
924
  }
925
- else $book_date = get_the_date($date_format.' '.$time_format, $book_id);
926
 
927
  $message = str_replace('%%book_date%%', $book_date, $message);
928
 
929
- // Order Time
930
- $order_time = get_post_meta($book_id, 'mec_booking_time', true);
931
- $message = str_replace('%%book_order_time%%', $this->main->date_i18n($date_format.' '.$time_format, strtotime($order_time)), $message);
932
-
933
  // Book Time
934
- $event_start_time = get_post_meta($event_id, 'mec_allday', true) ? $this->main->m('all_day', __('All Day' , 'modern-events-calendar-lite')) : $this->main->get_time($start_timestamp);
 
 
 
 
 
 
935
 
936
  // Condition for check some parameter simple hide event time
937
- if(!get_post_meta($event_id, 'mec_hide_time', true)) $message = str_replace('%%book_time%%', $event_start_time, $message);
938
  else $message = str_replace('%%book_time%%', '', $message);
939
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
940
  $message = str_replace('%%invoice_link%%', $this->book->get_invoice_link($transaction_id), $message);
941
 
942
  $cancellation_key = get_post_meta($book_id, 'mec_cancellation_key', true);
@@ -1128,6 +1200,11 @@ class MEC_notifications extends MEC_base
1128
  $dl_file = $this->book->get_dl_file_link($book_id);
1129
  $message = str_replace('%%dl_file%%', $dl_file, $message);
1130
 
 
 
 
 
 
1131
  return $message;
1132
  }
1133
 
@@ -1269,4 +1346,30 @@ class MEC_notifications extends MEC_base
1269
  </tr>
1270
  </table>';
1271
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1272
  }
57
  // Auto verification for paid bookings is enabled so don't send the verification email
58
  if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
59
 
60
+ // Event ID
61
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
62
+
63
+ $subject = isset($this->notif_settings['email_verification']['subject']) ? __($this->notif_settings['email_verification']['subject'], 'modern-events-calendar-lite') : __('Please verify your email.', 'modern-events-calendar-lite');
64
+ $subject = $this->content($this->get_subject($subject, 'email_verification', $event_id), $book_id);
65
+
66
  $headers = array('Content-Type: text/html; charset=UTF-8');
67
 
68
  $recipients_str = isset($this->notif_settings['email_verification']['recipients']) ? $this->notif_settings['email_verification']['recipients'] : '';
96
 
97
  // Book Data
98
  $key = get_post_meta($book_id, 'mec_verification_key', true);
 
99
  $link = trim(get_permalink($event_id), '/').'/verify/'.$key.'/';
100
 
101
  // Changing some sender email info.
110
  $to = isset($attendee['email']) ? $attendee['email'] : '';
111
  if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
112
 
113
+ $message = isset($this->notif_settings['email_verification']['content']) ? $this->notif_settings['email_verification']['content'] : '';
114
+ $message = $this->content($this->get_content($message, 'email_verification', $event_id), $book_id, $attendee);
115
+
116
  $message = str_replace('%%verification_link%%', $link, $message);
117
  $message = str_replace('%%link%%', $link, $message);
118
 
161
  // Booking Notification is disabled
162
  if(isset($this->notif_settings['booking_notification']['status']) and !$this->notif_settings['booking_notification']['status']) return false;
163
 
164
+ // Event ID
165
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
166
+
167
+ $subject = isset($this->notif_settings['booking_notification']['subject']) ? __($this->notif_settings['booking_notification']['subject'], 'modern-events-calendar-lite') : __('Your booking is received.', 'modern-events-calendar-lite');
168
+ $subject = $this->content($this->get_subject($subject, 'booking_notification', $event_id), $book_id);
169
+
170
  $headers = array('Content-Type: text/html; charset=UTF-8');
171
 
172
  $recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
217
  $to = isset($attendee['email']) ? $attendee['email'] : '';
218
  if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
219
 
220
+ $message = isset($this->notif_settings['booking_notification']['content']) ? $this->notif_settings['booking_notification']['content'] : '';
221
+ $message = $this->content($this->get_content($message, 'booking_notification', $event_id), $book_id, $attendee);
222
+
223
  $message = $this->add_template($message);
224
 
225
  // Filter the email
271
  // Don't send the confirmation email
272
  if($mode == 'auto' and !$send_email_state) return false;
273
 
274
+ // Event ID
275
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
276
+
277
+ $subject = isset($this->notif_settings['booking_confirmation']['subject']) ? __($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite') : __('Your booking is confirmed.', 'modern-events-calendar-lite');
278
+ $subject = $this->content($this->get_subject($subject, 'booking_confirmation', $event_id), $book_id);
279
+
280
  $headers = array('Content-Type: text/html; charset=UTF-8');
281
 
282
  $recipients_str = isset($this->notif_settings['booking_confirmation']['recipients']) ? $this->notif_settings['booking_confirmation']['recipients'] : '';
320
  $to = isset($attendee['email']) ? $attendee['email'] : '';
321
  if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
322
 
323
+ $message = isset($this->notif_settings['booking_confirmation']['content']) ? $this->notif_settings['booking_confirmation']['content'] : '';
324
+ $message = $this->content($this->get_content($message, 'booking_confirmation', $event_id), $book_id, $attendee);
325
+
326
  $message = $this->add_template($message);
327
 
328
  // Filter the email
435
  $headers[] = 'BCC: '.$recipient;
436
  }
437
 
438
+ // Event ID
439
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
440
+
441
+ $subject = isset($this->notif_settings['cancellation_notification']['subject']) ? __($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite') : __('booking canceled.', 'modern-events-calendar-lite');
442
+ $subject = $this->content($this->get_subject($subject, 'cancellation_notification', $event_id), $book_id);
443
 
444
  // Changing some sender email info.
445
  $this->mec_sender_email_notification_filter();
456
  if(!trim($mailto) or !filter_var($mailto, FILTER_VALIDATE_EMAIL)) continue;
457
  if($i > 1) $headers = array('Content-Type: text/html; charset=UTF-8');
458
 
459
+ $message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->notif_settings['cancellation_notification']['content'] : '';
460
+ $message = $this->content($this->get_content($message, 'cancellation_notification', $event_id), $book_id, (is_array($to) ? $to : NULL));
461
 
462
  // Book Data
463
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
496
  // Admin Notification is disabled
497
  if(isset($this->notif_settings['admin_notification']['status']) and !$this->notif_settings['admin_notification']['status']) return;
498
 
499
+ // Event ID
500
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
501
+
502
  $to = get_bloginfo('admin_email');
503
+ $subject = isset($this->notif_settings['admin_notification']['subject']) ? __($this->notif_settings['admin_notification']['subject'], 'modern-events-calendar-lite') : __('A new booking is received.', 'modern-events-calendar-lite');
504
+ $subject = $this->content($this->get_subject($subject, 'admin_notification', $event_id), $book_id);
505
+
506
  $headers = array('Content-Type: text/html; charset=UTF-8');
507
 
508
  $recipients_str = isset($this->notif_settings['admin_notification']['recipients']) ? $this->notif_settings['admin_notification']['recipients'] : '';
534
  if($organizer_email !== false) $headers[] = 'CC: '.trim($organizer_email);
535
  }
536
 
537
+ $message = isset($this->notif_settings['admin_notification']['content']) ? $this->notif_settings['admin_notification']['content'] : '';
538
+ $message = $this->content($this->get_content($message, 'admin_notification', $event_id), $book_id);
539
 
540
  // Book Data
541
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
578
 
579
  if(!isset($booker->user_email)) return false;
580
 
581
+ // Event ID
582
+ $event_id = get_post_meta($book_id, 'mec_event_id', true);
583
+
584
+ $subject = isset($this->notif_settings['booking_reminder']['subject']) ? __($this->notif_settings['booking_reminder']['subject'], 'modern-events-calendar-lite') : __('Booking Reminder', 'modern-events-calendar-lite');
585
+ $subject = $this->content($this->get_subject($subject, 'booking_reminder', $event_id), $book_id);
586
+
587
  $headers = array('Content-Type: text/html; charset=UTF-8');
588
 
589
  $recipients_str = isset($this->notif_settings['booking_reminder']['recipients']) ? $this->notif_settings['booking_reminder']['recipients'] : '';
624
  if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
625
 
626
  $to = $attendee['email'];
627
+ $message = isset($this->notif_settings['booking_reminder']['content']) ? $this->notif_settings['booking_reminder']['content'] : '';
628
+ $message = $this->content($this->get_content($message, 'booking_reminder', $event_id), $book_id, $attendee);
629
 
630
  if(!trim($to)) continue;
631
 
705
  }
706
 
707
  $subject = (isset($this->notif_settings['new_event']['subject']) and trim($this->notif_settings['new_event']['subject'])) ? __($this->notif_settings['new_event']['subject'], 'modern-events-calendar-lite') : __('A new event is added.', 'modern-events-calendar-lite');
708
+ $subject = $this->get_subject($subject, 'new_event', $event_id);
709
+
710
  $headers = array('Content-Type: text/html; charset=UTF-8');
711
 
712
  foreach($recipients as $recipient)
718
  }
719
 
720
  $message = (isset($this->notif_settings['new_event']['content']) and trim($this->notif_settings['new_event']['content'])) ? $this->notif_settings['new_event']['content'] : '';
721
+ $message = $this->get_content($message, 'new_event', $event_id);
722
 
723
  // Site Data
724
  $message = str_replace('%%blog_name%%', get_bloginfo('name'), $message);
728
  // Event Data
729
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
730
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
 
731
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n(get_option('date_format'), strtotime(get_post_meta($event_id, 'mec_start_date', true))), $message);
732
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n(get_option('date_format'), strtotime(get_post_meta($event_id, 'mec_end_date', true))), $message);
733
  $message = str_replace('%%event_status%%', $status, $message);
734
  $message = str_replace('%%event_note%%', get_post_meta($event_id, 'mec_note', true), $message);
735
+
736
  // Data Fields
737
  $event_fields = $this->main->get_event_fields();
738
  $event_fields_data = get_post_meta($event_id, 'mec_fields', true);
752
  $message = str_replace('%%event_field_'.$f.'_with_name%%', trim((trim($event_field_name) ? $event_field_name.': ' : '').trim($field_value, ', ')), $message);
753
  }
754
 
755
+ // Virtual Event
756
+ $message = str_replace('%%virtual_link%%', get_post_meta($event_id, 'mec_virtual_link_url', true), $message);
757
+ $message = str_replace('%%virtual_password%%', get_post_meta($event_id, 'mec_virtual_password', true), $message);
758
+ $message = str_replace('%%virtual_embed%%', get_post_meta($event_id, 'mec_virtual_embed', true), $message);
759
+
760
  // Notification Subject
761
  $subject = str_replace('%%event_title%%', get_the_title($event_id), $subject);
762
 
809
 
810
  $to = $email;
811
  $subject = (isset($this->notif_settings['user_event_publishing']['subject']) and trim($this->notif_settings['user_event_publishing']['subject'])) ? __($this->notif_settings['user_event_publishing']['subject'], 'modern-events-calendar-lite') : __('Your event is published.', 'modern-events-calendar-lite');
812
+ $subject = $this->get_subject($subject, 'user_event_publishing', $post->ID);
813
+
814
  $headers = array('Content-Type: text/html; charset=UTF-8');
815
 
816
  $recipients_str = isset($this->notif_settings['user_event_publishing']['recipients']) ? $this->notif_settings['user_event_publishing']['recipients'] : '';
836
  }
837
 
838
  $message = (isset($this->notif_settings['user_event_publishing']['content']) and trim($this->notif_settings['user_event_publishing']['content'])) ? $this->notif_settings['user_event_publishing']['content'] : '';
839
+ $message = $this->get_content($message, 'user_event_publishing', $post->ID);
840
 
841
  // User Data
842
  $message = str_replace('%%name%%', $guest_name, $message);
874
  $message = str_replace('%%event_field_'.$f.'_with_name%%', trim((trim($event_field_name) ? $event_field_name.': ' : '').trim($field_value, ', ')), $message);
875
  }
876
 
877
+ // Virtual Event
878
+ $message = str_replace('%%virtual_link%%', get_post_meta($post->ID, 'mec_virtual_link_url', true), $message);
879
+ $message = str_replace('%%virtual_password%%', get_post_meta($post->ID, 'mec_virtual_password', true), $message);
880
+ $message = str_replace('%%virtual_embed%%', get_post_meta($post->ID, 'mec_virtual_embed', true), $message);
881
+
882
  // Notification Subject
883
  $subject = str_replace('%%event_title%%', get_the_title($post->ID), $subject);
884
 
966
  $timestamps = get_post_meta($book_id, 'mec_date', true);
967
  list($start_timestamp, $end_timestamp) = explode(':', $timestamps);
968
 
969
+ // Book Date
970
  if(trim($timestamps) and strpos($timestamps, ':') !== false)
971
  {
972
  if(trim($start_timestamp) != trim($end_timestamp))
973
  {
974
+ $book_date = sprintf(__('%s to %s', 'modern-events-calendar-lite'), $this->main->date_i18n($date_format, $start_timestamp), $this->main->date_i18n($date_format, $end_timestamp));
975
  }
976
+ else $book_date = get_the_date($date_format, $book_id);
977
  }
978
+ else $book_date = get_the_date($date_format, $book_id);
979
 
980
  $message = str_replace('%%book_date%%', $book_date, $message);
981
 
 
 
 
 
982
  // Book Time
983
+ $event_start_time = $this->main->get_time($start_timestamp);
984
+ $event_end_time = $this->main->get_time($end_timestamp);
985
+
986
+ $allday = get_post_meta($event_id, 'mec_allday', true);
987
+ $hide_time = get_post_meta($event_id, 'mec_hide_time', true);
988
+ $hide_end_time = get_post_meta($event_id, 'mec_hide_end_time', true);
989
+ $event_time = $allday ? $this->main->m('all_day', __('All Day' , 'modern-events-calendar-lite')) : (!$hide_end_time ? sprintf(__('%s to %s', 'modern-events-calendar-lite'), $event_start_time, $event_end_time) : $event_start_time);
990
 
991
  // Condition for check some parameter simple hide event time
992
+ if(!$hide_time) $message = str_replace('%%book_time%%', $event_time, $message);
993
  else $message = str_replace('%%book_time%%', '', $message);
994
 
995
+ // Book Date & Time
996
+ if(trim($timestamps) and strpos($timestamps, ':') !== false)
997
+ {
998
+ if(trim($start_timestamp) != trim($end_timestamp))
999
+ {
1000
+ $book_datetime = sprintf(__('%s to %s', 'modern-events-calendar-lite'), $this->main->date_i18n($date_format.((!$allday and !$hide_time) ? ' '.$time_format : ''), $start_timestamp), $this->main->date_i18n($date_format.((!$allday and !$hide_time and !$hide_end_time) ? ' '.$time_format : ''), $end_timestamp));
1001
+ }
1002
+ else $book_datetime = get_the_date($date_format.((!$allday and !$hide_time) ? ' '.$time_format : ''), $book_id);
1003
+ }
1004
+ else $book_datetime = get_the_date($date_format.((!$allday and !$hide_time) ? ' '.$time_format : ''), $book_id);
1005
+
1006
+ $message = str_replace('%%book_datetime%%', $book_datetime, $message);
1007
+
1008
+ // Order Time
1009
+ $order_time = get_post_meta($book_id, 'mec_booking_time', true);
1010
+ $message = str_replace('%%book_order_time%%', $this->main->date_i18n($date_format.' '.$time_format, strtotime($order_time)), $message);
1011
+
1012
  $message = str_replace('%%invoice_link%%', $this->book->get_invoice_link($transaction_id), $message);
1013
 
1014
  $cancellation_key = get_post_meta($book_id, 'mec_cancellation_key', true);
1200
  $dl_file = $this->book->get_dl_file_link($book_id);
1201
  $message = str_replace('%%dl_file%%', $dl_file, $message);
1202
 
1203
+ // Virtual Event
1204
+ $message = str_replace('%%virtual_link%%', get_post_meta($event_id, 'mec_virtual_link_url', true), $message);
1205
+ $message = str_replace('%%virtual_password%%', get_post_meta($event_id, 'mec_virtual_password', true), $message);
1206
+ $message = str_replace('%%virtual_embed%%', get_post_meta($event_id, 'mec_virtual_embed', true), $message);
1207
+
1208
  return $message;
1209
  }
1210
 
1346
  </tr>
1347
  </table>';
1348
  }
1349
+
1350
+ public function get_subject($value, $notification_key, $event_id)
1351
+ {
1352
+ $values = get_post_meta($event_id, 'mec_notifications', true);
1353
+ if(!is_array($values) or (is_array($values) and !count($values))) return $value;
1354
+
1355
+ $notification = isset($values[$notification_key]) ? $values[$notification_key] : array();
1356
+ if(!is_array($notification) or (is_array($notification) and !count($notification))) return $value;
1357
+
1358
+ if(!isset($notification['status']) or (isset($notification['status']) and !$notification['status'])) return $value;
1359
+
1360
+ return ((isset($notification['subject']) and trim($notification['subject'])) ? $notification['subject'] : $value);
1361
+ }
1362
+
1363
+ public function get_content($value, $notification_key, $event_id)
1364
+ {
1365
+ $values = get_post_meta($event_id, 'mec_notifications', true);
1366
+ if(!is_array($values) or (is_array($values) and !count($values))) return $value;
1367
+
1368
+ $notification = isset($values[$notification_key]) ? $values[$notification_key] : array();
1369
+ if(!is_array($notification) or (is_array($notification) and !count($notification))) return $value;
1370
+
1371
+ if(!isset($notification['status']) or (isset($notification['status']) and !$notification['status'])) return $value;
1372
+
1373
+ return ((isset($notification['content']) and trim($notification['content'])) ? $notification['content'] : $value);
1374
+ }
1375
  }
app/libraries/skins.php CHANGED
@@ -40,6 +40,12 @@ class MEC_skins extends MEC_base
40
  * @var int
41
  */
42
  public $next_offset = 0;
 
 
 
 
 
 
43
 
44
  /**
45
  * Single Event Display Method
@@ -212,11 +218,10 @@ class MEC_skins extends MEC_base
212
 
213
  // Apply filters
214
  $settings = $this->main->get_settings();
215
- if ($this->skin == 'single' and (isset($settings['single_single_style']) and $settings['single_single_style'] == 'fluent')) {
216
- $filtered_path = apply_filters('mec_get_skin_tpl_path', $this->skin, 'fluent');
217
- } else {
218
- $filtered_path = apply_filters('mec_get_skin_tpl_path', $this->skin, $this->style);
219
- }
220
  if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
221
 
222
  return $path;
@@ -639,6 +644,7 @@ class MEC_skins extends MEC_base
639
  // Show only one occurrence of events
640
  $first_event = $this->db->select("SELECT `post_id`, `tstart` FROM `#__mec_dates` WHERE `tstart` >= {$now} GROUP BY `post_id` ORDER BY `tstart` ASC");
641
 
 
642
  foreach($dates as $date => $event_ids)
643
  {
644
  if(!is_array($event_ids) or (is_array($event_ids) and !count($event_ids))) continue;
@@ -648,13 +654,18 @@ class MEC_skins extends MEC_base
648
  $one_occurrence = get_post_meta($event_id, 'one_occurrence', true);
649
  if($one_occurrence != '1') continue;
650
 
651
- if(isset($first_event[$event_id]->tstart) and strtotime($date) >= $first_event[$event_id]->tstart)
652
  {
653
  $dates[$date][$index] = '';
654
  }
 
 
 
 
 
655
  }
656
  }
657
-
658
  return $dates;
659
  }
660
 
@@ -1232,4 +1243,19 @@ class MEC_skins extends MEC_base
1232
  if($a_timestamp == $b_timestamp) return 0;
1233
  return ($a_timestamp > $b_timestamp) ? +1 : -1;
1234
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1235
  }
40
  * @var int
41
  */
42
  public $next_offset = 0;
43
+
44
+ /**
45
+ * Display Booking Method
46
+ * @var int
47
+ */
48
+ public $booking_button = 0;
49
 
50
  /**
51
  * Single Event Display Method
218
 
219
  // Apply filters
220
  $settings = $this->main->get_settings();
221
+
222
+ if($this->skin == 'single' and (isset($settings['single_single_style']) and $settings['single_single_style'] == 'fluent')) $filtered_path = apply_filters('mec_get_skin_tpl_path', $this->skin, 'fluent');
223
+ else $filtered_path = apply_filters('mec_get_skin_tpl_path', $this->skin, $this->style);
224
+
 
225
  if($filtered_path != $this->skin and $this->file->exists($filtered_path)) $path = $filtered_path;
226
 
227
  return $path;
644
  // Show only one occurrence of events
645
  $first_event = $this->db->select("SELECT `post_id`, `tstart` FROM `#__mec_dates` WHERE `tstart` >= {$now} GROUP BY `post_id` ORDER BY `tstart` ASC");
646
 
647
+ $did_one_occurrence = array();
648
  foreach($dates as $date => $event_ids)
649
  {
650
  if(!is_array($event_ids) or (is_array($event_ids) and !count($event_ids))) continue;
654
  $one_occurrence = get_post_meta($event_id, 'one_occurrence', true);
655
  if($one_occurrence != '1') continue;
656
 
657
+ if(isset($first_event[$event_id]->tstart) and date('Y-m-d', strtotime($date)) != date('Y-m-d', $first_event[$event_id]->tstart))
658
  {
659
  $dates[$date][$index] = '';
660
  }
661
+ else
662
+ {
663
+ if(in_array($event_id, $did_one_occurrence)) $dates[$date][$index] = '';
664
+ else $did_one_occurrence[] = $event_id;
665
+ }
666
  }
667
  }
668
+
669
  return $dates;
670
  }
671
 
1243
  if($a_timestamp == $b_timestamp) return 0;
1244
  return ($a_timestamp > $b_timestamp) ? +1 : -1;
1245
  }
1246
+
1247
+ public function booking_button($event, $type = 'button')
1248
+ {
1249
+ if(!$this->booking_button) return '';
1250
+ if(!$this->main->can_show_booking_module($event)) return '';
1251
+ if($this->main->is_sold($event, $event->data->time['start_timestamp'])) return '';
1252
+
1253
+ $link = $this->main->get_event_date_permalink($event, $event->date['start']['date']);
1254
+ $link = $this->main->add_qs_var('method', 'mec-booking-modal', $link);
1255
+
1256
+ $modal = 'data-featherlight="iframe" data-featherlight-iframe-height="450" data-featherlight-iframe-width="700"';
1257
+
1258
+ if($type === 'button') return '<a class="mec-modal-booking-button mec-mb-button" href="'.esc_url($link).'" '.$modal.'>'.$this->main->m('register_button', __('Book Event', 'modern-events-calendar-lite')).'</a>';
1259
+ else return '<a class="mec-modal-booking-button mec-mb-icon" title="' . __('Book Event', 'modern-events-calendar-lite') . '" href="'.esc_url($link).'" '.$modal.'><i class="mec-sl-note"></i></a>';
1260
+ }
1261
  }
app/skins/agenda.php CHANGED
@@ -87,6 +87,9 @@ class MEC_skin_agenda extends MEC_skins
87
  // HTML class
88
  $this->html_class = '';
89
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
90
 
91
  // SED Method
92
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
87
  // HTML class
88
  $this->html_class = '';
89
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
90
+
91
+ // Booking Button
92
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
93
 
94
  // SED Method
95
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/agenda/render.php CHANGED
@@ -63,6 +63,8 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
63
  <a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a>
64
  <?php echo $this->main->get_flags($event).$event_color; ?>
65
  <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
 
 
66
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
67
  </span>
68
  <?php do_action( 'mec_agenda_skin_attribute', $organizer, $location ); ?>
63
  <a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a>
64
  <?php echo $this->main->get_flags($event).$event_color; ?>
65
  <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
66
+ <?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
67
+ <?php echo $this->booking_button($event); ?>
68
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
69
  </span>
70
  <?php do_action( 'mec_agenda_skin_attribute', $organizer, $location ); ?>
app/skins/available_spot/tpl.php CHANGED
@@ -189,6 +189,7 @@ do_action('mec_available_spot_skin_head');
189
  <div class="mec-event-content">
190
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $this->main->get_flags($event).$event_color; ?></h4>
191
  <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);?>
 
192
  <?php
193
  $excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
194
 
189
  <div class="mec-event-content">
190
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $this->main->get_flags($event).$event_color; ?></h4>
191
  <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);?>
192
+ <?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
193
  <?php
194
  $excerpt = trim($event->data->post->post_excerpt) ? $event->data->post->post_excerpt : '';
195
 
app/skins/carousel.php CHANGED
@@ -78,6 +78,9 @@ class MEC_skin_carousel extends MEC_skins
78
  $this->html_class = '';
79
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
80
 
 
 
 
81
  // SED Method
82
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
83
 
78
  $this->html_class = '';
79
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
80
 
81
+ // Booking Button
82
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
83
+
84
  // SED Method
85
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
86
 
app/skins/carousel/render.php CHANGED
@@ -62,9 +62,10 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
62
  </div>
63
  <div class="mec-event-carousel-content">
64
  <h4 class="mec-event-carousel-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event); ?></h4>
65
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
66
  <p class="mec-carousel-event-location"><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
67
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
 
68
  </div>
69
  <?php elseif($this->style == 'type2'): ?>
70
  <div class="event-carousel-type2-head clearfix">
@@ -86,7 +87,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
86
  <?php do_action('mec_carousel_type2_before_title' , $event); ?>
87
  <?php $soldout = $this->main->get_flags($event); ?>
88
  <h4 class="mec-event-carousel-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout; ?></h4>
89
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
90
  <?php do_action('mec_carousel_type2_after_title' , $event); ?>
91
  <p class="mec-carousel-event-location"><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
92
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
@@ -107,6 +108,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
107
  </ul>
108
  <?php endif; ?>
109
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
 
110
  </div>
111
  </div>
112
  <?php elseif($this->style == 'type3'): ?>
@@ -129,7 +131,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
129
  <?php $soldout = $this->main->get_flags($event); ?>
130
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
131
  <h4 class="mec-event-carousel-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout; ?></h4>
132
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
133
  <p class="mec-carousel-event-location"><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
134
  <?php if($settings['social_network_status'] != '0') : ?>
135
  <ul class="mec-event-sharing-wrap">
@@ -146,6 +148,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
146
  </ul>
147
  <?php endif; ?>
148
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
 
149
  </div>
150
  </div>
151
  <?php elseif($this->style == 'type4'): ?>
@@ -167,8 +170,8 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
167
  </div>
168
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
169
  <h4 class="mec-event-title"><?php echo $event->data->title.$this->main->get_flags($event).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
170
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
171
- <div class="mec-btn-wrapper"><a class="mec-event-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
172
  </div>
173
  </div>
174
  <?php endif; ?>
62
  </div>
63
  <div class="mec-event-carousel-content">
64
  <h4 class="mec-event-carousel-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event); ?></h4>
65
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
66
  <p class="mec-carousel-event-location"><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
67
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
68
+ <?php echo $this->booking_button($event); ?>
69
  </div>
70
  <?php elseif($this->style == 'type2'): ?>
71
  <div class="event-carousel-type2-head clearfix">
87
  <?php do_action('mec_carousel_type2_before_title' , $event); ?>
88
  <?php $soldout = $this->main->get_flags($event); ?>
89
  <h4 class="mec-event-carousel-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout; ?></h4>
90
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
91
  <?php do_action('mec_carousel_type2_after_title' , $event); ?>
92
  <p class="mec-carousel-event-location"><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
93
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
108
  </ul>
109
  <?php endif; ?>
110
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
111
+ <?php echo $this->booking_button($event); ?>
112
  </div>
113
  </div>
114
  <?php elseif($this->style == 'type3'): ?>
131
  <?php $soldout = $this->main->get_flags($event); ?>
132
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
133
  <h4 class="mec-event-carousel-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout; ?></h4>
134
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
135
  <p class="mec-carousel-event-location"><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
136
  <?php if($settings['social_network_status'] != '0') : ?>
137
  <ul class="mec-event-sharing-wrap">
148
  </ul>
149
  <?php endif; ?>
150
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
151
+ <?php echo $this->booking_button($event); ?>
152
  </div>
153
  </div>
154
  <?php elseif($this->style == 'type4'): ?>
170
  </div>
171
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
172
  <h4 class="mec-event-title"><?php echo $event->data->title.$this->main->get_flags($event).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
173
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
174
+ <div class="mec-btn-wrapper"><a class="mec-event-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a><?php echo $this->booking_button($event); ?></div>
175
  </div>
176
  </div>
177
  <?php endif; ?>
app/skins/countdown/tpl.php CHANGED
@@ -116,7 +116,7 @@ do_action('mec_countdown_skin_head');
116
  <div class="mec-event-countdown-part1 col-md-4">
117
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
118
  <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
119
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
120
  </div>
121
  <div class="mec-event-countdown-part2 col-md-5">
122
  <div class="mec-event-date-place">
@@ -162,7 +162,7 @@ do_action('mec_countdown_skin_head');
162
  <div class="mec-event-countdown-part1 col-md-4">
163
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
164
  <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
165
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
166
  </div>
167
  <div class="mec-event-countdown-part2 col-md-5">
168
  <div class="mec-event-date-place">
@@ -217,7 +217,7 @@ do_action('mec_countdown_skin_head');
217
  <span class="mec-date3"><?php echo $this->main->date_i18n($this->date_format_style33, strtotime($event_date)); ?></span>
218
  </div>
219
  <div class="mec-event-title-link">
220
- <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
221
  <a class="mec-event-link" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('Event Detail', 'modern-events-calendar-lite')); ?></a>
222
  </div>
223
  <div class="mec-event-countdown" id="mec_skin_countdown<?php echo $this->id; ?>">
116
  <div class="mec-event-countdown-part1 col-md-4">
117
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
118
  <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
119
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
120
  </div>
121
  <div class="mec-event-countdown-part2 col-md-5">
122
  <div class="mec-event-date-place">
162
  <div class="mec-event-countdown-part1 col-md-4">
163
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
164
  <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
165
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
166
  </div>
167
  <div class="mec-event-countdown-part2 col-md-5">
168
  <div class="mec-event-date-place">
217
  <span class="mec-date3"><?php echo $this->main->date_i18n($this->date_format_style33, strtotime($event_date)); ?></span>
218
  </div>
219
  <div class="mec-event-title-link">
220
+ <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event); ?><?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
221
  <a class="mec-event-link" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('Event Detail', 'modern-events-calendar-lite')); ?></a>
222
  </div>
223
  <div class="mec-event-countdown" id="mec_skin_countdown<?php echo $this->id; ?>">
app/skins/cover/tpl.php CHANGED
@@ -55,7 +55,7 @@ do_action('mec_cover_skin_head');
55
  <div class="mec-event-date"><?php echo $this->main->date_i18n($this->date_format_modern1, strtotime($event_date)).((isset($event->data->time) and trim($event->data->time['start'])) ? ' - '.$event->data->time['start'] : ''); ?></div>
56
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
57
  <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event).$event_color; ?></h4>
58
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
59
  <div class="mec-event-place"><?php echo (isset($event_location['name']) ? $event_location['name'] : ''); ?></div>
60
  </div>
61
  </a>
@@ -71,12 +71,12 @@ do_action('mec_cover_skin_head');
71
  <span class="mec-color"><?php echo $this->main->date_i18n($this->date_format_classic1, strtotime($event_date)); ?></span> <?php echo $this->main->date_i18n($this->date_format_classic2, strtotime($event_date)); ?>
72
  </div>
73
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
74
- <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
75
  <div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
76
  </div>
77
  <?php elseif($this->style == 'clean'): ?>
78
  <div class="mec-event-content">
79
- <h4 class="mec-event-title"><a href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $this->main->get_flags($event).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
80
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
81
  <?php if(isset($event_organizer['name'])): ?><div class="mec-event-place"><?php echo (isset($event_organizer['name']) ? $event_organizer['name'] : ''); ?></div><?php endif; ?>
82
  </div>
55
  <div class="mec-event-date"><?php echo $this->main->date_i18n($this->date_format_modern1, strtotime($event_date)).((isset($event->data->time) and trim($event->data->time['start'])) ? ' - '.$event->data->time['start'] : ''); ?></div>
56
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
57
  <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event).$event_color; ?></h4>
58
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
59
  <div class="mec-event-place"><?php echo (isset($event_location['name']) ? $event_location['name'] : ''); ?></div>
60
  </div>
61
  </a>
71
  <span class="mec-color"><?php echo $this->main->date_i18n($this->date_format_classic1, strtotime($event_date)); ?></span> <?php echo $this->main->date_i18n($this->date_format_classic2, strtotime($event_date)); ?>
72
  </div>
73
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
74
+ <h4 class="mec-event-title"><?php echo $event_title.$this->main->get_flags($event).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
75
  <div class="mec-btn-wrapper"><a class="mec-event-button" href="<?php echo $event_link; ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
76
  </div>
77
  <?php elseif($this->style == 'clean'): ?>
78
  <div class="mec-event-content">
79
+ <h4 class="mec-event-title"><a href="<?php echo $event_link; ?>"><?php echo $event_title; ?></a><?php echo $this->main->get_flags($event).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
80
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
81
  <?php if(isset($event_organizer['name'])): ?><div class="mec-event-place"><?php echo (isset($event_organizer['name']) ? $event_organizer['name'] : ''); ?></div><?php endif; ?>
82
  </div>
app/skins/custom.php CHANGED
@@ -71,6 +71,9 @@ class MEC_skin_custom extends MEC_skins
71
  $this->html_class = '';
72
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
73
 
 
 
 
74
  // SED Method
75
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
76
 
71
  $this->html_class = '';
72
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
73
 
74
+ // Booking Button
75
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
76
+
77
  // SED Method
78
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
79
 
app/skins/daily_view.php CHANGED
@@ -62,6 +62,9 @@ class MEC_skin_daily_view extends MEC_skins
62
  // HTML class
63
  $this->html_class = '';
64
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
65
 
66
  // SED Method
67
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
62
  // HTML class
63
  $this->html_class = '';
64
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
65
+
66
+ // Booking Button
67
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
68
 
69
  // SED Method
70
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/daily_view/render.php CHANGED
@@ -36,7 +36,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
36
  <article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
37
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
38
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
39
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
40
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
41
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?><div></div>
42
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
@@ -45,6 +45,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
45
  <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>
46
  </div>
47
  <?php endif; ?>
 
48
  </article>
49
  <?php endforeach; ?>
50
  <?php else: ?>
36
  <article data-style="<?php echo $label_style; ?>" class="<?php echo (isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : ''; ?>mec-event-article <?php echo $this->get_event_classes($event); ?>">
37
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
38
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
39
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
40
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
41
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?><div></div>
42
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
45
  <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>
46
  </div>
47
  <?php endif; ?>
48
+ <?php echo $this->booking_button($event); ?>
49
  </article>
50
  <?php endforeach; ?>
51
  <?php else: ?>
app/skins/default_full_calendar.php CHANGED
@@ -66,6 +66,9 @@ class MEC_skin_default_full_calendar extends MEC_skins
66
 
67
  // Generate an ID for the skin
68
  $this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
 
 
 
69
 
70
  // SED Method
71
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
66
 
67
  // Generate an ID for the skin
68
  $this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
69
+
70
+ // Booking Button
71
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
72
 
73
  // SED Method
74
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/full_calendar.php CHANGED
@@ -70,6 +70,9 @@ class MEC_skin_full_calendar extends MEC_skins
70
 
71
  // Generate an ID for the skin
72
  $this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
 
 
 
73
 
74
  // SED Method
75
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
70
 
71
  // Generate an ID for the skin
72
  $this->id = isset($this->atts['id']) ? $this->atts['id'] : mt_rand(100, 999);
73
+
74
+ // Booking Button
75
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
76
 
77
  // SED Method
78
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/grid.php CHANGED
@@ -118,6 +118,9 @@ class MEC_skin_grid extends MEC_skins
118
  $this->html_class = '';
119
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
120
 
 
 
 
121
  // SED Method
122
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
123
 
118
  $this->html_class = '';
119
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
120
 
121
+ // Booking Button
122
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
123
+
124
  // SED Method
125
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
126
 
app/skins/grid/render.php CHANGED
@@ -83,7 +83,7 @@ if($this->style == 'colorful')
83
  </div>
84
  <div class="mec-event-content">
85
  <?php $soldout = $this->main->get_flags($event); ?>
86
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
87
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
88
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
89
  <p class="mec-grid-event-location"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
@@ -96,6 +96,7 @@ if($this->style == 'colorful')
96
  </div>
97
  <div class="mec-event-footer">
98
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
 
99
  <?php if($settings['social_network_status'] != '0') : ?>
100
  <ul class="mec-event-sharing-wrap">
101
  <li class="mec-event-share">
@@ -130,7 +131,7 @@ if($this->style == 'colorful')
130
  <?php endif; ?>
131
  <?php do_action('mec_classic_before_title', $event ); ?>
132
  <?php $soldout = $this->main->get_flags($event); ?>
133
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
134
  <?php if(!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
135
  <p class="mec-grid-event-location"><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
136
  <?php do_action('mec_classic_view_action', $event); ?>
@@ -150,15 +151,16 @@ if($this->style == 'colorful')
150
  </li>
151
  </ul>
152
  <?php endif; ?>
 
153
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
154
  </div>
155
  <?php elseif($this->style == 'minimal'): ?>
156
  <div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-color"><span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
157
  <div class="event-detail-wrap">
158
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color; if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
159
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
160
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
161
- <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div></div>
162
  </div>
163
  <?php elseif($this->style == 'clean'): ?>
164
  <div class="event-grid-t2-head mec-bg-color clearfix">
@@ -181,7 +183,7 @@ if($this->style == 'colorful')
181
  <?php do_action('display_mec_tai' , $event ); ?>
182
  <?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
183
  <?php $soldout = $this->main->get_flags($event); ?>
184
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
185
  <p class="mec-grid-event-location"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
186
  </div>
187
  <div class="mec-event-footer mec-color">
@@ -200,6 +202,7 @@ if($this->style == 'colorful')
200
  </ul>
201
  <?php endif; ?>
202
  <?php do_action('mec_grid_clean_booking_button', $event); ?>
 
203
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
204
  </div>
205
  <?php elseif($this->style == 'novel'): ?>
@@ -208,7 +211,7 @@ if($this->style == 'colorful')
208
  <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
209
  <div class="mec-event-detail-wrap">
210
  <?php $soldout = $this->main->get_flags($event); ?>
211
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
212
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
213
  <div class="mec-event-month"><?php echo $this->main->date_i18n($this->date_format_novel_1, strtotime($event->date['start']['date'])); ?></div>
214
  <?php else: ?>
@@ -235,18 +238,20 @@ if($this->style == 'colorful')
235
  </li>
236
  </ul>
237
  <?php endif; ?>
 
238
  </div>
239
  </div>
240
  </div>
241
  <?php elseif($this->style == 'simple'): ?>
242
  <?php do_action('mec_skin_grid_simple', $event); ?>
243
  <div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_simple_1); ?></div>
244
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color; if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
245
  <div class="mec-event-detail">
246
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></span>
247
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
248
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
249
  </div>
 
250
  <?php endif;
251
  echo '</article></div>';
252
 
83
  </div>
84
  <div class="mec-event-content">
85
  <?php $soldout = $this->main->get_flags($event); ?>
86
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
87
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
88
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
89
  <p class="mec-grid-event-location"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
96
  </div>
97
  <div class="mec-event-footer">
98
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
99
+ <?php echo $this->booking_button($event); ?>
100
  <?php if($settings['social_network_status'] != '0') : ?>
101
  <ul class="mec-event-sharing-wrap">
102
  <li class="mec-event-share">
131
  <?php endif; ?>
132
  <?php do_action('mec_classic_before_title', $event ); ?>
133
  <?php $soldout = $this->main->get_flags($event); ?>
134
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
135
  <?php if(!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
136
  <p class="mec-grid-event-location"><?php echo trim((isset($location['name']) ? $location['name'] : '').', '.(isset($location['address']) ? $location['address'] : ''), ', '); ?></p>
137
  <?php do_action('mec_classic_view_action', $event); ?>
151
  </li>
152
  </ul>
153
  <?php endif; ?>
154
+ <?php echo $this->booking_button($event); ?>
155
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
156
  </div>
157
  <?php elseif($this->style == 'minimal'): ?>
158
  <div class="mec-event-date mec-bg-color-hover mec-border-color-hover mec-color"><span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
159
  <div class="event-detail-wrap">
160
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color; if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
161
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
162
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
163
+ <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div><?php echo $this->booking_button($event); ?></div>
164
  </div>
165
  <?php elseif($this->style == 'clean'): ?>
166
  <div class="event-grid-t2-head mec-bg-color clearfix">
183
  <?php do_action('display_mec_tai' , $event ); ?>
184
  <?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
185
  <?php $soldout = $this->main->get_flags($event); ?>
186
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
187
  <p class="mec-grid-event-location"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
188
  </div>
189
  <div class="mec-event-footer mec-color">
202
  </ul>
203
  <?php endif; ?>
204
  <?php do_action('mec_grid_clean_booking_button', $event); ?>
205
+ <?php echo $this->booking_button($event); ?>
206
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
207
  </div>
208
  <?php elseif($this->style == 'novel'): ?>
211
  <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumblist']; ?></a></div>
212
  <div class="mec-event-detail-wrap">
213
  <?php $soldout = $this->main->get_flags($event); ?>
214
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
215
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
216
  <div class="mec-event-month"><?php echo $this->main->date_i18n($this->date_format_novel_1, strtotime($event->date['start']['date'])); ?></div>
217
  <?php else: ?>
238
  </li>
239
  </ul>
240
  <?php endif; ?>
241
+ <?php echo $this->booking_button($event, 'icon'); ?>
242
  </div>
243
  </div>
244
  </div>
245
  <?php elseif($this->style == 'simple'): ?>
246
  <?php do_action('mec_skin_grid_simple', $event); ?>
247
  <div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_simple_1); ?></div>
248
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color; if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
249
  <div class="mec-event-detail">
250
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></span>
251
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
252
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
253
  </div>
254
+ <?php echo $this->booking_button($event); ?>
255
  <?php endif;
256
  echo '</article></div>';
257
 
app/skins/list.php CHANGED
@@ -136,6 +136,9 @@ class MEC_skin_list extends MEC_skins
136
  // HTML class
137
  $this->html_class = '';
138
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
139
 
140
  // SED Method
141
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
136
  // HTML class
137
  $this->html_class = '';
138
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
139
+
140
+ // Booking Button
141
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
142
 
143
  // SED Method
144
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/list/render.php CHANGED
@@ -56,7 +56,7 @@ $map_events = array();
56
  <div class="col-md-6 col-sm-6">
57
  <?php do_action('list_std_title_hook', $event); ?>
58
  <?php $soldout = $this->main->get_flags($event); ?>
59
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
60
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
61
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
62
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
@@ -64,8 +64,9 @@ $map_events = array();
64
  <ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
65
  </div>
66
  <div class="col-md-4 col-sm-4 mec-btn-wrapper">
 
67
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
68
- <?php do_action('mec_list_modern_style' , $event); ?>
69
  </div>
70
  <?php elseif($this->style == 'classic'): ?>
71
  <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumbnail']; ?></a></div>
@@ -76,15 +77,17 @@ $map_events = array();
76
  <div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->display_time($start_time, $end_time); } ?></div>
77
  <?php endif; ?>
78
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
79
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
80
  <?php if(isset($location['name'])): ?><div class="mec-event-detail"><div class="mec-event-loc-place"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div></div><?php endif; ?>
81
  <?php do_action('mec_list_classic_after_location' , $event); ?>
 
82
  <?php elseif($this->style == 'minimal'): ?>
83
  <div class="col-md-9 col-sm-9">
84
  <div class="mec-event-date mec-bg-color"><span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
85
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
86
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
87
  <div class="mec-event-detail"><?php echo $this->main->date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', <span class="mec-event-loc-place">' . $location['name'] .'</span>' : ''); ?> <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?> </div>
 
88
  </div>
89
  <div class="col-md-3 col-sm-3 btn-wrapper"><?php do_action('before_mec_list_minimal_button',$event); ?><a class="mec-detail-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
90
  <?php elseif($this->style == 'standard'): ?>
@@ -107,7 +110,7 @@ $map_events = array();
107
  <div class="col-md-6 mec-col-table-c mec-event-content-wrap">
108
  <div class="mec-event-content">
109
  <?php $soldout = $this->main->get_flags($event); ?>
110
- <h3 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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h3>
111
  <div class="mec-event-description"><?php echo $excerpt.(trim($excerpt) ? ' <span>...</span>' : ''); ?></div>
112
  </div>
113
  </div>
@@ -153,6 +156,7 @@ $map_events = array();
153
  </ul>
154
  <?php endif; ?>
155
  <?php do_action('mec_standard_booking_button' ,$event ); ?>
 
156
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
157
  </div>
158
  <?php elseif($this->style == 'accordion'): ?>
@@ -176,7 +180,7 @@ $map_events = array();
176
  <?php echo $this->main->display_time($start_time, $end_time); ?>
177
  </div>
178
  <h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $this->main->get_flags($event).$event_color; ?></h3>
179
- <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><i class="mec-sl-arrow-down"></i>
180
  </div>
181
  <div class="mec-content-toggle" aria-hidden="true" style="display: none;">
182
  <div class="mec-toggle-content">
56
  <div class="col-md-6 col-sm-6">
57
  <?php do_action('list_std_title_hook', $event); ?>
58
  <?php $soldout = $this->main->get_flags($event); ?>
59
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
60
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
61
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div>
62
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
64
  <ul class="mec-event-sharing"><?php echo $this->main->module('links.list', array('event'=>$event)); ?></ul>
65
  </div>
66
  <div class="col-md-4 col-sm-4 mec-btn-wrapper">
67
+ <?php echo $this->booking_button($event, 'icon'); ?>
68
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
69
+ <?php do_action('mec_list_modern_style', $event); ?>
70
  </div>
71
  <?php elseif($this->style == 'classic'): ?>
72
  <div class="mec-event-image"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['thumbnail']; ?></a></div>
77
  <div class="mec-event-time mec-color"><?php if($this->include_events_times) {echo '<i class="mec-sl-clock"></i>'; echo $this->main->display_time($start_time, $end_time); } ?></div>
78
  <?php endif; ?>
79
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
80
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
81
  <?php if(isset($location['name'])): ?><div class="mec-event-detail"><div class="mec-event-loc-place"><i class="mec-sl-map-marker"></i> <?php echo (isset($location['name']) ? $location['name'] : ''); ?></div></div><?php endif; ?>
82
  <?php do_action('mec_list_classic_after_location' , $event); ?>
83
+ <?php echo $this->booking_button($event); ?>
84
  <?php elseif($this->style == 'minimal'): ?>
85
  <div class="col-md-9 col-sm-9">
86
  <div class="mec-event-date mec-bg-color"><span><?php echo $this->main->date_i18n($this->date_format_minimal_1, strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n($this->date_format_minimal_2, strtotime($event->date['start']['date'])); ?></div>
87
  <?php if($this->include_events_times) echo $this->main->display_time($start_time, $end_time); ?>
88
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
89
  <div class="mec-event-detail"><?php echo $this->main->date_i18n($this->date_format_minimal_3, strtotime($event->date['start']['date'])); ?><?php echo (isset($location['name']) ? ', <span class="mec-event-loc-place">' . $location['name'] .'</span>' : ''); ?> <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?> </div>
90
+ <?php echo $this->booking_button($event); ?>
91
  </div>
92
  <div class="col-md-3 col-sm-3 btn-wrapper"><?php do_action('before_mec_list_minimal_button',$event); ?><a class="mec-detail-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $this->main->m('event_detail', __('EVENT DETAIL', 'modern-events-calendar-lite')); ?></a></div>
93
  <?php elseif($this->style == 'standard'): ?>
110
  <div class="col-md-6 mec-col-table-c mec-event-content-wrap">
111
  <div class="mec-event-content">
112
  <?php $soldout = $this->main->get_flags($event); ?>
113
+ <h3 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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h3>
114
  <div class="mec-event-description"><?php echo $excerpt.(trim($excerpt) ? ' <span>...</span>' : ''); ?></div>
115
  </div>
116
  </div>
156
  </ul>
157
  <?php endif; ?>
158
  <?php do_action('mec_standard_booking_button' ,$event ); ?>
159
+ <?php echo $this->booking_button($event); ?>
160
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
161
  </div>
162
  <?php elseif($this->style == 'accordion'): ?>
180
  <?php echo $this->main->display_time($start_time, $end_time); ?>
181
  </div>
182
  <h3 class="mec-toggle-title"><?php echo $event->data->title; ?><?php echo $this->main->get_flags($event).$event_color; ?></h3>
183
+ <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?><i class="mec-sl-arrow-down"></i>
184
  </div>
185
  <div class="mec-content-toggle" aria-hidden="true" style="display: none;">
186
  <div class="mec-toggle-content">
app/skins/masonry.php CHANGED
@@ -81,6 +81,8 @@ class MEC_skin_masonry extends MEC_skins
81
  $this->html_class = '';
82
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
83
 
 
 
84
 
85
  // SED Method
86
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
81
  $this->html_class = '';
82
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
83
 
84
+ // Booking Button
85
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
86
 
87
  // SED Method
88
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/masonry/render.php CHANGED
@@ -141,13 +141,14 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
141
  <div class="mec-event-content">
142
  <?php $soldout = $this->main->get_flags($event); ?>
143
  <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
144
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
145
  <div class="mec-event-description mec-events-content">
146
  <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
147
  </div>
148
  </div>
149
  <div class="mec-event-footer">
150
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
 
151
  <?php do_action( 'mec_masonry_button', $event ); ?>
152
  </div>
153
  </div>
141
  <div class="mec-event-content">
142
  <?php $soldout = $this->main->get_flags($event); ?>
143
  <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
144
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
145
  <div class="mec-event-description mec-events-content">
146
  <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
147
  </div>
148
  </div>
149
  <div class="mec-event-footer">
150
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
151
+ <?php echo $this->booking_button($event); ?>
152
  <?php do_action( 'mec_masonry_button', $event ); ?>
153
  </div>
154
  </div>
app/skins/monthly_view.php CHANGED
@@ -71,6 +71,9 @@ class MEC_skin_monthly_view extends MEC_skins
71
  // HTML class
72
  $this->html_class = '';
73
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
74
 
75
  // SED Method
76
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
71
  // HTML class
72
  $this->html_class = '';
73
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
74
+
75
+ // Booking Button
76
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
77
 
78
  // SED Method
79
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/monthly_view/calendar.php CHANGED
@@ -97,9 +97,10 @@ elseif($week_start == 5) // Friday
97
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
98
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
99
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
100
- $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).'</h4>';
101
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
102
- $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
 
103
  $events_str .= '</article>';
104
  }
105
 
97
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
98
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
99
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
100
+ $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID ).'</h4>';
101
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
102
+ $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
103
+ $events_str .= $this->booking_button($event);
104
  $events_str .= '</article>';
105
  }
106
 
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -102,9 +102,10 @@ elseif($week_start == 5) // Friday
102
 
103
  $events_str .= $after_time_filter;
104
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
105
- $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).'</h4>';
106
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
107
  $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
 
108
 
109
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
110
  {
102
 
103
  $events_str .= $after_time_filter;
104
  $event_color = isset($event->data->meta['mec_color'])?'<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>':'';
105
+ $events_str .= '<h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">'.$event->data->title.'</a>'.$this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID ).'</h4>';
106
  if($this->localtime) $events_str .= $this->main->module('local-time.type3', array('event'=>$event));
107
  $events_str .= '<div class="mec-event-detail"><div class="mec-event-loc-place">'.(isset($location['name']) ? $location['name'] : '').'</div></div>';
108
+ $events_str .= $this->booking_button($event);
109
 
110
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
111
  {
app/skins/monthly_view/calendar_novel.php CHANGED
@@ -85,7 +85,7 @@ elseif($week_start == 5) // Friday
85
  do_action('mec_schema', $event);
86
 
87
  echo '<a class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
88
- echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);
89
 
90
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
91
  {
85
  do_action('mec_schema', $event);
86
 
87
  echo '<a class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
88
+ echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID );
89
 
90
  if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != '')
91
  {
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -73,7 +73,7 @@ elseif($week_start == 5) // Friday
73
 
74
  echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
75
  echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">';
76
- echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);
77
  echo '</a>';
78
  echo '</div>';
79
 
@@ -94,6 +94,7 @@ elseif($week_start == 5) // Friday
94
  $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.$this->main->mec_content_html($event->data->content, 320).' , ...</div>' : '';
95
  if($this->localtime) $tooltip_content .= $this->main->module('local-time.type2', array('event'=>$event));
96
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '';
 
97
 
98
  // MEC Schema
99
  do_action('mec_schema', $event);
73
 
74
  echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
75
  echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'">';
76
+ echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation).do_action('mec_shortcode_virtual_badge', $event->data->ID );
77
  echo '</a>';
78
  echo '</div>';
79
 
94
  $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.$this->main->mec_content_html($event->data->content, 320).' , ...</div>' : '';
95
  if($this->localtime) $tooltip_content .= $this->main->module('local-time.type2', array('event'=>$event));
96
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '';
97
+ $tooltip_content .= $this->booking_button($event);
98
 
99
  // MEC Schema
100
  do_action('mec_schema', $event);
app/skins/single/default.php CHANGED
@@ -40,6 +40,8 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
40
  <div class="mec-single-event-description mec-events-content"><?php the_content(); ?></div>
41
  </div>
42
 
 
 
43
  <!-- Custom Data Fields -->
44
  <?php $this->display_data_fields($event); ?>
45
 
@@ -144,6 +146,8 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
144
  <?php
145
  }
146
  ?>
 
 
147
 
148
  <?php
149
  // More Info
@@ -177,6 +181,7 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
177
  }
178
  ?>
179
 
 
180
  <?php
181
  // Event Location
182
  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']]))
@@ -408,6 +413,8 @@ $display_reason = get_post_meta(get_the_ID(), 'mec_display_cancellation_reason_i
408
  }
409
  ?>
410
 
 
 
411
  <?php
412
  // Event Location
413
  if(isset($event->data->locations[$event->data->meta['mec_location_id']]) and !empty($event->data->locations[$event->data->meta['mec_location_id']]) and $single->found_value('event_location', $settings) == 'on')
40
  <div class="mec-single-event-description mec-events-content"><?php the_content(); ?></div>
41
  </div>
42
 
43
+ <?php do_action('mec_single_after_content', $event ); ?>
44
+
45
  <!-- Custom Data Fields -->
46
  <?php $this->display_data_fields($event); ?>
47
 
146
  <?php
147
  }
148
  ?>
149
+
150
+ <?php do_action('mec_single_virtual_badge', $event->data->ID ); ?>
151
 
152
  <?php
153
  // More Info
181
  }
182
  ?>
183
 
184
+
185
  <?php
186
  // Event Location
187
  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']]))
413
  }
414
  ?>
415
 
416
+ <?php do_action('mec_single_virtual_badge', $event->data->ID ); ?>
417
+
418
  <?php
419
  // Event Location
420
  if(isset($event->data->locations[$event->data->meta['mec_location_id']]) and !empty($event->data->locations[$event->data->meta['mec_location_id']]) and $single->found_value('event_location', $settings) == 'on')
app/skins/single/m1.php CHANGED
@@ -157,6 +157,8 @@ $display_reason = get_post_meta($event->data->ID, 'mec_display_cancellation_reas
157
  <?php echo $this->main->module('local-time.details', array('event'=>$event)); ?>
158
 
159
  <div class="mec-event-meta mec-color-before mec-frontbox">
 
 
160
 
161
  <?php
162
  // Event Location
@@ -246,6 +248,8 @@ $display_reason = get_post_meta($event->data->ID, 'mec_display_cancellation_reas
246
  <div class="mec-single-event-description mec-events-content"><?php echo $this->main->get_post_content($event->data->ID); ?></div>
247
  </div>
248
 
 
 
249
  <!-- Custom Data Fields -->
250
  <?php $this->display_data_fields($event); ?>
251
 
157
  <?php echo $this->main->module('local-time.details', array('event'=>$event)); ?>
158
 
159
  <div class="mec-event-meta mec-color-before mec-frontbox">
160
+
161
+ <?php do_action('mec_single_virtual_badge', $event->data->ID ); ?>
162
 
163
  <?php
164
  // Event Location
248
  <div class="mec-single-event-description mec-events-content"><?php echo $this->main->get_post_content($event->data->ID); ?></div>
249
  </div>
250
 
251
+ <?php do_action('mec_single_after_content', $event ); ?>
252
+
253
  <!-- Custom Data Fields -->
254
  <?php $this->display_data_fields($event); ?>
255
 
app/skins/single/m2.php CHANGED
@@ -80,6 +80,8 @@ $display_reason = get_post_meta($event->data->ID, 'mec_display_cancellation_reas
80
  <?php echo $this->main->module('local-time.details', array('event'=>$event)); ?>
81
 
82
  <div class="mec-event-meta mec-color-before mec-frontbox">
 
 
83
 
84
  <?php
85
  // Event Location
@@ -174,6 +176,8 @@ $display_reason = get_post_meta($event->data->ID, 'mec_display_cancellation_reas
174
  </div>
175
  </div>
176
 
 
 
177
  <!-- Custom Data Fields -->
178
  <?php $this->display_data_fields($event); ?>
179
 
80
  <?php echo $this->main->module('local-time.details', array('event'=>$event)); ?>
81
 
82
  <div class="mec-event-meta mec-color-before mec-frontbox">
83
+
84
+ <?php do_action('mec_single_virtual_badge', $event->data->ID ); ?>
85
 
86
  <?php
87
  // Event Location
176
  </div>
177
  </div>
178
 
179
+ <?php do_action('mec_single_after_content', $event ); ?>
180
+
181
  <!-- Custom Data Fields -->
182
  <?php $this->display_data_fields($event); ?>
183
 
app/skins/single/modern.php CHANGED
@@ -30,6 +30,9 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
30
 
31
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?><?php do_action('mec_custom_dev_image_section', $event); ?></div>
32
  <div class="col-md-4<?php if (empty($event->data->thumbnails['full'])) echo ' mec-no-image';?>">
 
 
 
33
  <?php if ( $single->found_value('event_orgnizer', $settings) == 'on' || $single->found_value('register_btn', $settings) == 'on' ) : ?>
34
  <div class="mec-event-meta mec-color-before mec-frontbox <?php echo ((!$this->main->can_show_booking_module($event) and in_array($event->data->meta['mec_organizer_id'], array('0', '1')) and !trim($event->data->meta['mec_more_info'])) ? 'mec-util-hidden' : '') ; ?>">
35
  <?php
@@ -97,7 +100,7 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
97
  <?php if($single->found_value('local_time', $settings) == 'on') echo $this->main->module('local-time.details', array('event'=>$event)); ?>
98
 
99
  <?php if ( $single->found_value('event_location', $settings) == 'on' || $single->found_value('event_categories', $settings) == 'on' || $single->found_value('more_info', $settings) == 'on' ) : ?>
100
- <div class="mec-event-meta mec-color-before mec-frontbox">
101
 
102
  <?php
103
  // Event Location
@@ -266,6 +269,8 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
266
  <div class="mec-single-event-description mec-events-content"><?php the_content(); ?><?php do_action('mec_custom_dev_content_section' , $event); ?></div>
267
  </div>
268
 
 
 
269
  <!-- Custom Data Fields -->
270
  <?php $this->display_data_fields($event); ?>
271
 
30
 
31
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?><?php do_action('mec_custom_dev_image_section', $event); ?></div>
32
  <div class="col-md-4<?php if (empty($event->data->thumbnails['full'])) echo ' mec-no-image';?>">
33
+
34
+ <?php do_action('mec_single_virtual_badge', $event->data->ID ); ?>
35
+
36
  <?php if ( $single->found_value('event_orgnizer', $settings) == 'on' || $single->found_value('register_btn', $settings) == 'on' ) : ?>
37
  <div class="mec-event-meta mec-color-before mec-frontbox <?php echo ((!$this->main->can_show_booking_module($event) and in_array($event->data->meta['mec_organizer_id'], array('0', '1')) and !trim($event->data->meta['mec_more_info'])) ? 'mec-util-hidden' : '') ; ?>">
38
  <?php
100
  <?php if($single->found_value('local_time', $settings) == 'on') echo $this->main->module('local-time.details', array('event'=>$event)); ?>
101
 
102
  <?php if ( $single->found_value('event_location', $settings) == 'on' || $single->found_value('event_categories', $settings) == 'on' || $single->found_value('more_info', $settings) == 'on' ) : ?>
103
+ <div class="mec-event-meta mec-color-before mec-frontbox <?php if (empty($event->data->locations[$event->data->meta['mec_location_id']]) || $single->found_value('event_location', $settings) == '') echo 'mec-util-hidden'; ?>">
104
 
105
  <?php
106
  // Event Location
269
  <div class="mec-single-event-description mec-events-content"><?php the_content(); ?><?php do_action('mec_custom_dev_content_section' , $event); ?></div>
270
  </div>
271
 
272
+ <?php do_action('mec_single_after_content', $event ); ?>
273
+
274
  <!-- Custom Data Fields -->
275
  <?php $this->display_data_fields($event); ?>
276
 
app/skins/slider/render.php CHANGED
@@ -63,7 +63,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
63
  </div>
64
  <div class="mec-event-content">
65
  <?php $soldout = $this->main->get_flags($event); ?>
66
- <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
67
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div></div>
68
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
69
  </div>
@@ -84,7 +84,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
84
  <div class="mec-event-content">
85
  <?php $soldout = $this->main->get_flags($event); ?>
86
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
87
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
88
  <div class="mec-event-detail">
89
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></span>
90
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
@@ -106,7 +106,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
106
  <div class="mec-event-content">
107
  <?php $soldout = $this->main->get_flags($event); ?>
108
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
109
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
110
  <div class="mec-event-detail">
111
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></span>
112
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
@@ -129,7 +129,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
129
  <div class="mec-event-content">
130
  <?php $soldout = $this->main->get_flags($event); ?>
131
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
132
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);?>
133
  <div class="mec-event-detail">
134
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></span>
135
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
@@ -164,7 +164,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
164
  <div class="mec-event-content">
165
  <?php $soldout = $this->main->get_flags($event); ?>
166
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
167
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
168
  <div class="mec-event-description mec-events-content">
169
  <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
170
  </div>
63
  </div>
64
  <div class="mec-event-content">
65
  <?php $soldout = $this->main->get_flags($event); ?>
66
+ <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
67
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></div></div>
68
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
69
  </div>
84
  <div class="mec-event-content">
85
  <?php $soldout = $this->main->get_flags($event); ?>
86
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
87
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
88
  <div class="mec-event-detail">
89
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></span>
90
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
106
  <div class="mec-event-content">
107
  <?php $soldout = $this->main->get_flags($event); ?>
108
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
109
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
110
  <div class="mec-event-detail">
111
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></span>
112
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
129
  <div class="mec-event-content">
130
  <?php $soldout = $this->main->get_flags($event); ?>
131
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
132
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation);?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
133
  <div class="mec-event-detail">
134
  <span class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : '') . (isset($location['address']) ? ' | '.$location['address'] : ''); ?></span>
135
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
164
  <div class="mec-event-content">
165
  <?php $soldout = $this->main->get_flags($event); ?>
166
  <h4 class="mec-event-title"><a class="mec-color-hover" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; ?></h4>
167
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
168
  <div class="mec-event-description mec-events-content">
169
  <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
170
  </div>
app/skins/tile.php CHANGED
@@ -92,6 +92,9 @@ class MEC_skin_tile extends MEC_skins
92
  // HTML class
93
  $this->html_class = '';
94
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
95
 
96
  // SED Method
97
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
92
  // HTML class
93
  $this->html_class = '';
94
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
95
+
96
+ // Booking Button
97
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
98
 
99
  // SED Method
100
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/tile/render.php CHANGED
@@ -70,8 +70,9 @@ $map_events = array();
70
  </div>
71
  <?php endif; ?>
72
  </div>
73
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
74
  <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event); ?></h4>
 
75
  </div>
76
  </article>
77
  <?php
70
  </div>
71
  <?php endif; ?>
72
  </div>
73
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
74
  <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event); ?></h4>
75
+ <?php echo $this->booking_button($event); ?>
76
  </div>
77
  </article>
78
  <?php
app/skins/timeline.php CHANGED
@@ -80,6 +80,9 @@ class MEC_skin_timeline extends MEC_skins
80
  $this->html_class = '';
81
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
82
 
 
 
 
83
  // SED Method
84
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
85
 
80
  $this->html_class = '';
81
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
82
 
83
+ // Booking Button
84
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
85
+
86
  // SED Method
87
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
88
 
app/skins/timeline/render.php CHANGED
@@ -64,7 +64,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
64
  <div class="mec-timeline-main-content">
65
  <?php $soldout = $this->main->get_flags($event); ?>
66
  <h4 class="mec-event-title"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" class="mec-color-hover"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
67
- <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
68
  <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
69
  <div class="mec-timeline-event-details">
70
  <div class="mec-timeline-event-time mec-color">
@@ -88,6 +88,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
88
  <?php
89
  }
90
  endif; ?>
 
91
  </div>
92
  </div>
93
  </div>
64
  <div class="mec-timeline-main-content">
65
  <?php $soldout = $this->main->get_flags($event); ?>
66
  <h4 class="mec-event-title"><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>" class="mec-color-hover"><?php echo $event->data->title; ?></a><?php echo $soldout.$event_color; if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
67
+ <?php echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
68
  <p><?php echo $excerpt.(trim($excerpt) ? ' ...' : ''); ?></p>
69
  <div class="mec-timeline-event-details">
70
  <div class="mec-timeline-event-time mec-color">
88
  <?php
89
  }
90
  endif; ?>
91
+ <?php echo $this->booking_button($event); ?>
92
  </div>
93
  </div>
94
  </div>
app/skins/timetable.php CHANGED
@@ -72,6 +72,9 @@ class MEC_skin_timetable extends MEC_skins
72
  // HTML class
73
  $this->html_class = '';
74
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
75
 
76
  // SED Method
77
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
72
  // HTML class
73
  $this->html_class = '';
74
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
75
+
76
+ // Booking Button
77
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
78
 
79
  // SED Method
80
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/timetable/render.php CHANGED
@@ -138,6 +138,7 @@ else $set_dark = '';
138
  <?php endif; ?>
139
  </div>
140
  <?php if($this->localtime) echo $this->main->module('local-time.type1', array('event'=>$event)); ?>
 
141
  </div>
142
  </article>
143
  <?php endforeach; ?>
138
  <?php endif; ?>
139
  </div>
140
  <?php if($this->localtime) echo $this->main->module('local-time.type1', array('event'=>$event)); ?>
141
+ <?php echo $this->booking_button($event); ?>
142
  </div>
143
  </article>
144
  <?php endforeach; ?>
app/skins/weekly_view.php CHANGED
@@ -62,6 +62,9 @@ class MEC_skin_weekly_view extends MEC_skins
62
  // HTML class
63
  $this->html_class = '';
64
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
65
 
66
  // SED Method
67
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
62
  // HTML class
63
  $this->html_class = '';
64
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
65
+
66
+ // Booking Button
67
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
68
 
69
  // SED Method
70
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/weekly_view/render.php CHANGED
@@ -46,7 +46,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
46
  <div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo $this->main->date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
47
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
48
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
49
- <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?></h4>
50
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
51
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div></div>
52
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
@@ -55,6 +55,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
55
  <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>
56
  </div>
57
  <?php endif; ?>
 
58
  </article>
59
  <?php endforeach; ?>
60
  </li>
46
  <div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo $this->main->date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo $this->main->date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
47
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
48
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
49
+ <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, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event).$event_color.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?></h4>
50
  <?php if($this->localtime) echo $this->main->module('local-time.type3', array('event'=>$event)); ?>
51
  <div class="mec-event-detail"><div class="mec-event-loc-place"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div></div>
52
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
55
  <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>
56
  </div>
57
  <?php endif; ?>
58
+ <?php echo $this->booking_button($event); ?>
59
  </article>
60
  <?php endforeach; ?>
61
  </li>
app/skins/yearly_view.php CHANGED
@@ -80,6 +80,9 @@ class MEC_skin_yearly_view extends MEC_skins
80
  // HTML class
81
  $this->html_class = '';
82
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
 
 
 
83
 
84
  // SED Method
85
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
80
  // HTML class
81
  $this->html_class = '';
82
  if(isset($this->atts['html-class']) and trim($this->atts['html-class']) != '') $this->html_class = $this->atts['html-class'];
83
+
84
+ // Booking Button
85
+ $this->booking_button = isset($this->skin_options['booking_button']) ? (int) $this->skin_options['booking_button'] : 0;
86
 
87
  // SED Method
88
  $this->sed_method = isset($this->skin_options['sed_method']) ? $this->skin_options['sed_method'] : '0';
app/skins/yearly_view/render.php CHANGED
@@ -72,7 +72,8 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
72
  <span class="mec-agenda-event-title">
73
  <a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a>
74
  <?php echo $event_color; ?>
75
- <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?>
 
76
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
77
  </span>
78
  </div>
72
  <span class="mec-agenda-event-title">
73
  <a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a>
74
  <?php echo $event_color; ?>
75
+ <?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; echo $this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event->data->ID, $reason_for_cancellation); ?><?php do_action('mec_shortcode_virtual_badge', $event->data->ID ); ?>
76
+ <?php echo $this->booking_button($event); ?>
77
  <?php if($this->localtime) echo $this->main->module('local-time.type2', array('event'=>$event)); ?>
78
  </span>
79
  </div>
assets/css/frontend.css CHANGED
@@ -2853,6 +2853,354 @@ span.mec-event-title-soldout {
2853
  padding-right: 3px;
2854
  }
2855
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2856
 
2857
  /* MEC Event- Single
2858
  -------------------------- */
@@ -5212,6 +5560,10 @@ address.mec-events-address {
5212
  box-shadow: 0 -1px 30px -2px rgba(0, 0, 0, 0.15) !important;
5213
  }
5214
 
 
 
 
 
5215
  .tooltipster-sidetip .tooltipster-arrow {
5216
  overflow: visible !important;
5217
  }
@@ -5302,6 +5654,7 @@ address.mec-events-address {
5302
  .mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article {
5303
  padding-left: 15px;
5304
  padding-right: 15px;
 
5305
  }
5306
 
5307
  .mec-calendar.mec-calendar-daily .mec-calendar-a-month {
@@ -9852,7 +10205,7 @@ li.mec-no-event-found .mec-event-title {
9852
  body .featherlight .featherlight-content {
9853
  background: transparent;
9854
  overflow: unset;
9855
- z-index: 9999;
9856
  }
9857
 
9858
  body .featherlight .featherlight-close-icon {
@@ -9894,6 +10247,10 @@ body .featherlight .featherlight-close-icon:hover {
9894
  }
9895
 
9896
  @media (max-width: 480px) {
 
 
 
 
9897
  .mec-wrap span.flip-clock-divider {
9898
  width: 7px;
9899
  }
@@ -15547,7 +15904,8 @@ span.mec-event-export-csv:before,
15547
  float: left;
15548
  width: calc(100% - 300px);
15549
  padding-left: 15px;
15550
- padding-right: 15px;
 
15551
  }
15552
 
15553
  .mec-timeline-month-divider {
2853
  padding-right: 3px;
2854
  }
2855
 
2856
+ /* Register Button for Shortcodes + Modal Booking
2857
+ -------------------------- */
2858
+ .mec-booking-modal {
2859
+ background-color: #e6f7ff;
2860
+ }
2861
+
2862
+ .mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before {
2863
+ top: -1px;
2864
+ }
2865
+
2866
+ .mec-modal-booking-button {
2867
+ box-shadow: none;
2868
+ transition: all .21s ease;
2869
+ font-size: 11px;
2870
+ font-weight: 500;
2871
+ letter-spacing: 1px;
2872
+ text-transform: uppercase;
2873
+ background: #fff;
2874
+ color: #767676;
2875
+ border: 1px solid #e8e8e8;
2876
+ padding: 12px 16px;
2877
+ line-height: 37px;
2878
+ height: 38px;
2879
+ margin: 12px 0;
2880
+ }
2881
+
2882
+ .mec-modal-booking-button:hover {
2883
+ background: #191919;
2884
+ color: #fff;
2885
+ border-color: #191919;
2886
+ }
2887
+
2888
+
2889
+ .mec-modal-booking-button.mec-mb-icon i {
2890
+ font-size: 14px;
2891
+ }
2892
+
2893
+ /* Custom Style */
2894
+ .mec-event-list-classic .mec-modal-booking-button {
2895
+ height: 0;
2896
+ line-height: 1;
2897
+ margin: 7px 0 0;
2898
+ display: inline-table;
2899
+ letter-spacing: 0;
2900
+ padding: 12px 14px;
2901
+ }
2902
+
2903
+ .mec-timetable-t2-col .mec-modal-booking-button,
2904
+ .mec-event-container-classic .mec-modal-booking-button,
2905
+ .mec-calendar-events-side .mec-modal-booking-button,
2906
+ .mec-event-grid-minimal .mec-modal-booking-button,
2907
+ .mec-event-list-minimal .mec-modal-booking-button {
2908
+ margin: 0;
2909
+ color: #282828;
2910
+ font-size: 12px;
2911
+ transition: all .5s ease;
2912
+ -webkit-transition: all .5s ease;
2913
+ position: relative;
2914
+ padding: 0 0 0 24px;
2915
+ background: 0 0;
2916
+ text-align: left;
2917
+ display: inline;
2918
+ border: 0;
2919
+ font-weight: 700;
2920
+ }
2921
+
2922
+ .mec-timetable-t2-col .mec-modal-booking-button {
2923
+ color: #fff;
2924
+ padding-left: 19px;
2925
+ }
2926
+
2927
+ .mec-timetable-t2-col .mec-modal-booking-button:hover {
2928
+ color: #282828;
2929
+ }
2930
+
2931
+ .mec-event-list-minimal .mec-modal-booking-button {
2932
+ margin: 0 4px 0 84px;
2933
+ }
2934
+
2935
+ .mec-event-container-classic .mec-modal-booking-button:before,
2936
+ .mec-calendar-events-side .mec-modal-booking-button:before,
2937
+ .mec-event-grid-minimal .mec-modal-booking-button:before,
2938
+ .mec-event-list-minimal .mec-modal-booking-button:before {
2939
+ content: '';
2940
+ position: absolute;
2941
+ background: #7a7272;
2942
+ width: 18px;
2943
+ height: 1px;
2944
+ left: 0;
2945
+ top: 45%;
2946
+ transition: all .1s ease;
2947
+ -webkit-transition: all .1s ease;
2948
+ }
2949
+
2950
+ .mec-skin-carousel-container .mec-modal-booking-button {
2951
+ line-height: 70px;
2952
+ }
2953
+
2954
+ .mec-event-list-modern .mec-modal-booking-button.mec-mb-icon {
2955
+ border-radius: 1px;
2956
+ letter-spacing: 2px;
2957
+ border: 1px solid #e6e6e6;
2958
+ color: #333;
2959
+ background-color: #fff;
2960
+ padding: 13px 12px 13px 14px;
2961
+ font-weight: 700;
2962
+ box-shadow: 0 2px 0 0 rgba(0,0,0,.016);
2963
+ transition: all .28s ease;
2964
+ line-height: unset;
2965
+ }
2966
+
2967
+ .mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover {
2968
+ border-color: #222;
2969
+ background: #222;
2970
+ color: #fff;
2971
+ }
2972
+
2973
+ .mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button,
2974
+ .mec-event-footer .mec-modal-booking-button {
2975
+ position: absolute;
2976
+ top: 20px;
2977
+ right: 125px;
2978
+ margin: 0;
2979
+ padding: 0 16px;
2980
+ line-height: 37px;
2981
+ }
2982
+
2983
+ .mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button {
2984
+ top: 0;
2985
+ line-height: 41px;
2986
+ height: 41px;
2987
+ right: 121px;
2988
+ }
2989
+
2990
+ .mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button {
2991
+ line-height: 18px;
2992
+ font-size: 12px;
2993
+ letter-spacing: 0;
2994
+ float: right;
2995
+ height: 41px;
2996
+ margin: 0 12px 0 0;
2997
+ }
2998
+
2999
+ .mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button {
3000
+ color: #fff;
3001
+ background-color: #191919;
3002
+ border: 2px #191919 solid;
3003
+ padding: 10px 14px;
3004
+ letter-spacing: 1.5px;
3005
+ font-size: 11px;
3006
+ font-weight: 700;
3007
+ font-style: normal;
3008
+ transition: all .22s ease;
3009
+ text-decoration: none;
3010
+ margin: 0 0 0 12px;
3011
+ }
3012
+
3013
+ .mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover {
3014
+ color: #191919;
3015
+ background-color: #fff;
3016
+ border: 2px #fff solid;
3017
+ }
3018
+
3019
+ .mec-event-grid-modern .mec-event-footer .mec-modal-booking-button {
3020
+ right: auto;
3021
+ left: 110px;
3022
+ }
3023
+
3024
+ .mec-events-agenda .mec-modal-booking-button,
3025
+ .mec-event-grid-simple .mec-modal-booking-button {
3026
+ margin: 0;
3027
+ font-size: 12px;
3028
+ transition: all .5s ease;
3029
+ -webkit-transition: all .5s ease;
3030
+ position: relative;
3031
+ padding: 0;
3032
+ background: 0 0;
3033
+ text-align: left;
3034
+ display: inline;
3035
+ border: 0;
3036
+ font-weight: 700;
3037
+ }
3038
+
3039
+ .mec-events-agenda .mec-modal-booking-button {
3040
+ display: block;
3041
+ height: unset;
3042
+ padding-left: 173px;
3043
+ line-height: 14px;
3044
+ margin-bottom: 7px;
3045
+ }
3046
+
3047
+ .mec-yearly-view-wrap .mec-modal-booking-button {
3048
+ margin: 0;
3049
+ padding-left: 14px;
3050
+ text-transform: capitalize;
3051
+ }
3052
+
3053
+ .mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon {
3054
+ right: auto;
3055
+ left: 238px;
3056
+ width: 36px;
3057
+ height: 36px;
3058
+ display: table-cell;
3059
+ vertical-align: middle;
3060
+ padding: 0 10px;
3061
+ border-color: rgba(255,255,255,.1);
3062
+ background-color: rgba(0,0,0,0);
3063
+ color: #fff;
3064
+ border-radius: 36px;
3065
+ }
3066
+
3067
+ .mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover {
3068
+ background-color: rgba(255,255,255,.1);
3069
+ }
3070
+
3071
+ .mec-events-yearlu .mec-modal-booking-button:hover,
3072
+ .mec-events-agenda .mec-modal-booking-button:hover,
3073
+ .mec-event-grid-simple .mec-modal-booking-button:hover {
3074
+ color: #191919;
3075
+ }
3076
+
3077
+ .mec-event-masonry .mec-event-footer .mec-modal-booking-button {
3078
+ font-size: 12px;
3079
+ padding: 0 31px;
3080
+ line-height: 49px;
3081
+ height: 50px;
3082
+ top: 0;
3083
+ box-shadow: 0 5px 11px -3px rgba(0,0,0,.05);
3084
+ right: auto;
3085
+ left: 155px;
3086
+ }
3087
+
3088
+ .mec-timeline-event .mec-modal-booking-button {
3089
+ position: absolute;
3090
+ top: 0;
3091
+ right: 0;
3092
+ display: inline-block;
3093
+ padding: 7px 20px 7px;
3094
+ line-height: 22px;
3095
+ height: unset;
3096
+ border: unset;
3097
+ text-transform: capitalize;
3098
+ font-weight: 500;
3099
+ font-size: 13px;
3100
+ letter-spacing: 0;
3101
+ margin: 0;
3102
+ border-radius: 0 0 0 10px;
3103
+ }
3104
+
3105
+ .mec-timeline-event .mec-modal-booking-button:hover {
3106
+ background: #191919;
3107
+ color: #fff;
3108
+ }
3109
+
3110
+ .mec-skin-daily-view-events-container .mec-modal-booking-button,
3111
+ .mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button {
3112
+ position: absolute;
3113
+ top: 50%;
3114
+ transform: translateY(-50%);
3115
+ right: 15px;
3116
+ line-height: 26px;
3117
+ height: 49px;
3118
+ border: unset;
3119
+ text-align: center;
3120
+ display: inline-block;
3121
+ background: #ededed;
3122
+ color: #191919;
3123
+ padding: 12px;
3124
+ border-radius: 2px;
3125
+ font-size: 11px;
3126
+ font-weight: 700;
3127
+ text-transform: uppercase;
3128
+ letter-spacing: 2px;
3129
+ transition: all .24s ease;
3130
+ margin: 0;
3131
+ }
3132
+ .mec-skin-daily-view-events-container .mec-modal-booking-button:hover,
3133
+ .mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover {
3134
+ background: #292929;
3135
+ color: #fff;
3136
+ }
3137
+
3138
+ @media(max-width: 1023px) {
3139
+ .mec-skin-daily-view-events-container .mec-modal-booking-button,
3140
+ .mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button {
3141
+ position: relative;
3142
+ top: unset;
3143
+ transform: unset;
3144
+ margin: 14px 16px 0;
3145
+ padding: 8px;
3146
+ line-height: 20px;
3147
+ height: 35px;
3148
+ }
3149
+ }
3150
+
3151
+ @media(max-width:768px) {
3152
+ .featherlight .featherlight-inner {
3153
+ width: 100%;
3154
+ }
3155
+
3156
+ .mec-events-agenda .mec-modal-booking-button {
3157
+ padding: 0;
3158
+ }
3159
+ }
3160
+
3161
+ @media(max-width:480px) {
3162
+ .mec-booking-modal .mec-events-meta-group-booking-shortcode {
3163
+ padding: 20px;
3164
+ }
3165
+
3166
+ .mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name,
3167
+ .mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email {
3168
+ width: 100%;
3169
+ }
3170
+
3171
+ .mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2 {
3172
+ margin-left: 20px;
3173
+ }
3174
+
3175
+ .mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit] {
3176
+ bottom: 22px;
3177
+ }
3178
+
3179
+ .mec-calendar-events-side .mec-modal-booking-button:before,
3180
+ .mec-event-container-classic .mec-modal-booking-button:before,
3181
+ .mec-event-grid-minimal .mec-modal-booking-button:before,
3182
+ .mec-event-list-minimal .mec-modal-booking-button:before {
3183
+ display: none;
3184
+ }
3185
+
3186
+ .mec-calendar-events-side .mec-modal-booking-button,
3187
+ .mec-event-container-classic .mec-modal-booking-button,
3188
+ .mec-event-grid-minimal .mec-modal-booking-button,
3189
+ .mec-event-list-minimal .mec-modal-booking-button,
3190
+ .mec-timetable-t2-col .mec-modal-booking-button {
3191
+ margin: 0;
3192
+ padding: 0;
3193
+ }
3194
+
3195
+ .mec-event-grid-modern .mec-event-footer .mec-booking-button {
3196
+ top: 20px;
3197
+ }
3198
+
3199
+
3200
+
3201
+
3202
+
3203
+ }
3204
 
3205
  /* MEC Event- Single
3206
  -------------------------- */
5560
  box-shadow: 0 -1px 30px -2px rgba(0, 0, 0, 0.15) !important;
5561
  }
5562
 
5563
+ .tooltipster-box .mec-tooltip-event-desc {
5564
+ margin-bottom: 12px;
5565
+ }
5566
+
5567
  .tooltipster-sidetip .tooltipster-arrow {
5568
  overflow: visible !important;
5569
  }
5654
  .mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article {
5655
  padding-left: 15px;
5656
  padding-right: 15px;
5657
+ position: relative;
5658
  }
5659
 
5660
  .mec-calendar.mec-calendar-daily .mec-calendar-a-month {
10205
  body .featherlight .featherlight-content {
10206
  background: transparent;
10207
  overflow: unset;
10208
+ z-index: 9999;
10209
  }
10210
 
10211
  body .featherlight .featherlight-close-icon {
10247
  }
10248
 
10249
  @media (max-width: 480px) {
10250
+ body .featherlight .featherlight-content {
10251
+ width: 95%;
10252
+ }
10253
+
10254
  .mec-wrap span.flip-clock-divider {
10255
  width: 7px;
10256
  }
15904
  float: left;
15905
  width: calc(100% - 300px);
15906
  padding-left: 15px;
15907
+ padding-right: 15px;
15908
+ position: relative;
15909
  }
15910
 
15911
  .mec-timeline-month-divider {
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!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 li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .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}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.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-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-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!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{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:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-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 .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.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 #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight .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%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height: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-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-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-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal{margin-top:0}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#d2d2d2}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{margin-bottom:-20px;font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:20px 0 0;padding:10px 15px;border-radius:3px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}
1
+ .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!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 li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .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}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.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-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:'';position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media(max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media(max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media(max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-booking .mec-book-bfixed-fields-container{padding-left:15px}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-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!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{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:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.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 #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media(max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media(max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px;margin-bottom:20px}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height: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-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-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-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal{margin-top:0}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e3e3e3;padding-bottom:7px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#d2d2d2}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-slider-t2 .mec-event-article{background:#1f1f1f!important;border:1px solid #353535!important;box-shadow:none!important;color:#d2d2d2!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{margin-bottom:-20px;font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff;margin:20px 0 0;padding:10px 15px;border-radius:3px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:'';display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}
changelog.txt CHANGED
@@ -1,4 +1,16 @@
1
- v 5.8.015 July 2020
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: Booking shortcode to include booking module for certain events into any WP page / posts (pro)
3
  - Added: A new system to don’t re-import Google Calendar events when they’re modified in the website
4
  - Refactored: The midnight and multiple day events
1
+ v 5.8.521 July 2020
2
+ - Added: Booking button to all skins and ability to open the booking button in modal window (pro)
3
+ - Added: An ability to change subject and content of notifications per event (pro)
4
+ - Added: %%book_datetime%% placeholder to show book date and time together (pro)
5
+ - Improved: The %%book_date%% and %%book_time%% placeholders (pro)
6
+ - Hide: Subtotal in WooCommerce checkout for orders created by MEC (pro)
7
+ - Fixed: Number of attendees in added bookings from backend (pro)
8
+ - Fixed: Showing times of same day events in some situations
9
+ - Fixed: Expired events and “Show only one Occurrence option”
10
+ - Fixed: Showing an invalid sold out label (pro)
11
+ - Fixed: SEO Schema
12
+
13
+ v 5.8.0 – 15 July 2020
14
  - Added: Booking shortcode to include booking module for certain events into any WP page / posts (pro)
15
  - Added: A new system to don’t re-import Google Calendar events when they’re modified in the website
16
  - Refactored: The midnight and multiple day events
languages/modern-events-calendar-lite-cs_CZ.mo CHANGED
Binary file
languages/modern-events-calendar-lite-cs_CZ.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
- "POT-Creation-Date: 2020-07-15 12:35+0430\n"
5
- "PO-Revision-Date: 2020-07-15 12:35+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -23,7 +23,7 @@ msgstr ""
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.php:1123 app/features/mec.php:1153
27
  #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
28
  msgid "Modern Events Calendar"
29
  msgstr "Moderní kalendář událostí"
@@ -93,12 +93,12 @@ msgstr "Barva události"
93
  #: app/features/contextual.php:55 app/features/mec.php:473
94
  #: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
95
  #: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
96
- #: app/libraries/main.php:605
97
  msgid "Settings"
98
  msgstr "Nastavení"
99
 
100
- #: app/features/contextual.php:62 app/features/events.php:1558
101
- #: app/features/events.php:2373 app/features/mec/booking.php:524
102
  #: app/features/mec/support.php:29 app/libraries/main.php:564
103
  msgid "Booking Form"
104
  msgstr "Rezervační formulář"
@@ -142,8 +142,9 @@ msgstr ""
142
  "\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
143
  "allowfullscreen></iframe>"
144
 
145
- #: app/features/contextual.php:77 app/features/mec/support-page.php:117
146
- #: app/features/mec/support.php:45 app/libraries/main.php:753
 
147
  msgid "Notifications"
148
  msgstr "Upozornění"
149
 
@@ -284,7 +285,7 @@ msgstr "Výjimečné dny"
284
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:33
285
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
286
  #: app/libraries/main.php:559 app/libraries/main.php:588
287
- #: app/libraries/main.php:670
288
  msgid "Booking"
289
  msgstr "Rezervace"
290
 
@@ -307,7 +308,7 @@ msgstr "Integrace Mailchimp"
307
  msgid "MEC Activation"
308
  msgstr "Aktivace MEC"
309
 
310
- #: app/features/dlfile.php:121 app/features/events.php:1563
311
  #: app/features/mec/booking.php:268 app/features/mec/settings.php:811
312
  #, fuzzy
313
  #| msgid "Download ICS file"
@@ -354,9 +355,9 @@ msgid "Events"
354
  msgstr "Události"
355
 
356
  #: app/features/events.php:168 app/features/fes.php:233
357
- #: app/features/mec/meta_boxes/display_options.php:1513
358
- #: app/features/mec/meta_boxes/display_options.php:1607
359
- #: app/features/mec/meta_boxes/display_options.php:1680
360
  #: app/features/profile/profile.php:55 app/skins/daily_view/tpl.php:80
361
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:81
362
  #: app/skins/yearly_view/tpl.php:69
@@ -394,8 +395,8 @@ msgstr "Zobrazit událost"
394
  msgid "No events found in Trash!"
395
  msgstr "V koši nebyly nalezeny žádné události!"
396
 
397
- #: app/features/events.php:192 app/features/events.php:3437
398
- #: app/features/mec/meta_boxes/display_options.php:1386
399
  #: app/features/mec/meta_boxes/search_form.php:31
400
  #: app/features/mec/meta_boxes/search_form.php:101
401
  #: app/features/mec/meta_boxes/search_form.php:171
@@ -408,19 +409,19 @@ msgstr "V koši nebyly nalezeny žádné události!"
408
  #: app/features/mec/meta_boxes/search_form.php:654
409
  #: app/features/mec/meta_boxes/search_form.php:760
410
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
411
- #: app/features/search.php:68 app/libraries/main.php:5860
412
- #: app/libraries/main.php:5908 app/libraries/skins.php:928
413
- #: app/skins/single.php:854 app/skins/single/default.php:215
414
- #: app/skins/single/default.php:446 app/skins/single/m1.php:195
415
- #: app/skins/single/m2.php:118 app/skins/single/modern.php:137
416
  msgid "Category"
417
  msgstr "Kategorie"
418
 
419
- #: app/features/events.php:193 app/features/events.php:3392
420
  #: app/features/fes/form.php:822 app/features/mec.php:461
421
  #: app/features/mec/meta_boxes/filter.php:69
422
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5859
423
- #: app/libraries/main.php:5907
424
  msgid "Categories"
425
  msgstr "Kategorie"
426
 
@@ -508,13 +509,13 @@ msgstr "Datum a čas"
508
  msgid "Event Repeating"
509
  msgstr "Opakování události"
510
 
511
- #: app/features/events.php:344 app/features/events.php:1121
512
  #, fuzzy
513
  #| msgid "Event Detail"
514
  msgid "Event Data"
515
  msgstr "Zobrazit událost"
516
 
517
- #: app/features/events.php:346 app/features/events.php:1303
518
  #: app/features/mec/settings.php:769 app/skins/single.php:1247
519
  msgid "Hourly Schedule"
520
  msgstr "Hodinový rozvrh"
@@ -531,10 +532,10 @@ msgstr "Umístění"
531
  msgid "Links"
532
  msgstr "Odkaz"
533
 
534
- #: app/features/events.php:349 app/features/events.php:3439
535
- #: app/features/events.php:3630 app/features/events.php:3672
536
  #: app/features/ix.php:3513 app/features/ix.php:3554
537
- #: app/features/mec/meta_boxes/display_options.php:1389
538
  #: app/features/mec/meta_boxes/search_form.php:46
539
  #: app/features/mec/meta_boxes/search_form.php:116
540
  #: app/features/mec/meta_boxes/search_form.php:186
@@ -551,19 +552,19 @@ msgstr "Odkaz"
551
  #: app/features/organizers.php:260 app/features/organizers.php:262
552
  #: app/features/organizers.php:271 app/features/popup/event.php:163
553
  #: app/features/popup/event.php:172 app/features/search.php:80
554
- #: app/libraries/main.php:5866 app/libraries/main.php:5914
555
- #: app/libraries/skins.php:980 app/skins/single.php:1102
556
- #: app/skins/single/default.php:240 app/skins/single/default.php:471
557
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
558
- #: app/skins/single/modern.php:45
559
  msgid "Organizer"
560
  msgstr "Organizátor"
561
 
562
- #: app/features/events.php:350 app/features/events.php:1108
563
- #: app/features/fes/form.php:793 app/libraries/main.php:5893
564
- #: app/libraries/main.php:5940 app/skins/single.php:880
565
- #: app/skins/single/default.php:141 app/skins/single/default.php:372
566
- #: app/skins/single/m1.php:62 app/skins/single/modern.php:234
567
  msgid "Cost"
568
  msgstr "Cena"
569
 
@@ -573,101 +574,101 @@ msgstr "Cena"
573
  msgid "SEO Schema / Event Status"
574
  msgstr "Při spuštění události"
575
 
576
- #: app/features/events.php:482
577
  msgid "Note for reviewer"
578
  msgstr "Poznámka pro recenzenta"
579
 
580
- #: app/features/events.php:488
581
  msgid "Guest Data"
582
  msgstr "Údaje hosta"
583
 
584
- #: app/features/events.php:489 app/features/events.php:2359
585
- #: app/features/events.php:3969 app/features/fes.php:233
586
  #: app/features/fes/form.php:752 app/features/labels.php:178
587
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
588
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
589
- #: app/libraries/notifications.php:1184 app/modules/booking/steps/form.php:48
590
  msgid "Name"
591
  msgstr "Jméno"
592
 
593
- #: app/features/events.php:490 app/features/events.php:2368
594
- #: app/features/events.php:2430 app/features/events.php:2519
595
- #: app/features/events.php:3972 app/features/fes.php:233
596
  #: app/features/fes/form.php:748 app/features/login/login.php:5
597
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:562
598
  #: app/features/mec/booking.php:658 app/features/mec/single.php:183
599
  #: app/features/organizers.php:111 app/features/organizers.php:152
600
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
601
- #: app/features/speakers.php:196 app/libraries/main.php:1717
602
- #: app/libraries/main.php:1786 app/libraries/main.php:3120
603
- #: app/libraries/notifications.php:1185 app/modules/booking/steps/form.php:57
604
  #: app/modules/booking/steps/form.php:157 app/skins/single.php:1119
605
- #: app/skins/single.php:1178 app/skins/single/default.php:257
606
- #: app/skins/single/default.php:488 app/skins/single/m1.php:120
607
- #: app/skins/single/m2.php:43 app/skins/single/modern.php:62
608
  msgid "Email"
609
  msgstr "Email"
610
 
611
- #: app/features/events.php:498 app/features/fes/form.php:265
612
  msgid "Date and Time"
613
  msgstr "Datum a čas"
614
 
615
- #: app/features/events.php:501 app/features/events.php:505
616
- #: app/features/events.php:3440 app/features/events.php:3630
617
- #: app/features/events.php:3672 app/features/fes/form.php:269
618
  #: app/features/fes/form.php:273 app/features/ix.php:3513
619
  #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:38
620
- #: app/features/mec.php:1306 app/features/mec/meta_boxes/display_options.php:51
621
- #: app/features/mec/meta_boxes/display_options.php:279
622
- #: app/features/mec/meta_boxes/display_options.php:518
623
- #: app/features/mec/meta_boxes/display_options.php:624
624
- #: app/features/mec/meta_boxes/display_options.php:826
625
- #: app/features/mec/meta_boxes/display_options.php:918
626
- #: app/features/mec/meta_boxes/display_options.php:1002
627
- #: app/features/mec/meta_boxes/display_options.php:1047
628
- #: app/features/mec/meta_boxes/display_options.php:1120
629
- #: app/features/mec/meta_boxes/display_options.php:1205
630
- #: app/features/mec/meta_boxes/display_options.php:1341
631
- #: app/features/mec/meta_boxes/display_options.php:1741
632
- #: app/features/mec/meta_boxes/display_options.php:1870
633
- #: app/features/mec/meta_boxes/display_options.php:1999
634
- #: app/features/mec/meta_boxes/display_options.php:2103
635
  #: app/features/popup/event.php:76
636
  msgid "Start Date"
637
  msgstr "Počátečná den"
638
 
639
- #: app/features/events.php:520 app/features/events.php:524
640
- #: app/features/events.php:3441 app/features/events.php:3630
641
- #: app/features/events.php:3672 app/features/fes/form.php:288
642
  #: app/features/fes/form.php:292 app/features/ix.php:3513
643
  #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:44
644
- #: app/features/mec.php:1307 app/features/popup/event.php:92
645
  msgid "End Date"
646
  msgstr "Konečný den"
647
 
648
- #: app/features/events.php:547 app/features/fes/form.php:306
649
  #: app/features/popup/event.php:109
650
  #, fuzzy
651
  #| msgid "All Day Event"
652
  msgid "All-day Event"
653
  msgstr "Celodenní událost"
654
 
655
- #: app/features/events.php:557 app/features/fes/form.php:309
656
  msgid "Hide Event Time"
657
  msgstr "Skrýt čas události"
658
 
659
- #: app/features/events.php:567 app/features/fes/form.php:312
660
  msgid "Hide Event End Time"
661
  msgstr "Skrýt čas ukončení události"
662
 
663
- #: app/features/events.php:572 app/features/events.php:576
664
  #: app/features/fes/form.php:316
665
  #, fuzzy
666
  #| msgid "Note to reviewer"
667
  msgid "Notes on the time"
668
  msgstr "Poznámka pro recenzenta"
669
 
670
- #: app/features/events.php:577 app/features/fes/form.php:317
671
  #, fuzzy
672
  #| msgid ""
673
  #| "It shows next to event time on single event page. You can insert Timezone "
@@ -679,14 +680,14 @@ msgstr ""
679
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
680
  "můžete vložit časové pásmo atd."
681
 
682
- #: app/features/events.php:579 app/features/events.php:718
683
- #: app/features/events.php:1071 app/features/events.php:1220
684
- #: app/features/events.php:1528 app/features/events.php:1621
685
- #: app/features/events.php:1765 app/features/events.php:1780
686
- #: app/features/events.php:1946 app/features/events.php:1959
687
- #: app/features/events.php:2110 app/features/events.php:2146
688
- #: app/features/events.php:2244 app/features/events.php:2259
689
- #: app/features/events.php:2289 app/features/events.php:2302
690
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
691
  #: app/features/locations.php:334 app/features/mec/booking.php:116
692
  #: app/features/mec/booking.php:182 app/features/mec/booking.php:195
@@ -700,44 +701,44 @@ msgstr ""
700
  #: app/features/mec/meta_boxes/display_options.php:108
701
  #: app/features/mec/meta_boxes/display_options.php:119
702
  #: app/features/mec/meta_boxes/display_options.php:131
703
- #: app/features/mec/meta_boxes/display_options.php:310
704
- #: app/features/mec/meta_boxes/display_options.php:322
705
- #: app/features/mec/meta_boxes/display_options.php:334
706
- #: app/features/mec/meta_boxes/display_options.php:347
707
- #: app/features/mec/meta_boxes/display_options.php:358
708
- #: app/features/mec/meta_boxes/display_options.php:371
709
- #: app/features/mec/meta_boxes/display_options.php:382
710
- #: app/features/mec/meta_boxes/display_options.php:550
711
- #: app/features/mec/meta_boxes/display_options.php:843
712
- #: app/features/mec/meta_boxes/display_options.php:1373
713
- #: app/features/mec/meta_boxes/display_options.php:1484
714
- #: app/features/mec/meta_boxes/display_options.php:1496
715
- #: app/features/mec/meta_boxes/display_options.php:1507
716
- #: app/features/mec/meta_boxes/display_options.php:1577
717
- #: app/features/mec/meta_boxes/display_options.php:1588
718
- #: app/features/mec/meta_boxes/display_options.php:1601
719
- #: app/features/mec/meta_boxes/display_options.php:1674
720
- #: app/features/mec/meta_boxes/display_options.php:1761
721
- #: app/features/mec/meta_boxes/display_options.php:1772
722
- #: app/features/mec/meta_boxes/display_options.php:1783
723
- #: app/features/mec/meta_boxes/display_options.php:1890
724
- #: app/features/mec/meta_boxes/display_options.php:1903
725
- #: app/features/mec/meta_boxes/display_options.php:1916
726
- #: app/features/mec/meta_boxes/display_options.php:1929
727
- #: app/features/mec/meta_boxes/display_options.php:1942
728
- #: app/features/mec/meta_boxes/display_options.php:2030
729
- #: app/features/mec/meta_boxes/display_options.php:2120
730
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
731
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
732
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
733
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:191
734
- #: app/features/mec/notifications.php:299
735
- #: app/features/mec/notifications.php:412
736
- #: app/features/mec/notifications.php:527
737
- #: app/features/mec/notifications.php:637
738
- #: app/features/mec/notifications.php:648
739
- #: app/features/mec/notifications.php:762
740
- #: app/features/mec/notifications.php:845 app/features/mec/settings.php:67
741
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
742
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
743
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
@@ -755,81 +756,81 @@ msgstr ""
755
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
756
  #: app/features/organizers.php:272 app/features/popup/event.php:126
757
  #: app/features/popup/event.php:173 app/skins/single.php:965
758
- #: app/skins/single/default.php:156 app/skins/single/default.php:387
759
- #: app/skins/single/m1.php:217 app/skins/single/m2.php:141
760
- #: app/skins/single/modern.php:160
761
  msgid "Read More"
762
  msgstr "Číst více"
763
 
764
- #: app/features/events.php:587
765
  msgid "Repeating"
766
  msgstr "Opakování"
767
 
768
- #: app/features/events.php:596
769
  msgid "Event Repeating (Recurring events)"
770
  msgstr "Opakování události (opakující se události)"
771
 
772
- #: app/features/events.php:600 app/features/fes/form.php:327
773
  msgid "Repeats"
774
  msgstr "Opakování"
775
 
776
- #: app/features/events.php:608 app/features/fes/form.php:329
777
- #: app/features/mec.php:1309 app/skins/default_full_calendar/tpl.php:74
778
  #: app/skins/full_calendar/tpl.php:121
779
  msgid "Daily"
780
  msgstr "Děnně"
781
 
782
- #: app/features/events.php:615 app/features/fes/form.php:330
783
  msgid "Every Weekday"
784
  msgstr "Každý všední den"
785
 
786
- #: app/features/events.php:622 app/features/fes/form.php:331
787
  msgid "Every Weekend"
788
  msgstr "Každý víkend"
789
 
790
- #: app/features/events.php:629 app/features/fes/form.php:332
791
  msgid "Certain Weekdays"
792
  msgstr "Určité pracovní dny"
793
 
794
- #: app/features/events.php:636 app/features/fes/form.php:333
795
  #: app/skins/default_full_calendar/tpl.php:73
796
  #: app/skins/full_calendar/tpl.php:120
797
  msgid "Weekly"
798
  msgstr "Týdně"
799
 
800
- #: app/features/events.php:643 app/features/fes/form.php:334
801
- #: app/features/mec.php:1310 app/skins/default_full_calendar/tpl.php:72
802
  #: app/skins/full_calendar/tpl.php:119
803
  msgid "Monthly"
804
  msgstr "Měsíčně"
805
 
806
- #: app/features/events.php:650 app/features/fes/form.php:335
807
- #: app/features/mec.php:1311 app/skins/default_full_calendar/tpl.php:71
808
  #: app/skins/full_calendar/tpl.php:118
809
  msgid "Yearly"
810
  msgstr "Ročně"
811
 
812
- #: app/features/events.php:657 app/features/fes/form.php:336
813
  msgid "Custom Days"
814
  msgstr "Vlastní dny"
815
 
816
- #: app/features/events.php:664 app/features/fes/form.php:337
817
  msgid "Advanced"
818
  msgstr "Pokročilé"
819
 
820
- #: app/features/events.php:669 app/features/fes/form.php:341
821
  msgid "Repeat Interval"
822
  msgstr "Interval opakování"
823
 
824
- #: app/features/events.php:671 app/features/fes/form.php:342
825
  msgid "Repeat interval"
826
  msgstr "Interval opakování"
827
 
828
- #: app/features/events.php:675 app/features/fes/form.php:345
829
  msgid "Week Days"
830
  msgstr "Dny v týdnu"
831
 
832
- #: app/features/events.php:692
833
  #, fuzzy
834
  #| msgid "Pro version of Modern Events Calendar"
835
  msgid ""
@@ -837,27 +838,27 @@ msgid ""
837
  "Calendar."
838
  msgstr "Pro verze doplňku Modern Events Calendar"
839
 
840
- #: app/features/events.php:698 app/features/events.php:1848
841
- #: app/features/events.php:1876 app/features/events.php:2014
842
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
843
  #: app/features/ix/import_g_calendar.php:51
844
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
845
  msgid "Start"
846
  msgstr "Začátek"
847
 
848
- #: app/features/events.php:711 app/features/events.php:1214
849
- #: app/features/events.php:1334 app/features/events.php:1439
850
- #: app/features/events.php:1832 app/features/events.php:2003
851
- #: app/features/events.php:2083 app/features/events.php:2216
852
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
853
  msgid "Add"
854
  msgstr "Přidat"
855
 
856
- #: app/features/events.php:714 app/features/fes/form.php:392
857
  msgid "Custom Days Repeating"
858
  msgstr "Opakování vlastních dnů"
859
 
860
- #: app/features/events.php:717 app/features/fes/form.php:395
861
  #, fuzzy
862
  #| msgid ""
863
  #| "Add certain days to event occurrence dates. If you have single day event, "
@@ -872,55 +873,55 @@ msgstr ""
872
  "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
873
  "datum zahájení a ukončení musí odpovídat počátečnímu datu."
874
 
875
- #: app/features/events.php:728 app/features/events.php:1852
876
- #: app/features/events.php:1880 app/features/events.php:2018
877
  #: app/features/fes/form.php:374
878
  msgid "End"
879
  msgstr "Konec"
880
 
881
- #: app/features/events.php:805 app/features/fes/form.php:468
882
  msgid "First"
883
  msgstr "První"
884
 
885
- #: app/features/events.php:847 app/features/fes/form.php:510
886
  msgid "Second"
887
  msgstr "Druhá"
888
 
889
- #: app/features/events.php:889 app/features/fes/form.php:552
890
  msgid "Third"
891
  msgstr "Třetí"
892
 
893
- #: app/features/events.php:931 app/features/fes/form.php:594
894
  msgid "Fourth"
895
  msgstr "Čtvrtá"
896
 
897
- #: app/features/events.php:973 app/features/fes/form.php:636
898
  msgid "Last"
899
  msgstr "Poslední"
900
 
901
- #: app/features/events.php:1020 app/features/fes/form.php:682
902
  msgid "Ends Repeat"
903
  msgstr "Ukončení opakování"
904
 
905
- #: app/features/events.php:1032 app/features/fes/form.php:686
906
  msgid "Never"
907
  msgstr "Nikdy"
908
 
909
  # Možná Zapnuto
910
- #: app/features/events.php:1044 app/features/fes/form.php:691
911
  msgid "On"
912
  msgstr "Na"
913
 
914
- #: app/features/events.php:1060 app/features/fes/form.php:698
915
  msgid "After"
916
  msgstr "Po"
917
 
918
- #: app/features/events.php:1064 app/features/events.php:1068
919
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
920
  msgid "Occurrences times"
921
  msgstr "Časy výskytu"
922
 
923
- #: app/features/events.php:1069
924
  #, fuzzy
925
  #| msgid ""
926
  #| "The event will finish after certain repeats. For example if you set it to "
@@ -932,40 +933,40 @@ msgstr ""
932
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
933
  "hodnotu 10, událost skončí po 10 opakováních."
934
 
935
- #: app/features/events.php:1084 app/features/fes/form.php:717
936
  #, fuzzy
937
  #| msgid "Next Occurrence of Other Events"
938
  msgid "Show only one occurrence of this event"
939
  msgstr "Další výskyt dalších událostí"
940
 
941
- #: app/features/events.php:1104 app/features/events.php:3630
942
- #: app/features/events.php:3672 app/features/fes/form.php:790
943
  #: app/features/ix.php:3513 app/features/ix.php:3554
944
- #: app/features/mec/settings.php:715 app/libraries/main.php:5892
945
- #: app/libraries/main.php:5939 app/widgets/single.php:103
946
  msgid "Event Cost"
947
  msgstr "Cena události"
948
 
949
- #: app/features/events.php:1201
950
  msgid "Exceptional Days (Exclude Dates)"
951
  msgstr "Výjimečné dny (vyjma dat)"
952
 
953
- #: app/features/events.php:1207 app/features/events.php:1217
954
  msgid "Exclude certain days"
955
  msgstr "Vyloučit určité dny"
956
 
957
- #: app/features/events.php:1212 app/features/events.php:2431
958
- #: app/features/events.php:2520 app/features/fes.php:233
959
  #: app/features/mec/booking.php:563 app/features/mec/booking.php:659
960
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
961
- #: app/libraries/main.php:3207 app/modules/booking/steps/tickets.php:94
962
  #: app/modules/next-event/details.php:134 app/skins/single.php:938
963
- #: app/skins/single/default.php:98 app/skins/single/default.php:329
964
- #: app/skins/single/m1.php:22 app/skins/single/modern.php:194
965
  msgid "Date"
966
  msgstr "Datum"
967
 
968
- #: app/features/events.php:1218
969
  msgid ""
970
  "Exclude certain days from event occurrence dates. Please note that you can "
971
  "exclude only single day occurrences and you cannot exclude one day from "
@@ -975,15 +976,15 @@ msgstr ""
975
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
976
  "vícedenních výskytů."
977
 
978
- #: app/features/events.php:1277 app/libraries/render.php:544
979
  msgid "Day 1"
980
  msgstr "Den 1"
981
 
982
- #: app/features/events.php:1307
983
  msgid "Add Day"
984
  msgstr "Přidat den"
985
 
986
- #: app/features/events.php:1308
987
  msgid ""
988
  "Add new days for schedule. For example if your event is multiple days, you "
989
  "can add a different schedule for each day!"
@@ -991,91 +992,91 @@ msgstr ""
991
  "Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
992
  "pro každý den přidat jiný rozvrh!"
993
 
994
- #: app/features/events.php:1315
995
  #, php-format
996
  msgid "Day %s"
997
  msgstr "Den %s"
998
 
999
- #: app/features/events.php:1319 app/features/events.php:1358
1000
- #: app/features/events.php:1393 app/features/events.php:1425
1001
- #: app/features/events.php:1454 app/features/events.php:2231
1002
- #: app/features/events.php:2278 app/features/events.php:3436
1003
- #: app/features/events.php:3630 app/features/events.php:3672
1004
  #: app/features/fes/form.php:248 app/features/ix.php:3513
1005
  #: app/features/ix.php:3554 app/features/mec/booking.php:460
1006
  #: app/features/mec/booking.php:492 app/features/mec/styling.php:130
1007
  msgid "Title"
1008
  msgstr "Název"
1009
 
1010
- #: app/features/events.php:1328 app/features/events.php:1365
1011
- #: app/features/events.php:1398 app/features/events.php:1433
1012
- #: app/features/events.php:1459 app/features/events.php:1862
1013
- #: app/features/events.php:1888 app/features/events.php:2024
1014
- #: app/features/events.php:2123 app/features/events.php:2159
1015
- #: app/features/events.php:2266 app/features/events.php:2308
1016
  #: app/features/mec/booking.php:403 app/features/mec/booking.php:432
1017
  #: app/features/mec/booking.php:483 app/features/mec/booking.php:515
1018
- #: app/libraries/main.php:3042 app/libraries/main.php:3071
1019
- #: app/libraries/main.php:3100 app/libraries/main.php:3129
1020
- #: app/libraries/main.php:3158 app/libraries/main.php:3187
1021
- #: app/libraries/main.php:3216 app/libraries/main.php:3245
1022
- #: app/libraries/main.php:3274 app/libraries/main.php:3295
1023
- #: app/libraries/main.php:3326 app/libraries/main.php:3372
1024
- #: app/libraries/main.php:3418 app/libraries/main.php:3467
1025
- #: app/libraries/main.php:3507
1026
  msgid "Remove"
1027
  msgstr "Odstranit"
1028
 
1029
- #: app/features/events.php:1335 app/features/events.php:1440
1030
  msgid "Add new hourly schedule row"
1031
  msgstr "Přidejte nový řádek rozvrhu hodin"
1032
 
1033
- #: app/features/events.php:1350 app/features/events.php:1387
1034
- #: app/features/events.php:1449
1035
  msgid "From e.g. 8:15"
1036
  msgstr "Od např. 8:15"
1037
 
1038
- #: app/features/events.php:1354 app/features/events.php:1390
1039
- #: app/features/events.php:1451
1040
  msgid "To e.g. 8:45"
1041
  msgstr "Do např. 8:45"
1042
 
1043
- #: app/features/events.php:1362 app/features/events.php:1396
1044
- #: app/features/events.php:1457 app/features/events.php:1753
1045
- #: app/features/events.php:1935
1046
  msgid "Description"
1047
  msgstr "Popis"
1048
 
1049
- #: app/features/events.php:1368 app/features/events.php:1401
1050
- #: app/features/events.php:1462 app/features/fes/form.php:916
1051
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1052
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1053
- #: app/libraries/main.php:569 app/libraries/main.php:5867
1054
- #: app/libraries/main.php:5915 app/modules/speakers/details.php:18
1055
  msgid "Speakers"
1056
  msgstr "Řečníci"
1057
 
1058
- #: app/features/events.php:1421 app/features/events.php:1429
1059
  msgid "New Day"
1060
  msgstr "Nový den"
1061
 
1062
- #: app/features/events.php:1493 app/features/fes/form.php:767
1063
  #: app/features/mec/settings.php:709
1064
  msgid "Event Links"
1065
  msgstr "Odkazy na událost"
1066
 
1067
- #: app/features/events.php:1496 app/features/events.php:1502
1068
- #: app/features/fes/form.php:769 app/libraries/main.php:5890
1069
- #: app/libraries/main.php:5937
1070
  msgid "Event Link"
1071
  msgstr "Odkaz na událost"
1072
 
1073
- #: app/features/events.php:1499 app/features/events.php:1515
1074
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1075
  msgid "eg. http://yoursite.com/your-event"
1076
  msgstr "např. http://yoursite.com/vase-udalost"
1077
 
1078
- #: app/features/events.php:1503
1079
  #, fuzzy
1080
  #| msgid ""
1081
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1090,32 +1091,32 @@ msgstr ""
1090
  "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
1091
  "URL, můžete také použít zkracovač URL"
1092
 
1093
- #: app/features/events.php:1505
1094
  msgid "URL Shortener"
1095
  msgstr "Zkracovač URL"
1096
 
1097
- #: app/features/events.php:1512 app/features/events.php:1525
1098
- #: app/features/fes/form.php:774 app/libraries/main.php:5891
1099
- #: app/libraries/main.php:5938 app/skins/single.php:964
1100
- #: app/skins/single/default.php:155 app/skins/single/default.php:386
1101
- #: app/skins/single/m1.php:216 app/skins/single/m2.php:140
1102
- #: app/skins/single/modern.php:159 app/widgets/single.php:107
1103
  msgid "More Info"
1104
  msgstr "Více info"
1105
 
1106
- #: app/features/events.php:1518 app/features/fes/form.php:776
1107
  msgid "More Information"
1108
  msgstr "Více informací"
1109
 
1110
- #: app/features/events.php:1520 app/features/fes/form.php:778
1111
  msgid "Current Window"
1112
  msgstr "Aktuální okno"
1113
 
1114
- #: app/features/events.php:1521 app/features/fes/form.php:779
1115
  msgid "New Window"
1116
  msgstr "Nové okno"
1117
 
1118
- #: app/features/events.php:1526 app/features/fes/form.php:781
1119
  msgid ""
1120
  "If you fill it, it will be shown in event details page as an optional link. "
1121
  "Insert full link including http(s)://"
@@ -1123,52 +1124,52 @@ msgstr ""
1123
  "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
1124
  "o události. Vložte celý odkaz včetně http (s): //"
1125
 
1126
- #: app/features/events.php:1549 app/features/mec/settings.php:777
1127
  msgid "Booking Options"
1128
  msgstr "Možnosti rezervace"
1129
 
1130
- #: app/features/events.php:1550
1131
  #, fuzzy
1132
  #| msgid "Total user booking limits"
1133
  msgid "Total User Booking Limits"
1134
  msgstr "Celkové limity rezervace uživatelů"
1135
 
1136
- #: app/features/events.php:1551 app/features/events.php:1696
1137
- #: app/libraries/book.php:60 app/libraries/main.php:5895
1138
  #: app/modules/booking/steps/tickets.php:119
1139
  #: app/modules/booking/steps/tickets.php:125
1140
  msgid "Tickets"
1141
  msgstr "Vstupenky"
1142
 
1143
- #: app/features/events.php:1553 app/features/events.php:2060
1144
  msgid "Fees"
1145
  msgstr "Poplatky"
1146
 
1147
- #: app/features/events.php:1556 app/features/events.php:2192
1148
  #: app/features/mec/settings.php:789
1149
  msgid "Ticket Variations / Options"
1150
  msgstr "Varianty vstupenky / možnosti"
1151
 
1152
- #: app/features/events.php:1560 app/features/mec/booking.php:735
1153
  #: app/features/mec/support-page.php:118
1154
  msgid "Organizer Payment"
1155
  msgstr "Platba organizátora"
1156
 
1157
- #: app/features/events.php:1603 app/features/events.php:1617
1158
  #, fuzzy
1159
  #| msgid "Total booking limits"
1160
  msgid "Total booking limit"
1161
  msgstr "Celkové limity rezervace"
1162
 
1163
- #: app/features/events.php:1614 app/features/events.php:1801
1164
- #: app/features/events.php:1973 app/modules/booking/default.php:98
1165
  #: app/modules/booking/steps/tickets.php:119
1166
  #: app/modules/booking/steps/tickets.php:125
1167
  #: app/skins/available_spot/tpl.php:142
1168
  msgid "Unlimited"
1169
  msgstr "Neomezené"
1170
 
1171
- #: app/features/events.php:1620
1172
  msgid ""
1173
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1174
  "limitation number."
@@ -1176,45 +1177,45 @@ msgstr ""
1176
  "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1177
  "políčka a zadejte číslo omezení."
1178
 
1179
- #: app/features/events.php:1622
1180
  msgid "Read About A Booking System"
1181
  msgstr "Přečtěte si o rezervačním systému"
1182
 
1183
- #: app/features/events.php:1630
1184
  msgid "100"
1185
  msgstr "100"
1186
 
1187
- #: app/features/events.php:1632 app/features/events.php:1646
1188
  #, fuzzy
1189
  #| msgid "Next Occurrence"
1190
  msgid "Book All Occurrences"
1191
  msgstr "Další výskyt"
1192
 
1193
- #: app/features/events.php:1643
1194
  msgid "Sell all occurrences by one booking"
1195
  msgstr ""
1196
 
1197
- #: app/features/events.php:1649
1198
  msgid ""
1199
  "If you have a series of events and you want to sell all of them at once, "
1200
  "this option is for you! For example a weekly yoga course or something "
1201
  "similar."
1202
  msgstr ""
1203
 
1204
- #: app/features/events.php:1659
1205
  msgid "Total user booking limits"
1206
  msgstr "Celkové limity rezervace uživatelů"
1207
 
1208
- #: app/features/events.php:1670 app/features/events.php:2072
1209
- #: app/features/events.php:2204 app/features/events.php:2385
1210
  msgid "Inherit from global options"
1211
  msgstr "Zdědí z globálních možností"
1212
 
1213
- #: app/features/events.php:1673
1214
  msgid "12"
1215
  msgstr "12"
1216
 
1217
- #: app/features/events.php:1699
1218
  msgid ""
1219
  "You're translating an event so MEC will use the original event for tickets "
1220
  "and booking. You can only translate the ticket name and description. Please "
@@ -1224,54 +1225,54 @@ msgstr ""
1224
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1225
  "definujte určité vstupenky, které jste definovali v původní události."
1226
 
1227
- #: app/features/events.php:1704
1228
  #, fuzzy
1229
  #| msgid "Ticket"
1230
  msgid "Add Ticket"
1231
  msgstr "Vstupenka"
1232
 
1233
- #: app/features/events.php:1716 app/features/events.php:1900
1234
  #, fuzzy
1235
  #| msgid "Ticket"
1236
  msgid "Ticket ID"
1237
  msgstr "Vstupenka"
1238
 
1239
- #: app/features/events.php:1716 app/features/events.php:1900
1240
- #: app/features/events.php:3630 app/features/events.php:3672
1241
  #: app/features/fes.php:233 app/features/ix.php:3513 app/features/ix.php:3554
1242
  #: app/features/labels.php:177 app/features/locations.php:260
1243
  #: app/features/organizers.php:203 app/features/speakers.php:268
1244
  msgid "ID"
1245
  msgstr "ID"
1246
 
1247
- #: app/features/events.php:1719 app/features/events.php:1903
1248
  msgid "Ticket Name"
1249
  msgstr "Název vstupenky"
1250
 
1251
- #: app/features/events.php:1724 app/features/events.php:1907
1252
- #: app/features/events.php:3630 app/features/events.php:3672
1253
  #: app/features/ix.php:3513 app/features/ix.php:3554
1254
  msgid "Start Time"
1255
  msgstr "Začátek"
1256
 
1257
- #: app/features/events.php:1737 app/features/events.php:1920
1258
- #: app/features/events.php:3630 app/features/events.php:3672
1259
  #: app/features/ix.php:3513 app/features/ix.php:3554
1260
  msgid "End Time"
1261
  msgstr "Konec"
1262
 
1263
- #: app/features/events.php:1758 app/features/events.php:1762
1264
- #: app/features/events.php:1856 app/features/events.php:1883
1265
- #: app/features/events.php:1940 app/features/events.php:1943
1266
- #: app/features/events.php:2020 app/features/events.php:2237
1267
- #: app/features/events.php:2241 app/features/events.php:2283
1268
- #: app/features/events.php:2286 app/features/mec/booking.php:464
1269
  #: app/features/mec/booking.php:467 app/features/mec/booking.php:496
1270
  #: app/features/mec/booking.php:499
1271
  msgid "Price"
1272
  msgstr "Cena"
1273
 
1274
- #: app/features/events.php:1763 app/features/events.php:1944
1275
  #, fuzzy
1276
  #| msgid "Insert 0 for free ticket. Only numbers please."
1277
  msgid ""
@@ -1279,61 +1280,61 @@ msgid ""
1279
  "any symbols or characters."
1280
  msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1281
 
1282
- #: app/features/events.php:1772 app/features/events.php:1777
1283
- #: app/features/events.php:1953 app/features/events.php:1956
1284
  msgid "Price Label"
1285
  msgstr "Cenový štítek"
1286
 
1287
- #: app/features/events.php:1778 app/features/events.php:1957
1288
  msgid "For showing on website. e.g. $15"
1289
  msgstr "Pro zobrazení na webu. např. 15 $"
1290
 
1291
- #: app/features/events.php:1788 app/features/events.php:1967
1292
  msgid "Available Tickets"
1293
  msgstr "Dostupné vstupenky"
1294
 
1295
- #: app/features/events.php:1805 app/features/events.php:1977
1296
  #, fuzzy
1297
  #| msgid "Maximum Per Ticket"
1298
  msgid "Minimum Ticket e.g. 3"
1299
  msgstr "Maximum na jednu vstupenku"
1300
 
1301
- #: app/features/events.php:1808 app/features/events.php:1980
1302
  #, fuzzy
1303
  #| msgid "Maximum Per Ticket"
1304
  msgid "MinimumTicket"
1305
  msgstr "Maximum na jednu vstupenku"
1306
 
1307
- #: app/features/events.php:1810 app/features/events.php:1982
1308
  msgid "Set a number for the minimum ticket reservation possible"
1309
  msgstr ""
1310
 
1311
- #: app/features/events.php:1818 app/features/events.php:1990
1312
  msgid "e.g. 0"
1313
  msgstr ""
1314
 
1315
- #: app/features/events.php:1820 app/features/events.php:1992
1316
  #, fuzzy
1317
  #| msgid "Days"
1318
  msgid "Day"
1319
  msgstr "Dny"
1320
 
1321
- #: app/features/events.php:1821 app/features/events.php:1993
1322
  msgid "Hour"
1323
  msgstr ""
1324
 
1325
- #: app/features/events.php:1823 app/features/events.php:1995
1326
  #, php-format
1327
  msgid "Stop selling ticket %s before event start."
1328
  msgstr ""
1329
 
1330
- #: app/features/events.php:1830 app/features/events.php:2001
1331
  msgid "Price per Date"
1332
  msgstr "Cena za datum"
1333
 
1334
- #: app/features/events.php:1860 app/features/events.php:1886
1335
- #: app/features/events.php:2022 app/features/labels.php:60
1336
- #: app/features/mec/meta_boxes/display_options.php:1387
1337
  #: app/features/mec/meta_boxes/search_form.php:67
1338
  #: app/features/mec/meta_boxes/search_form.php:137
1339
  #: app/features/mec/meta_boxes/search_form.php:207
@@ -1346,23 +1347,23 @@ msgstr "Cena za datum"
1346
  #: app/features/mec/meta_boxes/search_form.php:690
1347
  #: app/features/mec/meta_boxes/search_form.php:796
1348
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1349
- #: app/features/search.php:98 app/libraries/skins.php:1058
1350
  msgid "Label"
1351
  msgstr "Štítek"
1352
 
1353
- #: app/features/events.php:2097 app/features/events.php:2135
1354
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1355
  msgid "Fee Title"
1356
  msgstr "Název poplatku"
1357
 
1358
- #: app/features/events.php:2103 app/features/events.php:2107
1359
- #: app/features/events.php:2140 app/features/events.php:2143
1360
  #: app/features/mec/booking.php:387 app/features/mec/booking.php:390
1361
  #: app/features/mec/booking.php:416 app/features/mec/booking.php:419
1362
  msgid "Amount"
1363
  msgstr "Množství"
1364
 
1365
- #: app/features/events.php:2108 app/features/events.php:2144
1366
  #: app/features/mec/booking.php:391 app/features/mec/booking.php:420
1367
  msgid ""
1368
  "Fee amount, considered as fixed amount if you set the type to amount "
@@ -1371,95 +1372,95 @@ msgstr ""
1371
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1372
  "odpovídající procentuální hodnotě"
1373
 
1374
- #: app/features/events.php:2117 app/features/events.php:2153
1375
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:427
1376
  msgid "Percent"
1377
  msgstr "Procent"
1378
 
1379
- #: app/features/events.php:2118 app/features/events.php:2154
1380
  #: app/features/mec/booking.php:399 app/features/mec/booking.php:428
1381
  msgid "Amount (Per Ticket)"
1382
  msgstr "Částka (za vstupenku)"
1383
 
1384
- #: app/features/events.php:2119 app/features/events.php:2155
1385
  #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1386
  msgid "Amount (Per Booking)"
1387
  msgstr "Částka (za rezervaci)"
1388
 
1389
- #: app/features/events.php:2242 app/features/events.php:2287
1390
  #: app/features/mec/booking.php:468 app/features/mec/booking.php:500
1391
  msgid "Option Price"
1392
  msgstr "Možnosti ceny"
1393
 
1394
- #: app/features/events.php:2252 app/features/events.php:2256
1395
- #: app/features/events.php:2296 app/features/events.php:2299
1396
  #: app/features/mec/booking.php:474 app/features/mec/booking.php:477
1397
  #: app/features/mec/booking.php:506 app/features/mec/booking.php:509
1398
  msgid "Maximum Per Ticket"
1399
  msgstr "Maximum na jednu vstupenku"
1400
 
1401
- #: app/features/events.php:2257 app/features/events.php:2300
1402
  #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1403
  #, fuzzy
1404
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1405
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1406
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1407
 
1408
- #: app/features/events.php:2397 app/features/mec/booking.php:526
1409
  #, fuzzy
1410
  #| msgid "Attendees Limit"
1411
  msgid "Per Attendee Fields"
1412
  msgstr "Limit účastníků"
1413
 
1414
- #: app/features/events.php:2427 app/features/mec/booking.php:559
1415
- #: app/libraries/main.php:3062
1416
  msgid "MEC Name"
1417
  msgstr "MEC Jméno"
1418
 
1419
- #: app/features/events.php:2428 app/features/mec/booking.php:560
1420
- #: app/libraries/main.php:3091
1421
  msgid "MEC Email"
1422
  msgstr "MEC Email"
1423
 
1424
- #: app/features/events.php:2429 app/features/events.php:2518
1425
  #: app/features/mec/booking.php:561 app/features/mec/booking.php:657
1426
- #: app/features/mec/single.php:182 app/libraries/main.php:3033
1427
  msgid "Text"
1428
  msgstr "Text"
1429
 
1430
- #: app/features/events.php:2432 app/features/events.php:2521
1431
  #: app/features/mec/booking.php:564 app/features/mec/booking.php:660
1432
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1433
  #: app/features/organizers.php:148 app/features/speakers.php:119
1434
  #: app/features/speakers.php:192 app/features/speakers.php:271
1435
- #: app/libraries/main.php:3236
1436
  msgid "Tel"
1437
  msgstr "Tel"
1438
 
1439
- #: app/features/events.php:2433 app/features/mec/booking.php:565
1440
- #: app/libraries/main.php:3178
1441
  msgid "File"
1442
  msgstr "Soubor"
1443
 
1444
- #: app/features/events.php:2434 app/features/events.php:2522
1445
  #: app/features/mec/booking.php:566 app/features/mec/booking.php:661
1446
- #: app/features/mec/single.php:187 app/libraries/main.php:3265
1447
  msgid "Textarea"
1448
  msgstr "Plocha textu"
1449
 
1450
- #: app/features/events.php:2435 app/features/events.php:2523
1451
  #: app/features/mec/booking.php:567 app/features/mec/booking.php:662
1452
- #: app/features/mec/single.php:189 app/libraries/main.php:3317
1453
  msgid "Checkboxes"
1454
  msgstr "Zatržítko"
1455
 
1456
- #: app/features/events.php:2436 app/features/events.php:2524
1457
  #: app/features/mec/booking.php:568 app/features/mec/booking.php:663
1458
- #: app/features/mec/single.php:190 app/libraries/main.php:3363
1459
  msgid "Radio Buttons"
1460
  msgstr "Přepínače"
1461
 
1462
- #: app/features/events.php:2437 app/features/events.php:2525
1463
  #: app/features/mec/booking.php:569 app/features/mec/booking.php:664
1464
  #: app/features/mec/meta_boxes/search_form.php:34
1465
  #: app/features/mec/meta_boxes/search_form.php:41
@@ -1537,58 +1538,58 @@ msgstr "Přepínače"
1537
  #: app/features/mec/meta_boxes/search_form.php:792
1538
  #: app/features/mec/meta_boxes/search_form.php:799
1539
  #: app/features/mec/meta_boxes/search_form.php:813
1540
- #: app/features/mec/single.php:191 app/libraries/main.php:3409
1541
  msgid "Dropdown"
1542
  msgstr "Rozbalovací"
1543
 
1544
- #: app/features/events.php:2438 app/features/events.php:2526
1545
  #: app/features/mec/booking.php:570 app/features/mec/booking.php:665
1546
- #: app/libraries/main.php:3458
1547
  msgid "Agreement"
1548
  msgstr "Smlouva"
1549
 
1550
- #: app/features/events.php:2439 app/features/events.php:2527
1551
  #: app/features/mec/booking.php:571 app/features/mec/booking.php:666
1552
- #: app/features/mec/single.php:188 app/libraries/main.php:3294
1553
  msgid "Paragraph"
1554
  msgstr "Paragraf"
1555
 
1556
- #: app/features/events.php:2488 app/features/mec/booking.php:624
1557
  #, fuzzy
1558
  #| msgid "Required Field"
1559
  msgid "Fixed Fields"
1560
  msgstr "Požadovaná pole"
1561
 
1562
- #: app/features/events.php:3338 app/features/events.php:3356
1563
- #: app/features/events.php:3374 app/features/events.php:3392
1564
  #, php-format
1565
  msgid "Show all %s"
1566
  msgstr "Ukázat všechny %s"
1567
 
1568
- #: app/features/events.php:3338
1569
  msgid "labels"
1570
  msgstr "štítky"
1571
 
1572
- #: app/features/events.php:3356
1573
  msgid "locations"
1574
  msgstr "umístění"
1575
 
1576
- #: app/features/events.php:3374
1577
  msgid "organizers"
1578
  msgstr "organizátoři"
1579
 
1580
- #: app/features/events.php:3408
1581
  #, fuzzy
1582
  #| msgid "Attendees Limit"
1583
  msgid "Attendees List"
1584
  msgstr "Limit účastníků"
1585
 
1586
- #: app/features/events.php:3438 app/features/events.php:3630
1587
- #: app/features/events.php:3672 app/features/ix.php:3513
1588
  #: app/features/ix.php:3554 app/features/locations.php:58
1589
  #: app/features/locations.php:261 app/features/locations.php:322
1590
  #: app/features/locations.php:324 app/features/locations.php:333
1591
- #: app/features/mec/meta_boxes/display_options.php:1388
1592
  #: app/features/mec/meta_boxes/search_form.php:38
1593
  #: app/features/mec/meta_boxes/search_form.php:108
1594
  #: app/features/mec/meta_boxes/search_form.php:178
@@ -1602,90 +1603,90 @@ msgstr "Limit účastníků"
1602
  #: app/features/mec/meta_boxes/search_form.php:767
1603
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1604
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1605
- #: app/features/search.php:74 app/libraries/main.php:2422
1606
- #: app/libraries/main.php:5864 app/libraries/main.php:5912
1607
- #: app/libraries/skins.php:954 app/skins/single.php:781
1608
- #: app/skins/single.php:1224 app/skins/single/default.php:191
1609
- #: app/skins/single/default.php:422 app/skins/single/m1.php:172
1610
- #: app/skins/single/m2.php:95 app/skins/single/modern.php:113
1611
  msgid "Location"
1612
  msgstr "Umístění"
1613
 
1614
- #: app/features/events.php:3443
1615
  msgid "Repeat"
1616
  msgstr "Opakovat"
1617
 
1618
- #: app/features/events.php:3444
1619
  msgid "Author"
1620
  msgstr "Autor"
1621
 
1622
- #: app/features/events.php:3565 app/features/events.php:3566
1623
  msgid "iCal Export"
1624
  msgstr "iCal Export"
1625
 
1626
- #: app/features/events.php:3568 app/features/events.php:3569
1627
  msgid "CSV Export"
1628
  msgstr "CSV Export"
1629
 
1630
- #: app/features/events.php:3571 app/features/events.php:3572
1631
  msgid "MS Excel Export"
1632
  msgstr "MS Excel Export"
1633
 
1634
- #: app/features/events.php:3574 app/features/events.php:3575
1635
  msgid "XML Export"
1636
  msgstr "XML Export"
1637
 
1638
- #: app/features/events.php:3577 app/features/events.php:3578
1639
  msgid "JSON Export"
1640
  msgstr "JSON Export"
1641
 
1642
- #: app/features/events.php:3580 app/features/events.php:3581
1643
- #: app/features/events.php:3763
1644
  msgid "Duplicate"
1645
  msgstr "Duplikát"
1646
 
1647
- #: app/features/events.php:3630 app/features/events.php:3672
1648
  #: app/features/ix.php:3513 app/features/ix.php:3554
1649
  msgid "Link"
1650
  msgstr "Odkaz"
1651
 
1652
- #: app/features/events.php:3630 app/features/events.php:3672
1653
  #, php-format
1654
  msgid "%s Tel"
1655
  msgstr "%s Tel"
1656
 
1657
- #: app/features/events.php:3630 app/features/events.php:3672
1658
  #, php-format
1659
  msgid "%s Email"
1660
  msgstr "%s Email"
1661
 
1662
- #: app/features/events.php:3975 app/features/fes.php:233
1663
- #: app/features/profile/profile.php:183 app/libraries/main.php:2505
1664
- #: app/libraries/main.php:5894
1665
  msgid "Ticket"
1666
  msgstr "Vstupenka"
1667
 
1668
- #: app/features/events.php:3978 app/features/profile/profile.php:186
1669
  msgid "Variations"
1670
  msgstr "Variace"
1671
 
1672
- #: app/features/events.php:3993 app/features/fes.php:304
1673
  msgid "Unknown"
1674
  msgstr "Neznámý"
1675
 
1676
- #: app/features/events.php:4019
1677
  msgid ""
1678
  "If you want to send an email, first select your attendees and then click in "
1679
  "the button below, please."
1680
  msgstr ""
1681
 
1682
- #: app/features/events.php:4019 app/features/mec/report.php:50
1683
  #, fuzzy
1684
  #| msgid "Organizer Email"
1685
  msgid "Send Email"
1686
  msgstr "Organizátor Email"
1687
 
1688
- #: app/features/events.php:4023
1689
  #, fuzzy
1690
  #| msgid "Attendees Form"
1691
  msgid "No Attendees Found!"
@@ -1731,8 +1732,8 @@ msgstr "Událost byla odebrána!"
1731
  msgid "Order Time"
1732
  msgstr "Konec"
1733
 
1734
- #: app/features/fes.php:233 app/libraries/main.php:2453
1735
- #: app/libraries/main.php:2568
1736
  msgid "Transaction ID"
1737
  msgstr "ID transakce"
1738
 
@@ -1811,43 +1812,43 @@ msgid "Optional Event Excerpt"
1811
  msgstr "Při spuštění události"
1812
 
1813
  #: app/features/fes/form.php:346
1814
- #: app/features/mec/meta_boxes/display_options.php:1235
1815
  #: app/libraries/main.php:410
1816
  msgid "Monday"
1817
  msgstr "Pondělí"
1818
 
1819
  #: app/features/fes/form.php:347
1820
- #: app/features/mec/meta_boxes/display_options.php:1236
1821
  #: app/libraries/main.php:410
1822
  msgid "Tuesday"
1823
  msgstr "Úterý"
1824
 
1825
  #: app/features/fes/form.php:348
1826
- #: app/features/mec/meta_boxes/display_options.php:1237
1827
  #: app/libraries/main.php:410
1828
  msgid "Wednesday"
1829
  msgstr "Středa"
1830
 
1831
  #: app/features/fes/form.php:349
1832
- #: app/features/mec/meta_boxes/display_options.php:1238
1833
  #: app/libraries/main.php:410
1834
  msgid "Thursday"
1835
  msgstr "Čtvrtek"
1836
 
1837
  #: app/features/fes/form.php:350
1838
- #: app/features/mec/meta_boxes/display_options.php:1239
1839
  #: app/libraries/main.php:410
1840
  msgid "Friday"
1841
  msgstr "Pátek"
1842
 
1843
  #: app/features/fes/form.php:351
1844
- #: app/features/mec/meta_boxes/display_options.php:1240
1845
  #: app/libraries/main.php:410
1846
  msgid "Saturday"
1847
  msgstr "Sobota"
1848
 
1849
  #: app/features/fes/form.php:352
1850
- #: app/features/mec/meta_boxes/display_options.php:1234
1851
  #: app/libraries/main.php:410
1852
  msgid "Sunday"
1853
  msgstr "Neděle"
@@ -1901,10 +1902,10 @@ msgstr "Odebrat obrázek"
1901
  #: app/features/fes/form.php:848 app/features/labels.php:61
1902
  #: app/features/labels.php:221 app/features/mec.php:462
1903
  #: app/features/mec/meta_boxes/filter.php:72
1904
- #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5861
1905
- #: app/libraries/main.php:5909 app/skins/single.php:994
1906
- #: app/skins/single/default.php:170 app/skins/single/default.php:401
1907
- #: app/skins/single/m1.php:77 app/skins/single/modern.php:249
1908
  msgid "Labels"
1909
  msgstr "Štítky"
1910
 
@@ -1966,7 +1967,7 @@ msgid "MEC - Import / Export"
1966
  msgstr "MEC Import / Export"
1967
 
1968
  #: app/features/ix.php:111 app/features/mec/support.php:73
1969
- #: app/libraries/main.php:813
1970
  msgid "Import / Export"
1971
  msgstr "Import / Export"
1972
 
@@ -2247,15 +2248,15 @@ msgstr "Přepnout"
2247
  #: app/features/ix/export_g_calendar.php:72
2248
  #: app/features/ix/export_g_calendar.php:151
2249
  #: app/features/ix/export_g_calendar.php:166
2250
- #: app/features/mec/notifications.php:137
2251
- #: app/features/mec/notifications.php:237
2252
- #: app/features/mec/notifications.php:350
2253
- #: app/features/mec/notifications.php:693
2254
  msgid "Add to Google Calendar"
2255
  msgstr "Přidat do Google kalendáře"
2256
 
2257
  #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:828
2258
- #: app/features/mec/modules.php:403 app/features/mec/notifications.php:967
2259
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2260
  msgid "Checking ..."
2261
  msgstr "Ověřování ..."
@@ -2307,7 +2308,7 @@ msgstr "ICS Feed"
2307
  #: app/features/mec/booking.php:333 app/features/mec/booking.php:349
2308
  #: app/features/mec/booking.php:367 app/features/mec/booking.php:444
2309
  #: app/features/mec/meta_boxes/display_options.php:214
2310
- #: app/features/mec/meta_boxes/display_options.php:466
2311
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2312
  #: app/features/mec/modules.php:228
2313
  #, php-format
@@ -2319,14 +2320,14 @@ msgstr "% s je vyžadováno pro použití této funkce."
2319
  #: app/features/mec/booking.php:349 app/features/mec/booking.php:367
2320
  #: app/features/mec/booking.php:444
2321
  #: app/features/mec/meta_boxes/display_options.php:214
2322
- #: app/features/mec/meta_boxes/display_options.php:466
2323
- #: app/features/mec/meta_boxes/display_options.php:506
2324
- #: app/features/mec/meta_boxes/display_options.php:738
2325
- #: app/features/mec/meta_boxes/display_options.php:814
2326
- #: app/features/mec/meta_boxes/display_options.php:997
2327
- #: app/features/mec/meta_boxes/display_options.php:1191
2328
- #: app/features/mec/meta_boxes/display_options.php:1335
2329
- #: app/features/mec/meta_boxes/display_options.php:1662
2330
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2331
  #: app/features/mec/modules.php:228
2332
  msgid "Pro version of Modern Events Calendar"
@@ -2511,7 +2512,7 @@ msgstr "Auto Google Import"
2511
 
2512
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2513
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2514
- #: app/features/mec/notifications.php:590
2515
  msgid "Important Note"
2516
  msgstr "Důležitá poznámka"
2517
 
@@ -2675,15 +2676,15 @@ msgstr "Vybrat barvu štítku"
2675
 
2676
  #: app/features/labels.php:112 app/features/labels.php:139
2677
  #: app/features/mec/meta_boxes/display_options.php:40
2678
- #: app/features/mec/meta_boxes/display_options.php:266
2679
- #: app/features/mec/meta_boxes/display_options.php:511
2680
- #: app/features/mec/meta_boxes/display_options.php:819
2681
- #: app/features/mec/meta_boxes/display_options.php:907
2682
- #: app/features/mec/meta_boxes/display_options.php:1196
2683
- #: app/features/mec/meta_boxes/display_options.php:1468
2684
- #: app/features/mec/meta_boxes/display_options.php:1563
2685
- #: app/features/mec/meta_boxes/display_options.php:1731
2686
- #: app/features/mec/meta_boxes/display_options.php:1859
2687
  msgid "Style"
2688
  msgstr "Styl"
2689
 
@@ -2707,7 +2708,7 @@ msgid "Featured"
2707
  msgstr "Ztvárněná"
2708
 
2709
  #: app/features/labels.php:118 app/features/labels.php:143
2710
- #: app/libraries/main.php:6178 app/skins/agenda/render.php:43
2711
  #: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
2712
  #: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
2713
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
@@ -2744,8 +2745,8 @@ msgstr "Událost %s"
2744
 
2745
  #: app/features/locations.php:59 app/features/mec.php:463
2746
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2747
- #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5863
2748
- #: app/libraries/main.php:5911
2749
  msgid "Locations"
2750
  msgstr "Umístění"
2751
 
@@ -2880,8 +2881,8 @@ msgstr "Vyberte obrázek"
2880
  msgid "Don't show map in single event page"
2881
  msgstr "Nezobrazovat mapu na jednostránkové události"
2882
 
2883
- #: app/features/locations.php:396 app/libraries/main.php:5897
2884
- #: app/libraries/main.php:5942
2885
  msgid "Other Locations"
2886
  msgstr "Další místa"
2887
 
@@ -2933,7 +2934,7 @@ msgstr "Odstraňování problémů"
2933
  msgid "Select Date"
2934
  msgstr "Vyberte typ"
2935
 
2936
- #: app/features/mec.php:291 app/skins/masonry.php:255
2937
  msgid "All"
2938
  msgstr "Vše"
2939
 
@@ -2969,7 +2970,7 @@ msgstr "Podpora"
2969
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
2970
  #: app/features/mec/meta_boxes/filter.php:71
2971
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2972
- #: app/libraries/main.php:5865 app/libraries/main.php:5913
2973
  msgid "Organizers"
2974
  msgstr "Organizátoři"
2975
 
@@ -3008,7 +3009,7 @@ msgstr "Export"
3008
  msgid "MEC - Go Pro"
3009
  msgstr "MEC - podpora"
3010
 
3011
- #: app/features/mec.php:479 app/features/mec.php:1239
3012
  #: app/features/mec/go-pro.php:9
3013
  msgid "Go Pro"
3014
  msgstr ""
@@ -3049,91 +3050,97 @@ msgstr "Filtrovat možnosti"
3049
  msgid "Search Form"
3050
  msgstr "Vyhledávací formulář"
3051
 
3052
- #: app/features/mec.php:957
3053
  msgid "Display content's images as Popup"
3054
  msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
3055
 
3056
- #: app/features/mec.php:971 app/features/popup/shortcode.php:473
3057
  msgid "Single Event Display Method"
3058
  msgstr "Metoda zobrazení jedné události"
3059
 
3060
- #: app/features/mec.php:976 app/features/popup/shortcode.php:477
3061
  msgid "Separate Window"
3062
  msgstr "Samostatné okno"
3063
 
3064
- #: app/features/mec.php:977 app/features/popup/shortcode.php:481
3065
  #, fuzzy
3066
  #| msgid "Modal 1"
3067
  msgid "Modal Popup"
3068
  msgstr "Modal 1"
3069
 
3070
- #: app/features/mec.php:1134 app/features/mec.php:1252
 
 
 
 
 
 
3071
  msgid "Total Bookings"
3072
  msgstr "Celkový počet rezervací"
3073
 
3074
- #: app/features/mec.php:1153 app/features/mec/dashboard.php:63
3075
  msgid "Modern Events Calendar (Lite)"
3076
  msgstr "Modern Events Calendar (Lite)"
3077
 
3078
- #: app/features/mec.php:1162 app/features/mec/dashboard.php:291
3079
  #: app/features/mec/settings.php:431
3080
  msgid "Upcoming Events"
3081
  msgstr "Nadcházející události"
3082
 
3083
- #: app/features/mec.php:1225
3084
  #, fuzzy
3085
  #| msgid "Update %s"
3086
  msgid "News & Updates"
3087
  msgstr "Aktualizovat %s"
3088
 
3089
- #: app/features/mec.php:1238
3090
  msgid "Blog"
3091
  msgstr ""
3092
 
3093
- #: app/features/mec.php:1238
3094
  msgid "Help"
3095
  msgstr ""
3096
 
3097
- #: app/features/mec.php:1284
3098
  msgid "This Month"
3099
  msgstr "Tento měsíc"
3100
 
3101
- #: app/features/mec.php:1290
3102
  msgid "Last Month"
3103
  msgstr "Minulý měsíc"
3104
 
3105
- #: app/features/mec.php:1296
3106
  msgid "This Year"
3107
  msgstr "Tento rok"
3108
 
3109
- #: app/features/mec.php:1302
3110
  msgid "Last Year"
3111
  msgstr "Minulý rok"
3112
 
3113
- #: app/features/mec.php:1314
3114
  msgid "Bar"
3115
  msgstr "Pruh"
3116
 
3117
- #: app/features/mec.php:1315
3118
  msgid "Line"
3119
  msgstr "Čára"
3120
 
3121
- #: app/features/mec.php:1317
3122
  msgid "Filter"
3123
  msgstr "Filtr"
3124
 
3125
- #: app/features/mec.php:1333
3126
  #, php-format
3127
  msgid "Total Sells (%s)"
3128
  msgstr "Celkový prodej %s"
3129
 
3130
- #: app/features/mec.php:1361
3131
  #, fuzzy
3132
  #| msgid "Modern Events Calendar"
3133
  msgid "Print Calendar"
3134
  msgstr "Moderní kalendář událostí"
3135
 
3136
- #: app/features/mec.php:1376
3137
  #, fuzzy
3138
  #| msgid "Display Event Price"
3139
  msgid "Display Events"
@@ -3172,13 +3179,13 @@ msgstr "Vyhledávání ..."
3172
  #: app/features/mec/booking.php:859 app/features/mec/messages.php:15
3173
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3174
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3175
- #: app/features/mec/modules.php:25 app/features/mec/modules.php:368
3176
- #: app/features/mec/modules.php:378 app/features/mec/modules.php:420
3177
- #: app/features/mec/modules.php:434 app/features/mec/notifications.php:13
3178
- #: app/features/mec/notifications.php:874
3179
- #: app/features/mec/notifications.php:886
3180
- #: app/features/mec/notifications.php:984
3181
- #: app/features/mec/notifications.php:998 app/features/mec/settings.php:36
3182
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
3183
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
3184
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
@@ -3215,13 +3222,13 @@ msgstr "Výchozí je Y-m-d"
3215
 
3216
  #: app/features/mec/booking.php:123
3217
  #: app/features/mec/meta_boxes/display_options.php:137
3218
- #: app/features/mec/meta_boxes/display_options.php:399
3219
- #: app/features/mec/meta_boxes/display_options.php:556
3220
- #: app/features/mec/meta_boxes/display_options.php:1379
3221
- #: app/features/mec/meta_boxes/display_options.php:1798
3222
- #: app/features/mec/meta_boxes/display_options.php:1948
3223
- #: app/features/mec/meta_boxes/display_options.php:2036
3224
- #: app/features/mec/meta_boxes/display_options.php:2170
3225
  msgid "Limit"
3226
  msgstr "Limit"
3227
 
@@ -3480,8 +3487,8 @@ msgstr "Automatické ověření pro rezervace zdarma"
3480
  msgid "Auto verification for paid bookings"
3481
  msgstr "Automatické ověření pro placené rezervace"
3482
 
3483
- #: app/features/mec/booking.php:295 app/features/mec/notifications.php:244
3484
- #: app/libraries/main.php:590
3485
  msgid "Booking Confirmation"
3486
  msgstr "Potvrzení rezervace"
3487
 
@@ -3573,30 +3580,30 @@ msgstr ""
3573
  "údaje pro povolené brány pro události a přijímat platby přímo!"
3574
 
3575
  #: app/features/mec/booking.php:823 app/features/mec/messages.php:78
3576
- #: app/features/mec/modules.php:398 app/features/mec/notifications.php:962
3577
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3578
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3579
  msgid "Saved"
3580
  msgstr "Uloženo"
3581
 
3582
  #: app/features/mec/booking.php:824 app/features/mec/messages.php:79
3583
- #: app/features/mec/modules.php:399 app/features/mec/notifications.php:963
3584
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3585
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3586
  msgid "Settings Saved!"
3587
  msgstr "Nastavení uložena!"
3588
 
3589
  #: app/features/mec/booking.php:826 app/features/mec/booking.php:848
3590
- #: app/features/mec/modules.php:401 app/features/mec/modules.php:423
3591
- #: app/features/mec/notifications.php:965
3592
- #: app/features/mec/notifications.php:987 app/features/mec/settings.php:1160
3593
  #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
3594
- #: app/features/mec/single.php:408 app/libraries/main.php:6177
3595
  msgid "Verified"
3596
  msgstr "Ověřeno"
3597
 
3598
- #: app/features/mec/booking.php:850 app/features/mec/modules.php:425
3599
- #: app/features/mec/notifications.php:989 app/features/mec/settings.php:1184
3600
  #: app/features/mec/single.php:410
3601
  msgid "Please Refresh Page"
3602
  msgstr "Prosím obnovte stránku"
@@ -3611,7 +3618,7 @@ msgstr "Vítejte %s"
3611
  msgid "%s - Most Powerful & Easy to Use Events Management System"
3612
  msgstr "%s - Nejvýkonnější a snadno použitelný systém pro správu událostí"
3613
 
3614
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:204
3615
  msgctxt "plugin rate"
3616
  msgid "Rate the plugin ★★★★★"
3617
  msgstr "Ohodnoťe doplněk ★★★★★"
@@ -3726,7 +3733,7 @@ msgid "Download Settings"
3726
  msgstr "Stáhnout nastavení"
3727
 
3728
  #: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
3729
- #: app/features/mec/support.php:66 app/libraries/main.php:806
3730
  msgid "Messages"
3731
  msgstr "Zprávy"
3732
 
@@ -3753,10 +3760,10 @@ msgid "Skin"
3753
  msgstr "Vzhled"
3754
 
3755
  #: app/features/mec/meta_boxes/display_options.php:42
3756
- #: app/features/mec/meta_boxes/display_options.php:268
3757
- #: app/features/mec/meta_boxes/display_options.php:909
3758
- #: app/features/mec/meta_boxes/display_options.php:1200
3759
- #: app/features/mec/meta_boxes/display_options.php:1470
3760
  #: app/features/mec/settings.php:295 app/features/mec/settings.php:319
3761
  #: app/features/mec/settings.php:328 app/features/mec/settings.php:369
3762
  #: app/features/mec/settings.php:393 app/features/mec/settings.php:402
@@ -3769,7 +3776,7 @@ msgid "Classic"
3769
  msgstr "Klasický"
3770
 
3771
  #: app/features/mec/meta_boxes/display_options.php:43
3772
- #: app/features/mec/meta_boxes/display_options.php:270
3773
  #: app/features/mec/settings.php:320 app/features/mec/settings.php:330
3774
  #: app/features/mec/settings.php:394 app/features/mec/settings.php:404
3775
  #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
@@ -3777,11 +3784,11 @@ msgid "Minimal"
3777
  msgstr "Minimální"
3778
 
3779
  #: app/features/mec/meta_boxes/display_options.php:44
3780
- #: app/features/mec/meta_boxes/display_options.php:271
3781
- #: app/features/mec/meta_boxes/display_options.php:821
3782
- #: app/features/mec/meta_boxes/display_options.php:911
3783
- #: app/features/mec/meta_boxes/display_options.php:1198
3784
- #: app/features/mec/meta_boxes/display_options.php:1472
3785
  #: app/features/mec/settings.php:297 app/features/mec/settings.php:310
3786
  #: app/features/mec/settings.php:321 app/features/mec/settings.php:331
3787
  #: app/features/mec/settings.php:371 app/features/mec/settings.php:384
@@ -3805,97 +3812,97 @@ msgid "Accordion"
3805
  msgstr "Akordeon"
3806
 
3807
  #: app/features/mec/meta_boxes/display_options.php:53
3808
- #: app/features/mec/meta_boxes/display_options.php:281
3809
- #: app/features/mec/meta_boxes/display_options.php:520
3810
- #: app/features/mec/meta_boxes/display_options.php:626
3811
- #: app/features/mec/meta_boxes/display_options.php:1004
3812
- #: app/features/mec/meta_boxes/display_options.php:1049
3813
- #: app/features/mec/meta_boxes/display_options.php:1343
3814
- #: app/features/mec/meta_boxes/display_options.php:1743
3815
- #: app/features/mec/meta_boxes/display_options.php:1872
3816
- #: app/features/mec/meta_boxes/display_options.php:2001
3817
  msgid "Today"
3818
  msgstr "Dnes"
3819
 
3820
  #: app/features/mec/meta_boxes/display_options.php:54
3821
- #: app/features/mec/meta_boxes/display_options.php:282
3822
- #: app/features/mec/meta_boxes/display_options.php:521
3823
- #: app/features/mec/meta_boxes/display_options.php:1005
3824
- #: app/features/mec/meta_boxes/display_options.php:1050
3825
- #: app/features/mec/meta_boxes/display_options.php:1344
3826
- #: app/features/mec/meta_boxes/display_options.php:1744
3827
- #: app/features/mec/meta_boxes/display_options.php:1873
3828
- #: app/features/mec/meta_boxes/display_options.php:2002
3829
  msgid "Tomorrow"
3830
  msgstr "Zítra"
3831
 
3832
  #: app/features/mec/meta_boxes/display_options.php:55
3833
- #: app/features/mec/meta_boxes/display_options.php:283
3834
- #: app/features/mec/meta_boxes/display_options.php:522
3835
- #: app/features/mec/meta_boxes/display_options.php:627
3836
- #: app/features/mec/meta_boxes/display_options.php:920
3837
- #: app/features/mec/meta_boxes/display_options.php:1006
3838
- #: app/features/mec/meta_boxes/display_options.php:1051
3839
- #: app/features/mec/meta_boxes/display_options.php:1124
3840
- #: app/features/mec/meta_boxes/display_options.php:1209
3841
- #: app/features/mec/meta_boxes/display_options.php:1345
3842
- #: app/features/mec/meta_boxes/display_options.php:1745
3843
- #: app/features/mec/meta_boxes/display_options.php:1874
3844
- #: app/features/mec/meta_boxes/display_options.php:2003
3845
- #: app/features/mec/meta_boxes/display_options.php:2105
3846
  msgid "Start of Current Month"
3847
  msgstr "Začátek aktuálního měsíce"
3848
 
3849
  #: app/features/mec/meta_boxes/display_options.php:56
3850
- #: app/features/mec/meta_boxes/display_options.php:284
3851
- #: app/features/mec/meta_boxes/display_options.php:523
3852
- #: app/features/mec/meta_boxes/display_options.php:628
3853
- #: app/features/mec/meta_boxes/display_options.php:921
3854
- #: app/features/mec/meta_boxes/display_options.php:1007
3855
- #: app/features/mec/meta_boxes/display_options.php:1052
3856
- #: app/features/mec/meta_boxes/display_options.php:1125
3857
- #: app/features/mec/meta_boxes/display_options.php:1210
3858
- #: app/features/mec/meta_boxes/display_options.php:1346
3859
- #: app/features/mec/meta_boxes/display_options.php:1746
3860
- #: app/features/mec/meta_boxes/display_options.php:1875
3861
- #: app/features/mec/meta_boxes/display_options.php:2004
3862
- #: app/features/mec/meta_boxes/display_options.php:2106
3863
  msgid "Start of Next Month"
3864
  msgstr "Začátek dalšího měsíce"
3865
 
3866
  #: app/features/mec/meta_boxes/display_options.php:57
3867
- #: app/features/mec/meta_boxes/display_options.php:285
3868
- #: app/features/mec/meta_boxes/display_options.php:524
3869
- #: app/features/mec/meta_boxes/display_options.php:629
3870
- #: app/features/mec/meta_boxes/display_options.php:830
3871
- #: app/features/mec/meta_boxes/display_options.php:922
3872
- #: app/features/mec/meta_boxes/display_options.php:1008
3873
- #: app/features/mec/meta_boxes/display_options.php:1053
3874
- #: app/features/mec/meta_boxes/display_options.php:1126
3875
- #: app/features/mec/meta_boxes/display_options.php:1211
3876
- #: app/features/mec/meta_boxes/display_options.php:1347
3877
- #: app/features/mec/meta_boxes/display_options.php:1747
3878
- #: app/features/mec/meta_boxes/display_options.php:1876
3879
- #: app/features/mec/meta_boxes/display_options.php:2005
3880
- #: app/features/mec/meta_boxes/display_options.php:2107
3881
  msgid "On a certain date"
3882
  msgstr "K určitému datu"
3883
 
3884
  #: app/features/mec/meta_boxes/display_options.php:60
3885
- #: app/features/mec/meta_boxes/display_options.php:288
3886
- #: app/features/mec/meta_boxes/display_options.php:527
3887
- #: app/features/mec/meta_boxes/display_options.php:632
3888
- #: app/features/mec/meta_boxes/display_options.php:833
3889
- #: app/features/mec/meta_boxes/display_options.php:925
3890
- #: app/features/mec/meta_boxes/display_options.php:1011
3891
- #: app/features/mec/meta_boxes/display_options.php:1057
3892
- #: app/features/mec/meta_boxes/display_options.php:1129
3893
- #: app/features/mec/meta_boxes/display_options.php:1214
3894
- #: app/features/mec/meta_boxes/display_options.php:1350
3895
- #: app/features/mec/meta_boxes/display_options.php:1750
3896
- #: app/features/mec/meta_boxes/display_options.php:1879
3897
- #: app/features/mec/meta_boxes/display_options.php:2008
3898
- #: app/features/mec/meta_boxes/display_options.php:2110
3899
  #, php-format
3900
  msgid "eg. %s"
3901
  msgstr "např. %s"
@@ -3903,28 +3910,28 @@ msgstr "např. %s"
3903
  #: app/features/mec/meta_boxes/display_options.php:65
3904
  #: app/features/mec/meta_boxes/display_options.php:66
3905
  #: app/features/mec/meta_boxes/display_options.php:69
3906
- #: app/features/mec/meta_boxes/display_options.php:293
3907
  #: app/features/mec/meta_boxes/display_options.php:294
3908
- #: app/features/mec/meta_boxes/display_options.php:297
3909
- #: app/features/mec/meta_boxes/display_options.php:532
3910
- #: app/features/mec/meta_boxes/display_options.php:533
3911
- #: app/features/mec/meta_boxes/display_options.php:536
3912
- #: app/features/mec/meta_boxes/display_options.php:1355
3913
- #: app/features/mec/meta_boxes/display_options.php:1356
3914
- #: app/features/mec/meta_boxes/display_options.php:1359
3915
- #: app/features/mec/meta_boxes/display_options.php:2013
3916
- #: app/features/mec/meta_boxes/display_options.php:2014
3917
- #: app/features/mec/meta_boxes/display_options.php:2017
 
3918
  #, fuzzy
3919
  #| msgid "Maximum Dates"
3920
  msgid "Maximum Date"
3921
  msgstr "Maximum termínů"
3922
 
3923
  #: app/features/mec/meta_boxes/display_options.php:70
3924
- #: app/features/mec/meta_boxes/display_options.php:298
3925
- #: app/features/mec/meta_boxes/display_options.php:537
3926
- #: app/features/mec/meta_boxes/display_options.php:1360
3927
- #: app/features/mec/meta_boxes/display_options.php:2018
3928
  #, fuzzy
3929
  #| msgid "Show events based on created shortcodes."
3930
  msgid "Show events before the specified date."
@@ -3940,66 +3947,66 @@ msgstr "Zobrazit události na základě vytvořených zkrácených kódů."
3940
  #: app/features/mec/meta_boxes/display_options.php:118
3941
  #: app/features/mec/meta_boxes/display_options.php:125
3942
  #: app/features/mec/meta_boxes/display_options.php:130
3943
- #: app/features/mec/meta_boxes/display_options.php:305
3944
- #: app/features/mec/meta_boxes/display_options.php:309
3945
- #: app/features/mec/meta_boxes/display_options.php:316
3946
- #: app/features/mec/meta_boxes/display_options.php:321
3947
- #: app/features/mec/meta_boxes/display_options.php:328
3948
- #: app/features/mec/meta_boxes/display_options.php:333
3949
- #: app/features/mec/meta_boxes/display_options.php:340
3950
- #: app/features/mec/meta_boxes/display_options.php:346
3951
- #: app/features/mec/meta_boxes/display_options.php:353
3952
- #: app/features/mec/meta_boxes/display_options.php:357
3953
- #: app/features/mec/meta_boxes/display_options.php:364
3954
- #: app/features/mec/meta_boxes/display_options.php:370
3955
- #: app/features/mec/meta_boxes/display_options.php:377
3956
- #: app/features/mec/meta_boxes/display_options.php:381
3957
- #: app/features/mec/meta_boxes/display_options.php:544
3958
- #: app/features/mec/meta_boxes/display_options.php:549
3959
- #: app/features/mec/meta_boxes/display_options.php:837
3960
- #: app/features/mec/meta_boxes/display_options.php:842
3961
- #: app/features/mec/meta_boxes/display_options.php:1246
3962
- #: app/features/mec/meta_boxes/display_options.php:1367
3963
- #: app/features/mec/meta_boxes/display_options.php:1372
3964
- #: app/features/mec/meta_boxes/display_options.php:1477
3965
- #: app/features/mec/meta_boxes/display_options.php:1483
3966
- #: app/features/mec/meta_boxes/display_options.php:1490
3967
- #: app/features/mec/meta_boxes/display_options.php:1495
3968
- #: app/features/mec/meta_boxes/display_options.php:1502
3969
- #: app/features/mec/meta_boxes/display_options.php:1506
3970
- #: app/features/mec/meta_boxes/display_options.php:1572
3971
- #: app/features/mec/meta_boxes/display_options.php:1576
3972
- #: app/features/mec/meta_boxes/display_options.php:1583
3973
- #: app/features/mec/meta_boxes/display_options.php:1587
3974
- #: app/features/mec/meta_boxes/display_options.php:1594
3975
- #: app/features/mec/meta_boxes/display_options.php:1600
3976
- #: app/features/mec/meta_boxes/display_options.php:1668
3977
- #: app/features/mec/meta_boxes/display_options.php:1673
3978
- #: app/features/mec/meta_boxes/display_options.php:1754
3979
- #: app/features/mec/meta_boxes/display_options.php:1760
3980
- #: app/features/mec/meta_boxes/display_options.php:1767
3981
- #: app/features/mec/meta_boxes/display_options.php:1771
3982
- #: app/features/mec/meta_boxes/display_options.php:1778
3983
- #: app/features/mec/meta_boxes/display_options.php:1782
3984
- #: app/features/mec/meta_boxes/display_options.php:1883
3985
- #: app/features/mec/meta_boxes/display_options.php:1889
3986
- #: app/features/mec/meta_boxes/display_options.php:1896
3987
- #: app/features/mec/meta_boxes/display_options.php:1902
3988
- #: app/features/mec/meta_boxes/display_options.php:1909
3989
- #: app/features/mec/meta_boxes/display_options.php:1915
3990
- #: app/features/mec/meta_boxes/display_options.php:1922
3991
- #: app/features/mec/meta_boxes/display_options.php:1928
3992
- #: app/features/mec/meta_boxes/display_options.php:1935
3993
- #: app/features/mec/meta_boxes/display_options.php:1941
3994
- #: app/features/mec/meta_boxes/display_options.php:2025
3995
- #: app/features/mec/meta_boxes/display_options.php:2029
3996
- #: app/features/mec/meta_boxes/display_options.php:2114
3997
- #: app/features/mec/meta_boxes/display_options.php:2119
3998
  msgid "Date Formats"
3999
  msgstr "Formát data"
4000
 
4001
  #: app/features/mec/meta_boxes/display_options.php:82
4002
- #: app/features/mec/meta_boxes/display_options.php:358
4003
  msgid "Default value is \"M d Y\""
4004
  msgstr "Výchozí hodnota je \"M d Y\""
4005
 
@@ -4008,13 +4015,13 @@ msgid "Default values are d, M and l"
4008
  msgstr "Výchozí hodnoty jsou d, M a l"
4009
 
4010
  #: app/features/mec/meta_boxes/display_options.php:108
4011
- #: app/features/mec/meta_boxes/display_options.php:347
4012
- #: app/features/mec/meta_boxes/display_options.php:371
4013
- #: app/features/mec/meta_boxes/display_options.php:1890
4014
- #: app/features/mec/meta_boxes/display_options.php:1903
4015
- #: app/features/mec/meta_boxes/display_options.php:1916
4016
- #: app/features/mec/meta_boxes/display_options.php:1929
4017
- #: app/features/mec/meta_boxes/display_options.php:1942
4018
  msgid "Default values are d, F and l"
4019
  msgstr "Výchozí hodnoty jsou d, F a I"
4020
 
@@ -4028,132 +4035,132 @@ msgid "TDefault values are d and F"
4028
  msgstr "TVýchozí hodnoty jsou d a F"
4029
 
4030
  #: app/features/mec/meta_boxes/display_options.php:138
4031
- #: app/features/mec/meta_boxes/display_options.php:400
4032
- #: app/features/mec/meta_boxes/display_options.php:557
4033
- #: app/features/mec/meta_boxes/display_options.php:850
4034
- #: app/features/mec/meta_boxes/display_options.php:930
4035
- #: app/features/mec/meta_boxes/display_options.php:1062
4036
- #: app/features/mec/meta_boxes/display_options.php:1134
4037
- #: app/features/mec/meta_boxes/display_options.php:1219
4038
- #: app/features/mec/meta_boxes/display_options.php:1799
4039
- #: app/features/mec/meta_boxes/display_options.php:1949
4040
- #: app/features/mec/meta_boxes/display_options.php:2037
4041
  msgid "eg. 6"
4042
  msgstr "např. 6"
4043
 
4044
  #: app/features/mec/meta_boxes/display_options.php:143
4045
- #: app/features/mec/meta_boxes/display_options.php:405
4046
- #: app/features/mec/meta_boxes/display_options.php:562
4047
- #: app/features/mec/meta_boxes/display_options.php:855
4048
- #: app/features/mec/meta_boxes/display_options.php:935
4049
- #: app/features/mec/meta_boxes/display_options.php:1067
4050
- #: app/features/mec/meta_boxes/display_options.php:1139
4051
- #: app/features/mec/meta_boxes/display_options.php:1280
4052
- #: app/features/mec/meta_boxes/display_options.php:1395
4053
- #: app/features/mec/meta_boxes/display_options.php:1523
4054
- #: app/features/mec/meta_boxes/display_options.php:1622
4055
- #: app/features/mec/meta_boxes/display_options.php:1691
4056
- #: app/features/mec/meta_boxes/display_options.php:1819
4057
- #: app/features/mec/meta_boxes/display_options.php:1958
4058
- #: app/features/mec/meta_boxes/display_options.php:2042
4059
  #, fuzzy
4060
  #| msgid "Local Time"
4061
  msgid "Include Local Time"
4062
  msgstr "Místní čas"
4063
 
4064
  #: app/features/mec/meta_boxes/display_options.php:155
4065
- #: app/features/mec/meta_boxes/display_options.php:417
4066
  #, fuzzy
4067
  #| msgid "Hide Event Time"
4068
  msgid "Include Events Times"
4069
  msgstr "Skrýt čas události"
4070
 
4071
  #: app/features/mec/meta_boxes/display_options.php:166
4072
- #: app/features/mec/meta_boxes/display_options.php:428
4073
- #: app/features/mec/meta_boxes/display_options.php:597
4074
- #: app/features/mec/meta_boxes/display_options.php:1452
4075
- #: app/features/mec/meta_boxes/display_options.php:2077
4076
- #: app/features/mec/meta_boxes/display_options.php:2175
4077
  msgid "Load More Button"
4078
  msgstr "Načíst tlačítko Další"
4079
 
4080
  #: app/features/mec/meta_boxes/display_options.php:176
4081
- #: app/features/mec/meta_boxes/display_options.php:607
4082
- #: app/features/mec/meta_boxes/display_options.php:2087
4083
  msgid "Show Month Divider"
4084
  msgstr "Zobrazit oddělovník měsíce"
4085
 
4086
  #: app/features/mec/meta_boxes/display_options.php:187
4087
- #: app/features/mec/meta_boxes/display_options.php:439
4088
- #: app/features/mec/meta_boxes/display_options.php:574
4089
- #: app/features/mec/meta_boxes/display_options.php:785
4090
- #: app/features/mec/meta_boxes/display_options.php:877
4091
- #: app/features/mec/meta_boxes/display_options.php:957
4092
- #: app/features/mec/meta_boxes/display_options.php:1089
4093
- #: app/features/mec/meta_boxes/display_options.php:1151
4094
- #: app/features/mec/meta_boxes/display_options.php:1292
4095
- #: app/features/mec/meta_boxes/display_options.php:1407
4096
- #: app/features/mec/meta_boxes/display_options.php:1535
4097
- #: app/features/mec/meta_boxes/display_options.php:1634
4098
- #: app/features/mec/meta_boxes/display_options.php:1703
4099
- #: app/features/mec/meta_boxes/display_options.php:1831
4100
- #: app/features/mec/meta_boxes/display_options.php:1970
4101
- #: app/features/mec/meta_boxes/display_options.php:2054
4102
- #: app/features/mec/meta_boxes/display_options.php:2136
4103
  #, fuzzy
4104
  #| msgid "Desktop Normal Screens"
4105
  msgid "Display Normal Labels"
4106
  msgstr "Desktop Normální obrazovky"
4107
 
4108
  #: app/features/mec/meta_boxes/display_options.php:199
4109
- #: app/features/mec/meta_boxes/display_options.php:451
4110
- #: app/features/mec/meta_boxes/display_options.php:586
4111
- #: app/features/mec/meta_boxes/display_options.php:797
4112
- #: app/features/mec/meta_boxes/display_options.php:889
4113
- #: app/features/mec/meta_boxes/display_options.php:969
4114
- #: app/features/mec/meta_boxes/display_options.php:1101
4115
- #: app/features/mec/meta_boxes/display_options.php:1163
4116
- #: app/features/mec/meta_boxes/display_options.php:1304
4117
- #: app/features/mec/meta_boxes/display_options.php:1419
4118
- #: app/features/mec/meta_boxes/display_options.php:1547
4119
- #: app/features/mec/meta_boxes/display_options.php:1646
4120
- #: app/features/mec/meta_boxes/display_options.php:1715
4121
- #: app/features/mec/meta_boxes/display_options.php:1843
4122
- #: app/features/mec/meta_boxes/display_options.php:1982
4123
- #: app/features/mec/meta_boxes/display_options.php:2066
4124
- #: app/features/mec/meta_boxes/display_options.php:2148
4125
  msgid "Display Reason for Cancellation"
4126
  msgstr ""
4127
 
4128
  #: app/features/mec/meta_boxes/display_options.php:210
4129
- #: app/features/mec/meta_boxes/display_options.php:462
4130
  msgid "Show Map on top"
4131
  msgstr "Zobrazit mapu nahoře"
4132
 
4133
  #: app/features/mec/meta_boxes/display_options.php:225
4134
- #: app/features/mec/meta_boxes/display_options.php:477
4135
- #: app/features/mec/meta_boxes/display_options.php:1020
4136
  msgid "Geolocation"
4137
  msgstr "Geolokace"
4138
 
4139
  #: app/features/mec/meta_boxes/display_options.php:236
4140
- #: app/features/mec/meta_boxes/display_options.php:488
4141
- #: app/features/mec/meta_boxes/display_options.php:1030
4142
  #, fuzzy
4143
  #| msgid "Disable Google Fonts"
4144
  msgid "Disable Geolocation Force Focus"
4145
  msgstr "Zakázat Google písma"
4146
 
4147
- #: app/features/mec/meta_boxes/display_options.php:251
4148
  msgid "Toggle for Month Divider"
4149
  msgstr "Přepínač pro oddělovník měsíce"
4150
 
4151
- #: app/features/mec/meta_boxes/display_options.php:269
4152
- #: app/features/mec/meta_boxes/display_options.php:513
4153
- #: app/features/mec/meta_boxes/display_options.php:650
4154
- #: app/features/mec/meta_boxes/display_options.php:910
4155
- #: app/features/mec/meta_boxes/display_options.php:1199
4156
- #: app/features/mec/meta_boxes/display_options.php:1471
4157
  #: app/features/mec/settings.php:296 app/features/mec/settings.php:311
4158
  #: app/features/mec/settings.php:329 app/features/mec/settings.php:370
4159
  #: app/features/mec/settings.php:385 app/features/mec/settings.php:403
@@ -4163,9 +4170,9 @@ msgstr "Přepínač pro oddělovník měsíce"
4163
  msgid "Clean"
4164
  msgstr "Čistý"
4165
 
4166
- #: app/features/mec/meta_boxes/display_options.php:272
4167
- #: app/features/mec/meta_boxes/display_options.php:652
4168
- #: app/features/mec/meta_boxes/display_options.php:913
4169
  #: app/features/mec/settings.php:299 app/features/mec/settings.php:332
4170
  #: app/features/mec/settings.php:373 app/features/mec/settings.php:406
4171
  #: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
@@ -4173,14 +4180,14 @@ msgstr "Čistý"
4173
  msgid "Simple"
4174
  msgstr "Jednoduchý"
4175
 
4176
- #: app/features/mec/meta_boxes/display_options.php:273
4177
  #: app/features/popup/shortcode.php:127
4178
  msgid "Colorful"
4179
  msgstr "Plněbarevný"
4180
 
4181
- #: app/features/mec/meta_boxes/display_options.php:274
4182
- #: app/features/mec/meta_boxes/display_options.php:651
4183
- #: app/features/mec/meta_boxes/display_options.php:912
4184
  #: app/features/mec/settings.php:298 app/features/mec/settings.php:334
4185
  #: app/features/mec/settings.php:372 app/features/mec/settings.php:408
4186
  #: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
@@ -4188,320 +4195,320 @@ msgstr "Plněbarevný"
4188
  msgid "Novel"
4189
  msgstr "Novela"
4190
 
4191
- #: app/features/mec/meta_boxes/display_options.php:310
4192
- #: app/features/mec/meta_boxes/display_options.php:2030
4193
  msgid "Default value is \"d F Y"
4194
  msgstr "Výchozí hodnota je \"d F Y"
4195
 
4196
- #: app/features/mec/meta_boxes/display_options.php:322
4197
  msgid "Default values are d and F"
4198
  msgstr "Výchozí hodnoty jsou d a F"
4199
 
4200
- #: app/features/mec/meta_boxes/display_options.php:334
4201
  msgid "Default values are d and M"
4202
  msgstr "Výchozí hodnoty jsou d a M"
4203
 
4204
- #: app/features/mec/meta_boxes/display_options.php:382
4205
  msgid "Default value is \"d F Y\""
4206
  msgstr "Výchozí hodnota je \"d F Y\""
4207
 
4208
- #: app/features/mec/meta_boxes/display_options.php:388
4209
- #: app/features/mec/meta_boxes/display_options.php:1789
4210
- #: app/features/mec/meta_boxes/display_options.php:2126
4211
  msgid "Count in row"
4212
  msgstr "Počet v řadě"
4213
 
4214
- #: app/features/mec/meta_boxes/display_options.php:506
4215
- #: app/features/mec/meta_boxes/display_options.php:814
4216
- #: app/features/mec/meta_boxes/display_options.php:997
4217
- #: app/features/mec/meta_boxes/display_options.php:1191
4218
- #: app/features/mec/meta_boxes/display_options.php:1335
4219
- #: app/features/mec/meta_boxes/display_options.php:1662
4220
  #, php-format
4221
  msgid "%s is required to use this skin."
4222
  msgstr "%s je nutné použít tento vzhled."
4223
 
4224
- #: app/features/mec/meta_boxes/display_options.php:550
4225
- #: app/features/mec/meta_boxes/display_options.php:843
4226
  msgid "Default values are l and F j"
4227
  msgstr "Výchozí hodnoty jsou I a F j"
4228
 
4229
- #: app/features/mec/meta_boxes/display_options.php:636
4230
  msgid "Default View"
4231
  msgstr "Výchozí zobrazení"
4232
 
4233
- #: app/features/mec/meta_boxes/display_options.php:638
4234
- #: app/features/mec/meta_boxes/display_options.php:662
4235
- #: app/libraries/main.php:330 app/libraries/main.php:1935
4236
- #: app/libraries/main.php:1960
4237
  msgid "List View"
4238
  msgstr "Zobrazení seznamu"
4239
 
4240
- #: app/features/mec/meta_boxes/display_options.php:639
4241
- #: app/features/mec/meta_boxes/display_options.php:683
4242
- #: app/libraries/main.php:331 app/libraries/main.php:1936
4243
- #: app/libraries/main.php:1961
4244
  msgid "Grid View"
4245
  msgstr "Zobrazení mřížky"
4246
 
4247
- #: app/features/mec/meta_boxes/display_options.php:640
4248
- #: app/features/mec/meta_boxes/display_options.php:693
4249
  #: app/libraries/main.php:347
4250
  #, fuzzy
4251
  #| msgid "Timetable View"
4252
  msgid "Tile View"
4253
  msgstr "Zobrazení rozvrhu"
4254
 
4255
- #: app/features/mec/meta_boxes/display_options.php:641
4256
- #: app/features/mec/meta_boxes/display_options.php:704
4257
- #: app/libraries/main.php:334 app/libraries/main.php:1929
4258
- #: app/libraries/main.php:1954
4259
  msgid "Yearly View"
4260
  msgstr "Roční zobrazení"
4261
 
4262
- #: app/features/mec/meta_boxes/display_options.php:642
4263
- #: app/features/mec/meta_boxes/display_options.php:743
4264
  msgid "Monthly/Calendar View"
4265
  msgstr "Měsíční / kalendářní zobrazení"
4266
 
4267
- #: app/features/mec/meta_boxes/display_options.php:643
4268
- #: app/features/mec/meta_boxes/display_options.php:753
4269
- #: app/libraries/main.php:337 app/libraries/main.php:1931
4270
- #: app/libraries/main.php:1956
4271
  msgid "Weekly View"
4272
  msgstr "Týdenní zobrazení"
4273
 
4274
- #: app/features/mec/meta_boxes/display_options.php:644
4275
- #: app/features/mec/meta_boxes/display_options.php:763
4276
- #: app/libraries/main.php:336 app/libraries/main.php:1932
4277
- #: app/libraries/main.php:1957
4278
  msgid "Daily View"
4279
  msgstr "Denní zobrazení"
4280
 
4281
- #: app/features/mec/meta_boxes/display_options.php:648
4282
  #: app/features/popup/shortcode.php:157
4283
  msgid "Monthly Style"
4284
  msgstr "Měsíční styl"
4285
 
4286
- #: app/features/mec/meta_boxes/display_options.php:656
4287
- #: app/features/mec/meta_boxes/display_options.php:849
4288
- #: app/features/mec/meta_boxes/display_options.php:929
4289
- #: app/features/mec/meta_boxes/display_options.php:1061
4290
- #: app/features/mec/meta_boxes/display_options.php:1133
4291
- #: app/features/mec/meta_boxes/display_options.php:1218
4292
  msgid "Events per day"
4293
  msgstr "Události za den"
4294
 
4295
- #: app/features/mec/meta_boxes/display_options.php:677
4296
  #, fuzzy
4297
  #| msgid "Lightbox Date Format"
4298
  msgid "List View Date Formats"
4299
  msgstr "Formát data Lightbox"
4300
 
4301
- #: app/features/mec/meta_boxes/display_options.php:731
4302
  #, fuzzy
4303
  #| msgid "Date Formats"
4304
  msgid "Yearly View Date Formats"
4305
  msgstr "Formát data"
4306
 
4307
- #: app/features/mec/meta_boxes/display_options.php:738
4308
  #, php-format
4309
  msgid "%s is required to use <b>Yearly View</b> skin."
4310
  msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
4311
 
4312
- #: app/features/mec/meta_boxes/display_options.php:771
4313
  msgid "The price shows only in List View."
4314
  msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
4315
 
4316
- #: app/features/mec/meta_boxes/display_options.php:774
4317
  msgid "Display Event Price"
4318
  msgstr "Zobrazit cenu události"
4319
 
4320
- #: app/features/mec/meta_boxes/display_options.php:828
4321
  msgid "Start of Current Year"
4322
  msgstr "Začátek aktuálního roku"
4323
 
4324
- #: app/features/mec/meta_boxes/display_options.php:829
4325
  msgid "Start of Next Year"
4326
  msgstr "Začátek příštího roku"
4327
 
4328
- #: app/features/mec/meta_boxes/display_options.php:866
4329
- #: app/features/mec/meta_boxes/display_options.php:946
4330
- #: app/features/mec/meta_boxes/display_options.php:1078
4331
- #: app/features/mec/meta_boxes/display_options.php:1174
4332
- #: app/features/mec/meta_boxes/display_options.php:1316
4333
- #: app/features/mec/meta_boxes/display_options.php:2159
4334
  msgid "Next/Previous Buttons"
4335
  msgstr "Tlačítka Další / Předchozí"
4336
 
4337
- #: app/features/mec/meta_boxes/display_options.php:898
4338
  msgid "For showing next/previous year navigation."
4339
  msgstr "Pro zobrazení navigace další / předchozí."
4340
 
4341
- #: app/features/mec/meta_boxes/display_options.php:980
4342
  msgid "Uppercase Text"
4343
  msgstr "Text velkými písmeny"
4344
 
4345
- #: app/features/mec/meta_boxes/display_options.php:988
4346
- #: app/features/mec/meta_boxes/display_options.php:1110
4347
- #: app/features/mec/meta_boxes/display_options.php:1182
4348
- #: app/features/mec/meta_boxes/display_options.php:1324
4349
- #: app/features/mec/meta_boxes/display_options.php:2167
4350
  msgid "For showing next/previous month navigation."
4351
  msgstr "Pro zobrazení navigace další / předchozí měsíc."
4352
 
4353
- #: app/features/mec/meta_boxes/display_options.php:1015
4354
  msgid "Maximum events"
4355
  msgstr "Maximum událostí"
4356
 
4357
- #: app/features/mec/meta_boxes/display_options.php:1016
4358
  msgid "eg. 200"
4359
  msgstr "např. 200"
4360
 
4361
- #: app/features/mec/meta_boxes/display_options.php:1038
4362
  msgid "The geolocation feature works only in secure (https) websites."
4363
  msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
4364
 
4365
- #: app/features/mec/meta_boxes/display_options.php:1122
4366
- #: app/features/mec/meta_boxes/display_options.php:1207
4367
  msgid "Current Week"
4368
  msgstr "Aktuální týden"
4369
 
4370
- #: app/features/mec/meta_boxes/display_options.php:1123
4371
- #: app/features/mec/meta_boxes/display_options.php:1208
4372
  msgid "Next Week"
4373
  msgstr "Další týden"
4374
 
4375
- #: app/features/mec/meta_boxes/display_options.php:1223
4376
  msgid "Number of Days"
4377
  msgstr "Počet dnů"
4378
 
4379
- #: app/features/mec/meta_boxes/display_options.php:1231
4380
  msgid "Week Start"
4381
  msgstr "Začátek týdne"
4382
 
4383
- #: app/features/mec/meta_boxes/display_options.php:1233
4384
  msgid "Inherite from WordPress options"
4385
  msgstr "Zdědit z možností WordPressu"
4386
 
4387
- #: app/features/mec/meta_boxes/display_options.php:1248
4388
  msgid "1:00"
4389
  msgstr ""
4390
 
4391
- #: app/features/mec/meta_boxes/display_options.php:1249
4392
  msgid "2:00"
4393
  msgstr ""
4394
 
4395
- #: app/features/mec/meta_boxes/display_options.php:1250
4396
  msgid "3:00"
4397
  msgstr ""
4398
 
4399
- #: app/features/mec/meta_boxes/display_options.php:1251
4400
  msgid "4:00"
4401
  msgstr ""
4402
 
4403
- #: app/features/mec/meta_boxes/display_options.php:1252
4404
  msgid "5:00"
4405
  msgstr ""
4406
 
4407
- #: app/features/mec/meta_boxes/display_options.php:1253
4408
  msgid "6:00"
4409
  msgstr ""
4410
 
4411
- #: app/features/mec/meta_boxes/display_options.php:1254
4412
  msgid "7:00"
4413
  msgstr ""
4414
 
4415
- #: app/features/mec/meta_boxes/display_options.php:1255
4416
  msgid "8:00"
4417
  msgstr ""
4418
 
4419
- #: app/features/mec/meta_boxes/display_options.php:1256
4420
  msgid "9:00"
4421
  msgstr ""
4422
 
4423
- #: app/features/mec/meta_boxes/display_options.php:1257
4424
  msgid "10:00"
4425
  msgstr ""
4426
 
4427
- #: app/features/mec/meta_boxes/display_options.php:1258
4428
  msgid "11:00"
4429
  msgstr ""
4430
 
4431
- #: app/features/mec/meta_boxes/display_options.php:1259
4432
  msgid "12:00"
4433
  msgstr ""
4434
 
4435
- #: app/features/mec/meta_boxes/display_options.php:1262
4436
  msgid "13:00"
4437
  msgstr ""
4438
 
4439
- #: app/features/mec/meta_boxes/display_options.php:1263
4440
  msgid "14:00"
4441
  msgstr ""
4442
 
4443
- #: app/features/mec/meta_boxes/display_options.php:1264
4444
  msgid "15:00"
4445
  msgstr ""
4446
 
4447
- #: app/features/mec/meta_boxes/display_options.php:1265
4448
  msgid "16:00"
4449
  msgstr ""
4450
 
4451
- #: app/features/mec/meta_boxes/display_options.php:1266
4452
  msgid "17:00"
4453
  msgstr ""
4454
 
4455
- #: app/features/mec/meta_boxes/display_options.php:1267
4456
  msgid "18:00"
4457
  msgstr ""
4458
 
4459
- #: app/features/mec/meta_boxes/display_options.php:1268
4460
  msgid "19:00"
4461
  msgstr ""
4462
 
4463
- #: app/features/mec/meta_boxes/display_options.php:1269
4464
  msgid "20:00"
4465
  msgstr ""
4466
 
4467
- #: app/features/mec/meta_boxes/display_options.php:1270
4468
  msgid "21:00"
4469
  msgstr ""
4470
 
4471
- #: app/features/mec/meta_boxes/display_options.php:1271
4472
  msgid "22:00"
4473
  msgstr ""
4474
 
4475
- #: app/features/mec/meta_boxes/display_options.php:1272
4476
  msgid "23:00"
4477
  msgstr ""
4478
 
4479
- #: app/features/mec/meta_boxes/display_options.php:1273
4480
  msgid "24:00"
4481
  msgstr ""
4482
 
4483
- #: app/features/mec/meta_boxes/display_options.php:1373
4484
- #: app/features/mec/meta_boxes/display_options.php:1674
4485
  msgid "Default values are j and F"
4486
  msgstr "Výchozí hodnoty jsou j a F"
4487
 
4488
- #: app/features/mec/meta_boxes/display_options.php:1380
4489
  msgid "eg. 24"
4490
  msgstr "např. 24"
4491
 
4492
- #: app/features/mec/meta_boxes/display_options.php:1383
4493
  msgid "Filter By"
4494
  msgstr "Filtrovat podle"
4495
 
4496
- #: app/features/mec/meta_boxes/display_options.php:1385
4497
  msgid "None"
4498
  msgstr "Žádný"
4499
 
4500
- #: app/features/mec/meta_boxes/display_options.php:1430
4501
  msgid "Fit to row"
4502
  msgstr "Přizpůsobit řádku"
4503
 
4504
- #: app/features/mec/meta_boxes/display_options.php:1431
4505
  msgid ""
4506
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
4507
  "would expect from a layout that uses CSS floats."
@@ -4509,122 +4516,122 @@ msgstr ""
4509
  "Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
4510
  "očekávali od rozložení používajícího plovoucí CSS."
4511
 
4512
- #: app/features/mec/meta_boxes/display_options.php:1441
4513
  msgid "Convert Masonry to Grid"
4514
  msgstr "Převést zdivo na mřížku"
4515
 
4516
- #: app/features/mec/meta_boxes/display_options.php:1442
4517
  msgid "For using this option, your events should come with image"
4518
  msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
4519
 
4520
- #: app/features/mec/meta_boxes/display_options.php:1484
4521
  msgid "Default values are d, M and Y"
4522
  msgstr "Výchozí hodnoty jsou d, M a Y"
4523
 
4524
- #: app/features/mec/meta_boxes/display_options.php:1496
4525
  msgid "Default values are \"F d\" and l"
4526
  msgstr "Výchozí hodnota je \"F d\" a I"
4527
 
4528
- #: app/features/mec/meta_boxes/display_options.php:1507
4529
  msgid "Default value is \"l, F d Y\""
4530
  msgstr "Výchozí hodnota je \"I, F d Y\""
4531
 
4532
- #: app/features/mec/meta_boxes/display_options.php:1565
4533
  #: app/features/popup/shortcode.php:335
4534
  msgid "Style 1"
4535
  msgstr "Styl 1"
4536
 
4537
- #: app/features/mec/meta_boxes/display_options.php:1566
4538
  #: app/features/popup/shortcode.php:340
4539
  msgid "Style 2"
4540
  msgstr "Styl 2"
4541
 
4542
- #: app/features/mec/meta_boxes/display_options.php:1567
4543
  #: app/features/popup/shortcode.php:345
4544
  msgid "Style 3"
4545
  msgstr "Styl 3"
4546
 
4547
- #: app/features/mec/meta_boxes/display_options.php:1577
4548
- #: app/features/mec/meta_boxes/display_options.php:1588
4549
  msgid "Default value is \"j F Y\""
4550
  msgstr "Výchozí hodnota je \"j F Y\""
4551
 
4552
- #: app/features/mec/meta_boxes/display_options.php:1601
4553
  msgid "Default values are j, F and Y"
4554
  msgstr "Výchozí hodnoty jsou j, F a Y"
4555
 
4556
- #: app/features/mec/meta_boxes/display_options.php:1609
4557
- #: app/features/mec/meta_boxes/display_options.php:1682
4558
  msgid " -- Next Upcoming Event -- "
4559
  msgstr " -- Další nadcházející událost -- "
4560
 
4561
- #: app/features/mec/meta_boxes/display_options.php:1616
4562
  msgid "Background Color"
4563
  msgstr "Barva pozadí"
4564
 
4565
- #: app/features/mec/meta_boxes/display_options.php:1733
4566
- #: app/features/mec/meta_boxes/display_options.php:1861
4567
  #: app/features/popup/shortcode.php:378 app/features/popup/shortcode.php:407
4568
  msgid "Type 1"
4569
  msgstr "Typ 1"
4570
 
4571
- #: app/features/mec/meta_boxes/display_options.php:1734
4572
- #: app/features/mec/meta_boxes/display_options.php:1862
4573
  #: app/features/popup/shortcode.php:383 app/features/popup/shortcode.php:412
4574
  msgid "Type 2"
4575
  msgstr "Typ 2"
4576
 
4577
- #: app/features/mec/meta_boxes/display_options.php:1735
4578
- #: app/features/mec/meta_boxes/display_options.php:1863
4579
  #: app/features/popup/shortcode.php:388 app/features/popup/shortcode.php:417
4580
  msgid "Type 3"
4581
  msgstr "Typ 3"
4582
 
4583
- #: app/features/mec/meta_boxes/display_options.php:1736
4584
- #: app/features/mec/meta_boxes/display_options.php:1864
4585
  #: app/features/popup/shortcode.php:393 app/features/popup/shortcode.php:422
4586
  msgid "Type 4"
4587
  msgstr "Typ 4"
4588
 
4589
- #: app/features/mec/meta_boxes/display_options.php:1761
4590
  msgid "Default values are d, F and Y"
4591
  msgstr "Výchozí hodnoty jsou d, F a Y"
4592
 
4593
- #: app/features/mec/meta_boxes/display_options.php:1772
4594
- #: app/features/mec/meta_boxes/display_options.php:1783
4595
  msgid "Default value is \"M d, Y\""
4596
  msgstr "Výchozí hodnota je \"M d, Y\""
4597
 
4598
- #: app/features/mec/meta_boxes/display_options.php:1802
4599
- #: app/features/mec/meta_boxes/display_options.php:1952
4600
  msgid "Auto Play Time"
4601
  msgstr "Čas automatického přehrávání"
4602
 
4603
- #: app/features/mec/meta_boxes/display_options.php:1803
4604
- #: app/features/mec/meta_boxes/display_options.php:1953
4605
  msgid "eg. 3000 default is 3 second"
4606
  msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
4607
 
4608
- #: app/features/mec/meta_boxes/display_options.php:1809
4609
  msgid "Archive Link"
4610
  msgstr "Odkaz na archiv"
4611
 
4612
- #: app/features/mec/meta_boxes/display_options.php:1813
4613
  msgid "Head Text"
4614
  msgstr "Text hlavičky"
4615
 
4616
- #: app/features/mec/meta_boxes/display_options.php:1865
4617
  #: app/features/popup/shortcode.php:427
4618
  msgid "Type 5"
4619
  msgstr "Typ 5"
4620
 
4621
- #: app/features/mec/meta_boxes/display_options.php:2120
4622
  #, fuzzy
4623
  #| msgid "Default values are j and F"
4624
  msgid "Default values are j and M"
4625
  msgstr "Výchozí hodnoty jsou j a F"
4626
 
4627
- #: app/features/mec/meta_boxes/display_options.php:2171
4628
  #, fuzzy
4629
  #| msgid "eg. 6"
4630
  msgid "eg. 60"
@@ -4771,8 +4778,8 @@ msgstr "Zobrazit vyhledávací formulář"
4771
  #: app/features/mec/meta_boxes/search_form.php:782
4772
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4773
  #: app/features/search.php:86 app/features/speakers.php:61
4774
- #: app/features/speakers.php:269 app/libraries/main.php:5868
4775
- #: app/libraries/main.php:5916 app/libraries/skins.php:1006
4776
  #: app/modules/speakers/details.php:18
4777
  msgid "Speaker"
4778
  msgstr "Řečník"
@@ -4789,7 +4796,7 @@ msgstr "Řečník"
4789
  #: app/features/mec/meta_boxes/search_form.php:683
4790
  #: app/features/mec/meta_boxes/search_form.php:789
4791
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4792
- #: app/features/search.php:92 app/libraries/skins.php:1032
4793
  msgid "Tag"
4794
  msgstr "Štítek"
4795
 
@@ -5092,6 +5099,18 @@ msgstr "Limit účastníků"
5092
  msgid "Add booking activity to user profile"
5093
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5094
 
 
 
 
 
 
 
 
 
 
 
 
 
5095
  #: app/features/mec/notifications.php:37
5096
  msgid "Enable booking notification"
5097
  msgstr "Povolit upozornění na rezervaci"
@@ -5102,508 +5121,521 @@ msgstr "Povolit upozornění na rezervaci"
5102
  msgid "Sent to attendee after booking to notify them."
5103
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
5104
 
5105
- #: app/features/mec/notifications.php:43 app/features/mec/notifications.php:147
5106
- #: app/features/mec/notifications.php:255
5107
- #: app/features/mec/notifications.php:368
5108
- #: app/features/mec/notifications.php:483
5109
- #: app/features/mec/notifications.php:593
5110
- #: app/features/mec/notifications.php:718
5111
- #: app/features/mec/notifications.php:801 app/features/mec/report.php:54
 
5112
  msgid "Email Subject"
5113
  msgstr "Předmět emailové zprávy"
5114
 
5115
  #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:56
5116
- #: app/features/mec/notifications.php:153
5117
- #: app/features/mec/notifications.php:160
5118
- #: app/features/mec/notifications.php:261
5119
- #: app/features/mec/notifications.php:268
5120
- #: app/features/mec/notifications.php:374
5121
- #: app/features/mec/notifications.php:381
5122
- #: app/features/mec/notifications.php:489
5123
  #: app/features/mec/notifications.php:496
5124
- #: app/features/mec/notifications.php:599
5125
- #: app/features/mec/notifications.php:606
5126
- #: app/features/mec/notifications.php:724
5127
- #: app/features/mec/notifications.php:731
5128
- #: app/features/mec/notifications.php:807
5129
- #: app/features/mec/notifications.php:814
 
5130
  msgid "Receiver Users"
5131
  msgstr ""
5132
 
5133
- #: app/features/mec/notifications.php:57 app/features/mec/notifications.php:161
5134
- #: app/features/mec/notifications.php:269
5135
- #: app/features/mec/notifications.php:382
5136
- #: app/features/mec/notifications.php:497
5137
- #: app/features/mec/notifications.php:607
5138
- #: app/features/mec/notifications.php:732
5139
- #: app/features/mec/notifications.php:815
5140
  msgid "Select users to send a copy of email to them!"
5141
  msgstr ""
5142
 
5143
  #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:73
5144
- #: app/features/mec/notifications.php:170
5145
- #: app/features/mec/notifications.php:177
5146
- #: app/features/mec/notifications.php:278
5147
- #: app/features/mec/notifications.php:285
5148
- #: app/features/mec/notifications.php:391
5149
- #: app/features/mec/notifications.php:398
5150
- #: app/features/mec/notifications.php:506
5151
  #: app/features/mec/notifications.php:513
5152
- #: app/features/mec/notifications.php:616
5153
- #: app/features/mec/notifications.php:623
5154
- #: app/features/mec/notifications.php:741
5155
- #: app/features/mec/notifications.php:748
5156
- #: app/features/mec/notifications.php:824
5157
- #: app/features/mec/notifications.php:831
 
5158
  msgid "Receiver Roles"
5159
  msgstr ""
5160
 
5161
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:178
5162
- #: app/features/mec/notifications.php:286
5163
- #: app/features/mec/notifications.php:399
5164
- #: app/features/mec/notifications.php:514
5165
- #: app/features/mec/notifications.php:624
5166
- #: app/features/mec/notifications.php:749
5167
- #: app/features/mec/notifications.php:832
5168
  msgid "Select users a specific role."
5169
  msgstr ""
5170
 
5171
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:86
5172
- #: app/features/mec/notifications.php:186
5173
- #: app/features/mec/notifications.php:190
5174
- #: app/features/mec/notifications.php:294
5175
  #: app/features/mec/notifications.php:298
5176
- #: app/features/mec/notifications.php:407
5177
- #: app/features/mec/notifications.php:411
5178
- #: app/features/mec/notifications.php:522
5179
- #: app/features/mec/notifications.php:526
5180
- #: app/features/mec/notifications.php:632
5181
- #: app/features/mec/notifications.php:636
5182
- #: app/features/mec/notifications.php:757
5183
- #: app/features/mec/notifications.php:761
5184
- #: app/features/mec/notifications.php:840
5185
- #: app/features/mec/notifications.php:844
 
5186
  msgid "Custom Recipients"
5187
  msgstr "Vlastní příjemci"
5188
 
5189
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:191
5190
- #: app/features/mec/notifications.php:299
5191
- #: app/features/mec/notifications.php:412
5192
- #: app/features/mec/notifications.php:527
5193
- #: app/features/mec/notifications.php:637
5194
- #: app/features/mec/notifications.php:762
5195
- #: app/features/mec/notifications.php:845
5196
  msgid "Insert comma separated emails for multiple recipients."
5197
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
5198
 
5199
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:423
5200
- #: app/features/mec/notifications.php:534
5201
  msgid "Send the email to event organizer"
5202
  msgstr "Pošlete e-mail organizátorovi události"
5203
 
5204
- #: app/features/mec/notifications.php:97 app/features/mec/notifications.php:197
5205
- #: app/features/mec/notifications.php:309
5206
- #: app/features/mec/notifications.php:430
5207
- #: app/features/mec/notifications.php:537
5208
- #: app/features/mec/notifications.php:654
5209
- #: app/features/mec/notifications.php:768
5210
- #: app/features/mec/notifications.php:851
5211
  msgid "Email Content"
5212
  msgstr "Obsah zprávy"
5213
 
5214
  #: app/features/mec/notifications.php:100
5215
- #: app/features/mec/notifications.php:200
5216
- #: app/features/mec/notifications.php:312
5217
- #: app/features/mec/notifications.php:433
5218
- #: app/features/mec/notifications.php:540
5219
- #: app/features/mec/notifications.php:657
5220
- #: app/features/mec/notifications.php:771
5221
- #: app/features/mec/notifications.php:854 app/features/mec/report.php:56
5222
  #, fuzzy
5223
  #| msgid "You can use following placeholders"
5224
  msgid "You can use the following placeholders"
5225
  msgstr "Můžete použít následující zástupné symboly"
5226
 
5227
  #: app/features/mec/notifications.php:102
5228
- #: app/features/mec/notifications.php:202
5229
- #: app/features/mec/notifications.php:314
5230
- #: app/features/mec/notifications.php:435
5231
- #: app/features/mec/notifications.php:542
5232
- #: app/features/mec/notifications.php:659
5233
  msgid "First name of attendee"
5234
  msgstr "První jméno účastníka"
5235
 
5236
  #: app/features/mec/notifications.php:103
5237
- #: app/features/mec/notifications.php:203
5238
- #: app/features/mec/notifications.php:315
5239
- #: app/features/mec/notifications.php:436
5240
- #: app/features/mec/notifications.php:543
5241
- #: app/features/mec/notifications.php:660
5242
  msgid "Last name of attendee"
5243
  msgstr "Příjmení účastníka"
5244
 
5245
  #: app/features/mec/notifications.php:104
5246
- #: app/features/mec/notifications.php:204
5247
- #: app/features/mec/notifications.php:316
5248
- #: app/features/mec/notifications.php:437
5249
- #: app/features/mec/notifications.php:544
5250
- #: app/features/mec/notifications.php:661
5251
  msgid "Email of attendee"
5252
  msgstr "Email účastníka"
5253
 
5254
  #: app/features/mec/notifications.php:105
5255
- #: app/features/mec/notifications.php:205
5256
- #: app/features/mec/notifications.php:317
5257
- #: app/features/mec/notifications.php:438
5258
- #: app/features/mec/notifications.php:545
5259
- #: app/features/mec/notifications.php:662
5260
  msgid "Booked date of event"
5261
  msgstr "Datum rezervace akce"
5262
 
5263
  #: app/features/mec/notifications.php:106
5264
- #: app/features/mec/notifications.php:206
5265
- #: app/features/mec/notifications.php:318
5266
- #: app/features/mec/notifications.php:439
5267
- #: app/features/mec/notifications.php:546
5268
- #: app/features/mec/notifications.php:663
5269
  msgid "Booked time of event"
5270
  msgstr "Čas rezervace akce"
5271
 
5272
  #: app/features/mec/notifications.php:107
5273
- #: app/features/mec/notifications.php:207
5274
- #: app/features/mec/notifications.php:319
5275
- #: app/features/mec/notifications.php:440
5276
- #: app/features/mec/notifications.php:547
5277
- #: app/features/mec/notifications.php:664
 
 
 
 
 
 
 
 
 
 
 
5278
  msgid "Booking Price"
5279
  msgstr "Cena rezervace"
5280
 
5281
- #: app/features/mec/notifications.php:108
5282
- #: app/features/mec/notifications.php:208
5283
- #: app/features/mec/notifications.php:320
5284
- #: app/features/mec/notifications.php:441
5285
- #: app/features/mec/notifications.php:548
5286
- #: app/features/mec/notifications.php:665
5287
  #, fuzzy
5288
  #| msgid "Cannot find the booking!"
5289
  msgid "Date and time of booking"
5290
  msgstr "Nemohu najít rezervaci!"
5291
 
5292
- #: app/features/mec/notifications.php:109
5293
- #: app/features/mec/notifications.php:209
5294
- #: app/features/mec/notifications.php:321
5295
- #: app/features/mec/notifications.php:442
5296
- #: app/features/mec/notifications.php:549
5297
- #: app/features/mec/notifications.php:666
5298
- #: app/features/mec/notifications.php:779
5299
- #: app/features/mec/notifications.php:862
5300
  msgid "Your website title"
5301
  msgstr "Název vašeho webu"
5302
 
5303
- #: app/features/mec/notifications.php:110
5304
- #: app/features/mec/notifications.php:210
5305
- #: app/features/mec/notifications.php:322
5306
- #: app/features/mec/notifications.php:443
5307
- #: app/features/mec/notifications.php:550
5308
- #: app/features/mec/notifications.php:667
5309
- #: app/features/mec/notifications.php:780
5310
- #: app/features/mec/notifications.php:863
5311
  msgid "Your website URL"
5312
  msgstr "URL vašeho webu"
5313
 
5314
- #: app/features/mec/notifications.php:111
5315
- #: app/features/mec/notifications.php:211
5316
- #: app/features/mec/notifications.php:323
5317
- #: app/features/mec/notifications.php:444
5318
- #: app/features/mec/notifications.php:551
5319
- #: app/features/mec/notifications.php:668
5320
- #: app/features/mec/notifications.php:781
5321
- #: app/features/mec/notifications.php:864
5322
  msgid "Your website description"
5323
  msgstr "Popis vašeho webu"
5324
 
5325
- #: app/features/mec/notifications.php:112
5326
- #: app/features/mec/notifications.php:212
5327
- #: app/features/mec/notifications.php:324
5328
- #: app/features/mec/notifications.php:445
5329
- #: app/features/mec/notifications.php:552
5330
- #: app/features/mec/notifications.php:669
5331
  msgid "Event title"
5332
  msgstr "Název události"
5333
 
5334
- #: app/features/mec/notifications.php:113
5335
- #: app/features/mec/notifications.php:213
5336
- #: app/features/mec/notifications.php:325
5337
- #: app/features/mec/notifications.php:446
5338
- #: app/features/mec/notifications.php:553
5339
- #: app/features/mec/notifications.php:670
5340
  msgid "Event link"
5341
  msgstr "Odkaz události"
5342
 
5343
- #: app/features/mec/notifications.php:114
5344
- #: app/features/mec/notifications.php:214
5345
- #: app/features/mec/notifications.php:326
5346
- #: app/features/mec/notifications.php:775
5347
- #: app/features/mec/notifications.php:858
5348
  #, fuzzy
5349
  #| msgid "Start Date"
5350
  msgid "Event Start Date"
5351
  msgstr "Počátečná den"
5352
 
5353
- #: app/features/mec/notifications.php:115
5354
- #: app/features/mec/notifications.php:215
5355
- #: app/features/mec/notifications.php:327
5356
- #: app/features/mec/notifications.php:776
5357
- #: app/features/mec/notifications.php:859
5358
  #, fuzzy
5359
  #| msgid "End Date"
5360
  msgid "Event End Date"
5361
  msgstr "Konečný den"
5362
 
5363
- #: app/features/mec/notifications.php:116
5364
- #: app/features/mec/notifications.php:216
5365
- #: app/features/mec/notifications.php:328
5366
- #: app/features/mec/notifications.php:447
5367
- #: app/features/mec/notifications.php:554
5368
- #: app/features/mec/notifications.php:671
5369
  msgid "Speaker name of booked event"
5370
  msgstr "Jméno řečníka rezervované události"
5371
 
5372
- #: app/features/mec/notifications.php:117
5373
- #: app/features/mec/notifications.php:217
5374
- #: app/features/mec/notifications.php:329
5375
- #: app/features/mec/notifications.php:448
5376
- #: app/features/mec/notifications.php:555
5377
- #: app/features/mec/notifications.php:672
5378
  msgid "Organizer name of booked event"
5379
  msgstr "Jméno organizátora rezervované události"
5380
 
5381
- #: app/features/mec/notifications.php:118
5382
- #: app/features/mec/notifications.php:218
5383
- #: app/features/mec/notifications.php:330
5384
- #: app/features/mec/notifications.php:449
5385
- #: app/features/mec/notifications.php:556
5386
- #: app/features/mec/notifications.php:673
5387
  msgid "Organizer tel of booked event"
5388
  msgstr "Telefon organizátora rezervované události"
5389
 
5390
- #: app/features/mec/notifications.php:119
5391
- #: app/features/mec/notifications.php:219
5392
- #: app/features/mec/notifications.php:331
5393
- #: app/features/mec/notifications.php:450
5394
- #: app/features/mec/notifications.php:557
5395
- #: app/features/mec/notifications.php:674
5396
  msgid "Organizer email of booked event"
5397
  msgstr "Email organizátora rezervované události"
5398
 
5399
- #: app/features/mec/notifications.php:120
5400
- #: app/features/mec/notifications.php:220
5401
- #: app/features/mec/notifications.php:332
5402
- #: app/features/mec/notifications.php:451
5403
- #: app/features/mec/notifications.php:558
5404
- #: app/features/mec/notifications.php:675
5405
  msgid "Location name of booked event"
5406
  msgstr "Název místa rezervované události"
5407
 
5408
- #: app/features/mec/notifications.php:121
5409
- #: app/features/mec/notifications.php:221
5410
- #: app/features/mec/notifications.php:333
5411
- #: app/features/mec/notifications.php:452
5412
- #: app/features/mec/notifications.php:559
5413
- #: app/features/mec/notifications.php:676
5414
  msgid "Location address of booked event"
5415
  msgstr "Adresa místa rezervované události"
5416
 
5417
- #: app/features/mec/notifications.php:122
5418
- #: app/features/mec/notifications.php:222
5419
- #: app/features/mec/notifications.php:334
5420
- #: app/features/mec/notifications.php:453
5421
- #: app/features/mec/notifications.php:560
5422
- #: app/features/mec/notifications.php:677
5423
  #, fuzzy
5424
  #| msgid "Location name of booked event"
5425
  msgid "Additional locations name of booked event"
5426
  msgstr "Název místa rezervované události"
5427
 
5428
- #: app/features/mec/notifications.php:123
5429
- #: app/features/mec/notifications.php:223
5430
- #: app/features/mec/notifications.php:335
5431
- #: app/features/mec/notifications.php:454
5432
- #: app/features/mec/notifications.php:561
5433
- #: app/features/mec/notifications.php:678
5434
  #, fuzzy
5435
  #| msgid "Location address of booked event"
5436
  msgid "Additional locations address of booked event"
5437
  msgstr "Adresa místa rezervované události"
5438
 
5439
- #: app/features/mec/notifications.php:124
5440
- #: app/features/mec/notifications.php:224
5441
- #: app/features/mec/notifications.php:336
5442
- #: app/features/mec/notifications.php:455
5443
- #: app/features/mec/notifications.php:562
5444
- #: app/features/mec/notifications.php:679
5445
  #, fuzzy
5446
  #| msgid "Speaker name of booked event"
5447
  msgid "Featured image of booked event"
5448
  msgstr "Jméno řečníka rezervované události"
5449
 
5450
- #: app/features/mec/notifications.php:125
5451
- #: app/features/mec/notifications.php:225
5452
- #: app/features/mec/notifications.php:337
5453
- #: app/features/mec/notifications.php:456
5454
- #: app/features/mec/notifications.php:563
5455
- #: app/features/mec/notifications.php:680
5456
  msgid "Full Attendee info such as booking form data, name, email etc."
5457
  msgstr ""
5458
  "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
5459
  "jméno, e-mail atd."
5460
 
5461
- #: app/features/mec/notifications.php:126
5462
- #: app/features/mec/notifications.php:226
5463
- #: app/features/mec/notifications.php:338
5464
- #: app/features/mec/notifications.php:457
5465
- #: app/features/mec/notifications.php:564
5466
- #: app/features/mec/notifications.php:681
5467
  #, fuzzy
5468
  #| msgid "Booking"
5469
  msgid "Booking ID"
5470
  msgstr "Rezervace"
5471
 
5472
- #: app/features/mec/notifications.php:127
5473
- #: app/features/mec/notifications.php:227
5474
- #: app/features/mec/notifications.php:339
5475
- #: app/features/mec/notifications.php:458
5476
- #: app/features/mec/notifications.php:565
5477
- #: app/features/mec/notifications.php:682
5478
  #, fuzzy
5479
  #| msgid "Transaction ID"
5480
  msgid "Transaction ID of Booking"
5481
  msgstr "ID transakce"
5482
 
5483
- #: app/features/mec/notifications.php:128
5484
- #: app/features/mec/notifications.php:341
5485
- #: app/features/mec/notifications.php:684
5486
  msgid "Invoice Link"
5487
  msgstr "Odkaz na fakturu"
5488
 
5489
- #: app/features/mec/notifications.php:129
5490
- #: app/features/mec/notifications.php:229
5491
- #: app/features/mec/notifications.php:342
5492
- #: app/features/mec/notifications.php:460
5493
- #: app/features/mec/notifications.php:567
5494
- #: app/features/mec/notifications.php:685
5495
  #, fuzzy
5496
  #| msgid "There is no skins"
5497
  msgid "Total attendees of current booking"
5498
  msgstr "Neexistuje žádný vzhled"
5499
 
5500
- #: app/features/mec/notifications.php:130
5501
- #: app/features/mec/notifications.php:230
5502
- #: app/features/mec/notifications.php:343
5503
- #: app/features/mec/notifications.php:461
5504
- #: app/features/mec/notifications.php:568
5505
- #: app/features/mec/notifications.php:686
5506
  msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5507
  msgstr ""
5508
 
5509
- #: app/features/mec/notifications.php:131
5510
- #: app/features/mec/notifications.php:231
5511
- #: app/features/mec/notifications.php:344
5512
- #: app/features/mec/notifications.php:462
5513
- #: app/features/mec/notifications.php:569
5514
- #: app/features/mec/notifications.php:687
5515
  msgid "Ticket name"
5516
  msgstr "Název vstupenky"
5517
 
5518
- #: app/features/mec/notifications.php:132
5519
- #: app/features/mec/notifications.php:232
5520
- #: app/features/mec/notifications.php:345
5521
- #: app/features/mec/notifications.php:463
5522
- #: app/features/mec/notifications.php:570
5523
- #: app/features/mec/notifications.php:688
5524
  msgid "Ticket time"
5525
  msgstr "Čas vstupenky"
5526
 
5527
- #: app/features/mec/notifications.php:133
5528
- #: app/features/mec/notifications.php:233
5529
- #: app/features/mec/notifications.php:346
5530
- #: app/features/mec/notifications.php:464
5531
- #: app/features/mec/notifications.php:571
5532
- #: app/features/mec/notifications.php:689
5533
  #, fuzzy
5534
  #| msgid "Ticket name"
5535
  msgid "Ticket name & time"
5536
  msgstr "Název vstupenky"
5537
 
5538
- #: app/features/mec/notifications.php:134
5539
- #: app/features/mec/notifications.php:234
5540
- #: app/features/mec/notifications.php:347
5541
- #: app/features/mec/notifications.php:465
5542
- #: app/features/mec/notifications.php:572
5543
- #: app/features/mec/notifications.php:690
5544
  #, fuzzy
5545
  #| msgid "Payment Gateways"
5546
  msgid "Payment Gateway"
5547
  msgstr "Platební brány"
5548
 
5549
- #: app/features/mec/notifications.php:135
5550
- #: app/features/mec/notifications.php:235
5551
- #: app/features/mec/notifications.php:348
5552
- #: app/features/mec/notifications.php:466
5553
- #: app/features/mec/notifications.php:573
5554
- #: app/features/mec/notifications.php:691
5555
  msgid "Link to the downloadable file"
5556
  msgstr ""
5557
 
5558
- #: app/features/mec/notifications.php:136
5559
- #: app/features/mec/notifications.php:236
5560
- #: app/features/mec/notifications.php:349
5561
- #: app/features/mec/notifications.php:692
5562
  msgid "Download ICS file"
5563
  msgstr "Stáhnout ICS soubor"
5564
 
5565
- #: app/features/mec/notifications.php:144 app/libraries/main.php:589
5566
  msgid "Booking Verification"
5567
  msgstr "Ověření rezervace"
5568
 
5569
- #: app/features/mec/notifications.php:145
5570
  msgid "It sends to attendee email for verifying their booking/email."
5571
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
5572
 
5573
- #: app/features/mec/notifications.php:228
5574
  msgid "Email/Booking verification link."
5575
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
5576
 
5577
- #: app/features/mec/notifications.php:248
5578
  #, fuzzy
5579
  #| msgid "Enable booking notification"
5580
  msgid "Enable booking confirmation"
5581
  msgstr "Povolit upozornění na rezervaci"
5582
 
5583
- #: app/features/mec/notifications.php:253
5584
  #, fuzzy
5585
  #| msgid "It sends to attendee after confirming the booking by admin."
5586
  msgid "Sent to attendee after confirming the booking by admin."
5587
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
5588
 
5589
- #: app/features/mec/notifications.php:306
5590
  msgid "Send One Single Email Only To First Attendee"
5591
  msgstr ""
5592
 
5593
- #: app/features/mec/notifications.php:340
5594
- #: app/features/mec/notifications.php:683
5595
  msgid "Booking cancellation link."
5596
  msgstr "Odkaz na zrušení rezervace."
5597
 
5598
- #: app/features/mec/notifications.php:358 app/libraries/main.php:591
 
5599
  msgid "Booking Cancellation"
5600
  msgstr "Zrušení rezervace"
5601
 
5602
- #: app/features/mec/notifications.php:362
5603
  msgid "Enable cancellation notification"
5604
  msgstr "Povolit oznámení o zrušení"
5605
 
5606
- #: app/features/mec/notifications.php:366
5607
  #, fuzzy
5608
  #| msgid ""
5609
  #| "It sends to selected recipients after booking cancellation for notifying "
@@ -5611,46 +5643,46 @@ msgstr "Povolit oznámení o zrušení"
5611
  msgid "Sent to selected recipients after booking cancellation to notify them."
5612
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
5613
 
5614
- #: app/features/mec/notifications.php:419
5615
- #: app/features/mec/notifications.php:713
5616
  msgid "Send the email to admin"
5617
  msgstr "Odeslat email administrátorovi"
5618
 
5619
- #: app/features/mec/notifications.php:427
5620
  #, fuzzy
5621
  #| msgid "Send the email to booking user"
5622
  msgid "Send the email to the booked user"
5623
  msgstr "Pošlete rezervační e-mail uživateli"
5624
 
5625
- #: app/features/mec/notifications.php:459
5626
- #: app/features/mec/notifications.php:566
5627
  msgid "Admin booking management link."
5628
  msgstr "Odkaz administrátora na správu rezervace."
5629
 
5630
- #: app/features/mec/notifications.php:473 app/libraries/main.php:593
5631
  msgid "Admin"
5632
  msgstr "Administrátor"
5633
 
5634
- #: app/features/mec/notifications.php:477
5635
  msgid "Enable admin notification"
5636
  msgstr "Povolit oznámení správce"
5637
 
5638
- #: app/features/mec/notifications.php:481
5639
  #, fuzzy
5640
  #| msgid "It sends to admin to notify him/her that a new booking received."
5641
  msgid "Sent to admin to notify them that a new booking has been received."
5642
  msgstr "Zašle správci informaci o přijetí nové rezervace."
5643
 
5644
- #: app/features/mec/notifications.php:580 app/libraries/main.php:592
5645
- #: app/libraries/notifications.php:550
5646
  msgid "Booking Reminder"
5647
  msgstr "Připomenutí rezervace"
5648
 
5649
- #: app/features/mec/notifications.php:584
5650
  msgid "Enable booking reminder notification"
5651
  msgstr "Povolit upozornění na připomenutí rezervace"
5652
 
5653
- #: app/features/mec/notifications.php:590
5654
  #, fuzzy, php-format
5655
  #| msgid ""
5656
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -5665,37 +5697,37 @@ msgstr ""
5665
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
5666
  "% s, jinak může zasílat připomenutí několikrát."
5667
 
5668
- #: app/features/mec/notifications.php:590
5669
  #, fuzzy
5670
  #| msgid "only once per day"
5671
  msgid "only once per hour"
5672
  msgstr "pouze jednou denně"
5673
 
5674
- #: app/features/mec/notifications.php:643 app/libraries/main.php:6922
5675
- #: app/libraries/main.php:6939
5676
  #, fuzzy
5677
  #| msgid "hours"
5678
  msgid "Hours"
5679
  msgstr "hodiny"
5680
 
5681
- #: app/features/mec/notifications.php:647
5682
  msgid "Reminder hours"
5683
  msgstr ""
5684
 
5685
- #: app/features/mec/notifications.php:648
5686
  msgid "Please, insert comma to separate reminder hours."
5687
  msgstr ""
5688
 
5689
- #: app/features/mec/notifications.php:702 app/features/popup/event.php:253
5690
  #: app/libraries/main.php:581
5691
  msgid "New Event"
5692
  msgstr "Nová událost"
5693
 
5694
- #: app/features/mec/notifications.php:706
5695
  msgid "Enable new event notification"
5696
  msgstr "Povolit oznámení na novou událost"
5697
 
5698
- #: app/features/mec/notifications.php:716
5699
  #, fuzzy
5700
  #| msgid ""
5701
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5707,41 +5739,41 @@ msgstr ""
5707
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
5708
  "nebo z administrace webových stránek (backend)."
5709
 
5710
- #: app/features/mec/notifications.php:773
5711
- #: app/features/mec/notifications.php:856
5712
  msgid "Title of event"
5713
  msgstr "Název události"
5714
 
5715
- #: app/features/mec/notifications.php:774
5716
- #: app/features/mec/notifications.php:857
5717
  msgid "Link of event"
5718
  msgstr "Odkaz události"
5719
 
5720
- #: app/features/mec/notifications.php:777
5721
- #: app/features/mec/notifications.php:860
5722
  msgid "Status of event"
5723
  msgstr "Stav události"
5724
 
5725
- #: app/features/mec/notifications.php:778
5726
- #: app/features/mec/notifications.php:861 app/features/mec/settings.php:819
5727
- #: app/features/mec/settings.php:823
5728
  msgid "Event Note"
5729
  msgstr "Poznámka události"
5730
 
5731
- #: app/features/mec/notifications.php:782
5732
- #: app/features/mec/notifications.php:865
5733
  msgid "Admin events management link."
5734
  msgstr "Odkaz administrátora na správu událostí."
5735
 
5736
- #: app/features/mec/notifications.php:791 app/libraries/main.php:582
5737
  msgid "User Event Publishing"
5738
  msgstr "Publikování uživatelských událostí"
5739
 
5740
- #: app/features/mec/notifications.php:795
5741
  msgid "Enable user event publishing notification"
5742
  msgstr "Povolit oznámení o zveřejnění události uživatele"
5743
 
5744
- #: app/features/mec/notifications.php:799
5745
  #, fuzzy
5746
  #| msgid ""
5747
  #| "It sends after published a new event from frontend event submission or "
@@ -5930,7 +5962,7 @@ msgid "You can enable/disable Schema scripts"
5930
  msgstr "Můžete povolit nebo zakázat skripty schématu"
5931
 
5932
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
5933
- #: app/libraries/main.php:5872 app/libraries/main.php:5920
5934
  msgid "Weekdays"
5935
  msgstr "Pracovní dny"
5936
 
@@ -6665,7 +6697,7 @@ msgstr ""
6665
  msgid "Custom Fields"
6666
  msgstr "Vlastní styly"
6667
 
6668
- #: app/features/mec/single.php:184 app/libraries/main.php:3149
6669
  msgid "URL"
6670
  msgstr ""
6671
 
@@ -6948,7 +6980,7 @@ msgstr "Vytvářejte události pomocí Tvůrce stránek"
6948
  msgid "MEC Settings"
6949
  msgstr "MEC - Nastavení"
6950
 
6951
- #: app/features/mec/support-page.php:99 app/libraries/main.php:646
6952
  msgid "Single Event"
6953
  msgstr "Jedna událost"
6954
 
@@ -7308,11 +7340,11 @@ msgstr ""
7308
  msgid "Create a support ticket"
7309
  msgstr "Vytvořte lístek podpory"
7310
 
7311
- #: app/features/mec/support.php:52 app/libraries/main.php:792
7312
  msgid "Styling Options"
7313
  msgstr "Možnosti stylování"
7314
 
7315
- #: app/features/mec/support.php:59 app/libraries/main.php:799
7316
  msgid "Custom CSS"
7317
  msgstr "Vlastní CSS"
7318
 
@@ -7390,6 +7422,32 @@ msgstr "Jak přepsat soubory šablony MEC?"
7390
  msgid "How to add/manage shortcodes?"
7391
  msgstr "Jak přidat / spravovat zkrácené kódy?"
7392
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7393
  #: app/features/organizers.php:106 app/features/organizers.php:149
7394
  msgid "Insert organizer phone number."
7395
  msgstr "Vložit telefonní číslo organizátora."
@@ -7450,8 +7508,8 @@ msgstr "např. info@itreseni.cz"
7450
  msgid "eg. https://webnus.net"
7451
  msgstr "např. https://webnus.net"
7452
 
7453
- #: app/features/organizers.php:312 app/libraries/main.php:5896
7454
- #: app/libraries/main.php:5941 app/skins/single.php:1152
7455
  msgid "Other Organizers"
7456
  msgstr "Další organizátoři"
7457
 
@@ -7641,7 +7699,7 @@ msgstr "Přidat nový zkrácený kód"
7641
  msgid "Please %s/%s in order to see your bookings / profile."
7642
  msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
7643
 
7644
- #: app/features/profile/profile.php:20 app/libraries/main.php:2321
7645
  msgid "Your booking already canceled!"
7646
  msgstr "Vaše rezervace již byla zrušena!"
7647
 
@@ -7649,11 +7707,11 @@ msgstr "Vaše rezervace již byla zrušena!"
7649
  msgid "#"
7650
  msgstr "#"
7651
 
7652
- #: app/features/profile/profile.php:61 app/libraries/main.php:3481
7653
  msgid "Status"
7654
  msgstr "Stav"
7655
 
7656
- #: app/features/profile/profile.php:64 app/libraries/main.php:2489
7657
  msgid "Attendees"
7658
  msgstr "Účastníci"
7659
 
@@ -7774,14 +7832,14 @@ msgstr "Vyhledat"
7774
  msgid "No search result."
7775
  msgstr "Žádný výsledek vyhledávání."
7776
 
7777
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5898
7778
- #: app/libraries/main.php:5943 app/libraries/notifications.php:934
7779
  #: app/libraries/render.php:516 app/libraries/render.php:816
7780
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7781
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7782
  #: app/modules/next-event/details.php:145 app/skins/single.php:1044
7783
- #: app/skins/single/default.php:123 app/skins/single/default.php:354
7784
- #: app/skins/single/m1.php:47 app/skins/single/modern.php:219
7785
  #, fuzzy
7786
  #| msgid "Add Day"
7787
  msgid "All Day"
@@ -7872,70 +7930,70 @@ msgstr "Sleva"
7872
  msgid "Download Invoice"
7873
  msgstr "Stáhnout fakturu"
7874
 
7875
- #: app/libraries/factory.php:164
7876
  msgid "M.E. Calendar"
7877
  msgstr "M.E. Kalendář"
7878
 
7879
- #: app/libraries/factory.php:203
7880
  msgctxt "plugin link"
7881
  msgid "Upgrade to Pro Version"
7882
  msgstr "Upgrade na verzi PRO"
7883
 
7884
- #: app/libraries/factory.php:221
7885
  msgctxt "plugin link"
7886
  msgid "Settings"
7887
  msgstr "Nastavení"
7888
 
7889
- #: app/libraries/factory.php:226
7890
  msgctxt "plugin link"
7891
  msgid "Upgrade"
7892
  msgstr "Upgrade"
7893
 
7894
- #: app/libraries/factory.php:370
7895
  msgid "day"
7896
  msgstr "den"
7897
 
7898
- #: app/libraries/factory.php:371 app/modules/countdown/details.php:138
7899
  #: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
7900
  #: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
7901
  msgid "days"
7902
  msgstr "dny"
7903
 
7904
- #: app/libraries/factory.php:372
7905
  msgid "hour"
7906
  msgstr "hodina"
7907
 
7908
- #: app/libraries/factory.php:373 app/modules/countdown/details.php:145
7909
  #: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
7910
  #: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
7911
  msgid "hours"
7912
  msgstr "hodiny"
7913
 
7914
- #: app/libraries/factory.php:374
7915
  msgid "minute"
7916
  msgstr "minuta"
7917
 
7918
- #: app/libraries/factory.php:375 app/modules/countdown/details.php:152
7919
  #: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
7920
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
7921
  msgid "minutes"
7922
  msgstr "minuty"
7923
 
7924
- #: app/libraries/factory.php:376
7925
  msgid "second"
7926
  msgstr "vteřina"
7927
 
7928
- #: app/libraries/factory.php:377 app/modules/countdown/details.php:159
7929
  #: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
7930
  #: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
7931
  msgid "seconds"
7932
  msgstr "vteřiny"
7933
 
7934
- #: app/libraries/factory.php:429
7935
  msgid "MEC Single Sidebar"
7936
  msgstr "MEC Postranní panel"
7937
 
7938
- #: app/libraries/factory.php:430
7939
  msgid "Custom sidebar for single and modal page of MEC."
7940
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
7941
 
@@ -7943,33 +8001,33 @@ msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
7943
  msgid "There is no excerpt because this is a protected post."
7944
  msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
7945
 
7946
- #: app/libraries/main.php:332 app/libraries/main.php:1937
7947
- #: app/libraries/main.php:1962
7948
  msgid "Agenda View"
7949
  msgstr "Zobrazení agendy"
7950
 
7951
- #: app/libraries/main.php:333 app/libraries/main.php:1928
7952
- #: app/libraries/main.php:1953
7953
  msgid "Full Calendar"
7954
  msgstr "Plný kalendář"
7955
 
7956
- #: app/libraries/main.php:335 app/libraries/main.php:1930
7957
- #: app/libraries/main.php:1955
7958
  msgid "Calendar/Monthly View"
7959
  msgstr "Kalendář / zobrazení měsíce"
7960
 
7961
- #: app/libraries/main.php:338 app/libraries/main.php:1933
7962
- #: app/libraries/main.php:1958
7963
  msgid "Timetable View"
7964
  msgstr "Zobrazení rozvrhu"
7965
 
7966
- #: app/libraries/main.php:339 app/libraries/main.php:1934
7967
- #: app/libraries/main.php:1959
7968
  msgid "Masonry View"
7969
  msgstr "Zobrazení zdi"
7970
 
7971
- #: app/libraries/main.php:340 app/libraries/main.php:1938
7972
- #: app/libraries/main.php:1963
7973
  msgid "Map View"
7974
  msgstr "Zobrazení mapy"
7975
 
@@ -8000,38 +8058,38 @@ msgstr "Zobrazení posuvníku"
8000
  msgid "Timeline View"
8001
  msgstr "Zobrazení rozvrhu"
8002
 
8003
- #: app/libraries/main.php:385 app/libraries/main.php:5874
8004
- #: app/libraries/main.php:5922
8005
  msgid "SU"
8006
  msgstr "NE"
8007
 
8008
- #: app/libraries/main.php:386 app/libraries/main.php:5875
8009
- #: app/libraries/main.php:5923
8010
  msgid "MO"
8011
  msgstr "PO"
8012
 
8013
- #: app/libraries/main.php:387 app/libraries/main.php:5876
8014
- #: app/libraries/main.php:5924
8015
  msgid "TU"
8016
  msgstr "ÚT"
8017
 
8018
- #: app/libraries/main.php:388 app/libraries/main.php:5877
8019
- #: app/libraries/main.php:5925
8020
  msgid "WE"
8021
  msgstr "ST"
8022
 
8023
- #: app/libraries/main.php:389 app/libraries/main.php:5878
8024
- #: app/libraries/main.php:5926
8025
  msgid "TH"
8026
  msgstr "ČT"
8027
 
8028
- #: app/libraries/main.php:390 app/libraries/main.php:5879
8029
- #: app/libraries/main.php:5927
8030
  msgid "FR"
8031
  msgstr "PÁ"
8032
 
8033
- #: app/libraries/main.php:391 app/libraries/main.php:5880
8034
- #: app/libraries/main.php:5928
8035
  msgid "SA"
8036
  msgstr "SO"
8037
 
@@ -8043,15 +8101,15 @@ msgstr "Nahrát pole"
8043
  msgid "Additional Locations"
8044
  msgstr "Další umístění"
8045
 
8046
- #: app/libraries/main.php:712
8047
  msgid "Modules"
8048
  msgstr "Moduly"
8049
 
8050
- #: app/libraries/main.php:880
8051
  msgid "New Addons For MEC! Now Customize MEC in Elementor"
8052
  msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
8053
 
8054
- #: app/libraries/main.php:887
8055
  msgid ""
8056
  "The time has come at last, and the new practical add-ons for MEC have been "
8057
  "released. This is a revolution in the world of Event Calendars. We have "
@@ -8062,7 +8120,7 @@ msgstr ""
8062
  "revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
8063
  "pouze tím, že máme 4 doplňky, viz níže:"
8064
 
8065
- #: app/libraries/main.php:889
8066
  msgid ""
8067
  "<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
8068
  "products) and Woo products at the same time."
@@ -8070,7 +8128,7 @@ msgstr ""
8070
  "<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
8071
  "produkty) a produkty Woo současně."
8072
 
8073
- #: app/libraries/main.php:890
8074
  msgid ""
8075
  "<strong>Event API:</strong> display your events (shortcodes/single event) on "
8076
  "other websites without MEC. Use JSON output features to make your Apps "
@@ -8080,163 +8138,163 @@ msgstr ""
8080
  "událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
8081
  "aplikace byly kompatibilní s MEC."
8082
 
8083
- #: app/libraries/main.php:891
8084
  msgid ""
8085
  "<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
8086
  "main websites. Changes in the main one will be inherited by the subsites. "
8087
  "you can set these up in the admin panel."
8088
  msgstr ""
8089
 
8090
- #: app/libraries/main.php:892
8091
  msgid ""
8092
  "<strong>User Dashboard:</strong> Create exclusive pages for users. These "
8093
  "pages can contain ticket purchase information, information about registered "
8094
  "events. Users can now log in to purchase tickets."
8095
  msgstr ""
8096
 
8097
- #: app/libraries/main.php:894
8098
  msgid "find out more"
8099
  msgstr ""
8100
 
8101
- #: app/libraries/main.php:1654
8102
  msgid "Events at this location"
8103
  msgstr "Události na tomto místě"
8104
 
8105
- #: app/libraries/main.php:1654
8106
  msgid "Event at this location"
8107
  msgstr "Událost na tomto místě"
8108
 
8109
- #: app/libraries/main.php:1706
8110
  msgid "Facebook"
8111
  msgstr "Facebook"
8112
 
8113
- #: app/libraries/main.php:1707
8114
  msgid "Twitter"
8115
  msgstr "Twitter"
8116
 
8117
- #: app/libraries/main.php:1708 app/libraries/main.php:1765
8118
  msgid "Linkedin"
8119
  msgstr "Linkedin"
8120
 
8121
- #: app/libraries/main.php:1709 app/libraries/main.php:1801
8122
  msgid "VK"
8123
  msgstr "VK"
8124
 
8125
- #: app/libraries/main.php:1710
8126
  msgid "Tumblr"
8127
  msgstr ""
8128
 
8129
- #: app/libraries/main.php:1711
8130
  msgid "Pinterest"
8131
  msgstr ""
8132
 
8133
- #: app/libraries/main.php:1712
8134
  msgid "Flipboard"
8135
  msgstr ""
8136
 
8137
- #: app/libraries/main.php:1713
8138
  #, fuzzy
8139
  #| msgid "Tickets"
8140
  msgid "GetPocket"
8141
  msgstr "Vstupenky"
8142
 
8143
- #: app/libraries/main.php:1714
8144
  msgid "Reddit"
8145
  msgstr ""
8146
 
8147
- #: app/libraries/main.php:1715
8148
  msgid "WhatsApp"
8149
  msgstr ""
8150
 
8151
- #: app/libraries/main.php:1716
8152
  msgid "Telegram"
8153
  msgstr ""
8154
 
8155
- #: app/libraries/main.php:1735
8156
  msgid "Share on Facebook"
8157
  msgstr "Sdílet na Facebooku"
8158
 
8159
- #: app/libraries/main.php:1750
8160
  msgid "Tweet"
8161
  msgstr "Tweet"
8162
 
8163
- #: app/libraries/main.php:1816
8164
  #, fuzzy
8165
  #| msgid "Share on Facebook"
8166
  msgid "Share on Tumblr"
8167
  msgstr "Sdílet na Facebooku"
8168
 
8169
- #: app/libraries/main.php:1832
8170
  msgid "Share on Pinterest"
8171
  msgstr ""
8172
 
8173
- #: app/libraries/main.php:1848
8174
  #, fuzzy
8175
  #| msgid "Share on Facebook"
8176
  msgid "Share on Flipboard"
8177
  msgstr "Sdílet na Facebooku"
8178
 
8179
- #: app/libraries/main.php:1866
8180
  #, fuzzy
8181
  #| msgid "Share on Facebook"
8182
  msgid "Share on GetPocket"
8183
  msgstr "Sdílet na Facebooku"
8184
 
8185
- #: app/libraries/main.php:1882
8186
  #, fuzzy
8187
  #| msgid "Share on Facebook"
8188
  msgid "Share on Reddit"
8189
  msgstr "Sdílet na Facebooku"
8190
 
8191
- #: app/libraries/main.php:1898
8192
  msgid "Share on Telegram"
8193
  msgstr ""
8194
 
8195
- #: app/libraries/main.php:1916
8196
  msgid "Share on WhatsApp"
8197
  msgstr ""
8198
 
8199
- #: app/libraries/main.php:1939
8200
  msgid "Custom Shortcode"
8201
  msgstr "Uživatelské zkrácené kódy"
8202
 
8203
- #: app/libraries/main.php:2301
8204
  msgid "Your booking already verified!"
8205
  msgstr "Vaše rezervace již byla ověřena!"
8206
 
8207
- #: app/libraries/main.php:2306
8208
  msgid "Your booking successfully verified."
8209
  msgstr "Vaše rezervace byla úspěšně ověřena."
8210
 
8211
- #: app/libraries/main.php:2307
8212
  msgid "Your booking cannot verify!"
8213
  msgstr "Vaši rezervaci nelze ověřit!"
8214
 
8215
- #:
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2020-07-21 17:36+0430\n"
5
+ "PO-Revision-Date: 2020-07-21 17:36+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\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.php:1140 app/features/mec.php:1170
27
  #: app/features/mec/dashboard.php:63 app/widgets/MEC.php:33
28
  msgid "Modern Events Calendar"
29
  msgstr "Moderní kalendář událostí"
93
  #: app/features/contextual.php:55 app/features/mec.php:473
94
  #: app/features/mec/dashboard.php:141 app/features/mec/support.php:20
95
  #: app/features/popup/event.php:60 app/features/popup/shortcode.php:37
96
+ #: app/libraries/main.php:607
97
  msgid "Settings"
98
  msgstr "Nastavení"
99
 
100
+ #: app/features/contextual.php:62 app/features/events.php:1563
101
+ #: app/features/events.php:2378 app/features/mec/booking.php:524
102
  #: app/features/mec/support.php:29 app/libraries/main.php:564
103
  msgid "Booking Form"
104
  msgstr "Rezervační formulář"
142
  "\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
143
  "allowfullscreen></iframe>"
144
 
145
+ #: app/features/contextual.php:77 app/features/events.php:352
146
+ #: app/features/mec/support-page.php:117 app/features/mec/support.php:45
147
+ #: app/libraries/main.php:755
148
  msgid "Notifications"
149
  msgstr "Upozornění"
150
 
285
  #: app/features/mec/booking.php:96 app/features/mec/notifications.php:33
286
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
287
  #: app/libraries/main.php:559 app/libraries/main.php:588
288
+ #: app/libraries/main.php:672
289
  msgid "Booking"
290
  msgstr "Rezervace"
291
 
308
  msgid "MEC Activation"
309
  msgstr "Aktivace MEC"
310
 
311
+ #: app/features/dlfile.php:121 app/features/events.php:1568
312
  #: app/features/mec/booking.php:268 app/features/mec/settings.php:811
313
  #, fuzzy
314
  #| msgid "Download ICS file"
355
  msgstr "Události"
356
 
357
  #: app/features/events.php:168 app/features/fes.php:233
358
+ #: app/features/mec/meta_boxes/display_options.php:1523
359
+ #: app/features/mec/meta_boxes/display_options.php:1617
360
+ #: app/features/mec/meta_boxes/display_options.php:1690
361
  #: app/features/profile/profile.php:55 app/skins/daily_view/tpl.php:80
362
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:81
363
  #: app/skins/yearly_view/tpl.php:69
395
  msgid "No events found in Trash!"
396
  msgstr "V koši nebyly nalezeny žádné události!"
397
 
398
+ #: app/features/events.php:192 app/features/events.php:3449
399
+ #: app/features/mec/meta_boxes/display_options.php:1395
400
  #: app/features/mec/meta_boxes/search_form.php:31
401
  #: app/features/mec/meta_boxes/search_form.php:101
402
  #: app/features/mec/meta_boxes/search_form.php:171
409
  #: app/features/mec/meta_boxes/search_form.php:654
410
  #: app/features/mec/meta_boxes/search_form.php:760
411
  #: app/features/mec/settings.php:885 app/features/mec/single.php:323
412
+ #: app/features/search.php:68 app/libraries/main.php:5888
413
+ #: app/libraries/main.php:5936 app/libraries/skins.php:939
414
+ #: app/skins/single.php:854 app/skins/single/default.php:220
415
+ #: app/skins/single/default.php:453 app/skins/single/m1.php:197
416
+ #: app/skins/single/m2.php:120 app/skins/single/modern.php:140
417
  msgid "Category"
418
  msgstr "Kategorie"
419
 
420
+ #: app/features/events.php:193 app/features/events.php:3404
421
  #: app/features/fes/form.php:822 app/features/mec.php:461
422
  #: app/features/mec/meta_boxes/filter.php:69
423
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5887
424
+ #: app/libraries/main.php:5935
425
  msgid "Categories"
426
  msgstr "Kategorie"
427
 
509
  msgid "Event Repeating"
510
  msgstr "Opakování události"
511
 
512
+ #: app/features/events.php:344 app/features/events.php:1126
513
  #, fuzzy
514
  #| msgid "Event Detail"
515
  msgid "Event Data"
516
  msgstr "Zobrazit událost"
517
 
518
+ #: app/features/events.php:346 app/features/events.php:1308
519
  #: app/features/mec/settings.php:769 app/skins/single.php:1247
520
  msgid "Hourly Schedule"
521
  msgstr "Hodinový rozvrh"
532
  msgid "Links"
533
  msgstr "Odkaz"
534
 
535
+ #: app/features/events.php:349 app/features/events.php:3451
536
+ #: app/features/events.php:3642 app/features/events.php:3684
537
  #: app/features/ix.php:3513 app/features/ix.php:3554
538
+ #: app/features/mec/meta_boxes/display_options.php:1398
539
  #: app/features/mec/meta_boxes/search_form.php:46
540
  #: app/features/mec/meta_boxes/search_form.php:116
541
  #: app/features/mec/meta_boxes/search_form.php:186
552
  #: app/features/organizers.php:260 app/features/organizers.php:262
553
  #: app/features/organizers.php:271 app/features/popup/event.php:163
554
  #: app/features/popup/event.php:172 app/features/search.php:80
555
+ #: app/libraries/main.php:5894 app/libraries/main.php:5942
556
+ #: app/libraries/skins.php:991 app/skins/single.php:1102
557
+ #: app/skins/single/default.php:245 app/skins/single/default.php:478
558
  #: app/skins/single/m1.php:103 app/skins/single/m2.php:26
559
+ #: app/skins/single/modern.php:48
560
  msgid "Organizer"
561
  msgstr "Organizátor"
562
 
563
+ #: app/features/events.php:350 app/features/events.php:1113
564
+ #: app/features/fes/form.php:793 app/libraries/main.php:5921
565
+ #: app/libraries/main.php:5968 app/skins/single.php:880
566
+ #: app/skins/single/default.php:143 app/skins/single/default.php:377
567
+ #: app/skins/single/m1.php:62 app/skins/single/modern.php:237
568
  msgid "Cost"
569
  msgstr "Cena"
570
 
574
  msgid "SEO Schema / Event Status"
575
  msgstr "Při spuštění události"
576
 
577
+ #: app/features/events.php:487
578
  msgid "Note for reviewer"
579
  msgstr "Poznámka pro recenzenta"
580
 
581
+ #: app/features/events.php:493
582
  msgid "Guest Data"
583
  msgstr "Údaje hosta"
584
 
585
+ #: app/features/events.php:494 app/features/events.php:2364
586
+ #: app/features/events.php:3981 app/features/fes.php:233
587
  #: app/features/fes/form.php:752 app/features/labels.php:178
588
  #: app/features/mec/booking.php:53 app/features/organizers.php:279
589
  #: app/features/popup/event.php:182 app/features/profile/profile.php:177
590
+ #: app/libraries/notifications.php:1261 app/modules/booking/steps/form.php:48
591
  msgid "Name"
592
  msgstr "Jméno"
593
 
594
+ #: app/features/events.php:495 app/features/events.php:2373
595
+ #: app/features/events.php:2435 app/features/events.php:2524
596
+ #: app/features/events.php:3984 app/features/fes.php:233
597
  #: app/features/fes/form.php:748 app/features/login/login.php:5
598
  #: app/features/mec/booking.php:65 app/features/mec/booking.php:562
599
  #: app/features/mec/booking.php:658 app/features/mec/single.php:183
600
  #: app/features/organizers.php:111 app/features/organizers.php:152
601
  #: app/features/profile/profile.php:180 app/features/speakers.php:127
602
+ #: app/features/speakers.php:196 app/libraries/main.php:1719
603
+ #: app/libraries/main.php:1788 app/libraries/main.php:3154
604
+ #: app/libraries/notifications.php:1262 app/modules/booking/steps/form.php:57
605
  #: app/modules/booking/steps/form.php:157 app/skins/single.php:1119
606
+ #: app/skins/single.php:1178 app/skins/single/default.php:262
607
+ #: app/skins/single/default.php:495 app/skins/single/m1.php:120
608
+ #: app/skins/single/m2.php:43 app/skins/single/modern.php:65
609
  msgid "Email"
610
  msgstr "Email"
611
 
612
+ #: app/features/events.php:503 app/features/fes/form.php:265
613
  msgid "Date and Time"
614
  msgstr "Datum a čas"
615
 
616
+ #: app/features/events.php:506 app/features/events.php:510
617
+ #: app/features/events.php:3452 app/features/events.php:3642
618
+ #: app/features/events.php:3684 app/features/fes/form.php:269
619
  #: app/features/fes/form.php:273 app/features/ix.php:3513
620
  #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:38
621
+ #: app/features/mec.php:1323 app/features/mec/meta_boxes/display_options.php:51
622
+ #: app/features/mec/meta_boxes/display_options.php:280
623
+ #: app/features/mec/meta_boxes/display_options.php:520
624
+ #: app/features/mec/meta_boxes/display_options.php:627
625
+ #: app/features/mec/meta_boxes/display_options.php:830
626
+ #: app/features/mec/meta_boxes/display_options.php:923
627
+ #: app/features/mec/meta_boxes/display_options.php:1008
628
+ #: app/features/mec/meta_boxes/display_options.php:1053
629
+ #: app/features/mec/meta_boxes/display_options.php:1127
630
+ #: app/features/mec/meta_boxes/display_options.php:1213
631
+ #: app/features/mec/meta_boxes/display_options.php:1350
632
+ #: app/features/mec/meta_boxes/display_options.php:1751
633
+ #: app/features/mec/meta_boxes/display_options.php:1881
634
+ #: app/features/mec/meta_boxes/display_options.php:2010
635
+ #: app/features/mec/meta_boxes/display_options.php:2115
636
  #: app/features/popup/event.php:76
637
  msgid "Start Date"
638
  msgstr "Počátečná den"
639
 
640
+ #: app/features/events.php:525 app/features/events.php:529
641
+ #: app/features/events.php:3453 app/features/events.php:3642
642
+ #: app/features/events.php:3684 app/features/fes/form.php:288
643
  #: app/features/fes/form.php:292 app/features/ix.php:3513
644
  #: app/features/ix.php:3554 app/features/ix/import_g_calendar.php:44
645
+ #: app/features/mec.php:1324 app/features/popup/event.php:92
646
  msgid "End Date"
647
  msgstr "Konečný den"
648
 
649
+ #: app/features/events.php:552 app/features/fes/form.php:306
650
  #: app/features/popup/event.php:109
651
  #, fuzzy
652
  #| msgid "All Day Event"
653
  msgid "All-day Event"
654
  msgstr "Celodenní událost"
655
 
656
+ #: app/features/events.php:562 app/features/fes/form.php:309
657
  msgid "Hide Event Time"
658
  msgstr "Skrýt čas události"
659
 
660
+ #: app/features/events.php:572 app/features/fes/form.php:312
661
  msgid "Hide Event End Time"
662
  msgstr "Skrýt čas ukončení události"
663
 
664
+ #: app/features/events.php:577 app/features/events.php:581
665
  #: app/features/fes/form.php:316
666
  #, fuzzy
667
  #| msgid "Note to reviewer"
668
  msgid "Notes on the time"
669
  msgstr "Poznámka pro recenzenta"
670
 
671
+ #: app/features/events.php:582 app/features/fes/form.php:317
672
  #, fuzzy
673
  #| msgid ""
674
  #| "It shows next to event time on single event page. You can insert Timezone "
680
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
681
  "můžete vložit časové pásmo atd."
682
 
683
+ #: app/features/events.php:584 app/features/events.php:723
684
+ #: app/features/events.php:1076 app/features/events.php:1225
685
+ #: app/features/events.php:1533 app/features/events.php:1626
686
+ #: app/features/events.php:1770 app/features/events.php:1785
687
+ #: app/features/events.php:1951 app/features/events.php:1964
688
+ #: app/features/events.php:2115 app/features/events.php:2151
689
+ #: app/features/events.php:2249 app/features/events.php:2264
690
+ #: app/features/events.php:2294 app/features/events.php:2307
691
  #: app/features/fes/form.php:396 app/features/fes/form.php:704
692
  #: app/features/locations.php:334 app/features/mec/booking.php:116
693
  #: app/features/mec/booking.php:182 app/features/mec/booking.php:195
701
  #: app/features/mec/meta_boxes/display_options.php:108
702
  #: app/features/mec/meta_boxes/display_options.php:119
703
  #: app/features/mec/meta_boxes/display_options.php:131
704
+ #: app/features/mec/meta_boxes/display_options.php:311
705
+ #: app/features/mec/meta_boxes/display_options.php:323
706
+ #: app/features/mec/meta_boxes/display_options.php:335
707
+ #: app/features/mec/meta_boxes/display_options.php:348
708
+ #: app/features/mec/meta_boxes/display_options.php:359
709
+ #: app/features/mec/meta_boxes/display_options.php:372
710
+ #: app/features/mec/meta_boxes/display_options.php:383
711
+ #: app/features/mec/meta_boxes/display_options.php:552
712
+ #: app/features/mec/meta_boxes/display_options.php:847
713
+ #: app/features/mec/meta_boxes/display_options.php:1382
714
+ #: app/features/mec/meta_boxes/display_options.php:1494
715
+ #: app/features/mec/meta_boxes/display_options.php:1506
716
+ #: app/features/mec/meta_boxes/display_options.php:1517
717
+ #: app/features/mec/meta_boxes/display_options.php:1587
718
+ #: app/features/mec/meta_boxes/display_options.php:1598
719
+ #: app/features/mec/meta_boxes/display_options.php:1611
720
+ #: app/features/mec/meta_boxes/display_options.php:1684
721
+ #: app/features/mec/meta_boxes/display_options.php:1771
722
+ #: app/features/mec/meta_boxes/display_options.php:1782
723
+ #: app/features/mec/meta_boxes/display_options.php:1793
724
+ #: app/features/mec/meta_boxes/display_options.php:1901
725
+ #: app/features/mec/meta_boxes/display_options.php:1914
726
+ #: app/features/mec/meta_boxes/display_options.php:1927
727
+ #: app/features/mec/meta_boxes/display_options.php:1940
728
+ #: app/features/mec/meta_boxes/display_options.php:1953
729
+ #: app/features/mec/meta_boxes/display_options.php:2041
730
+ #: app/features/mec/meta_boxes/display_options.php:2132
731
  #: app/features/mec/modules.php:52 app/features/mec/modules.php:85
732
  #: app/features/mec/modules.php:102 app/features/mec/modules.php:137
733
  #: app/features/mec/modules.php:153 app/features/mec/modules.php:323
734
+ #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
735
+ #: app/features/mec/notifications.php:303
736
+ #: app/features/mec/notifications.php:418
737
+ #: app/features/mec/notifications.php:534
738
+ #: app/features/mec/notifications.php:645
739
+ #: app/features/mec/notifications.php:656
740
+ #: app/features/mec/notifications.php:771
741
+ #: app/features/mec/notifications.php:855 app/features/mec/settings.php:67
742
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:133
743
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:189
744
  #: app/features/mec/settings.php:234 app/features/mec/settings.php:269
756
  #: app/features/mec/styling.php:235 app/features/mec/styling.php:248
757
  #: app/features/organizers.php:272 app/features/popup/event.php:126
758
  #: app/features/popup/event.php:173 app/skins/single.php:965
759
+ #: app/skins/single/default.php:160 app/skins/single/default.php:392
760
+ #: app/skins/single/m1.php:219 app/skins/single/m2.php:143
761
+ #: app/skins/single/modern.php:163
762
  msgid "Read More"
763
  msgstr "Číst více"
764
 
765
+ #: app/features/events.php:592
766
  msgid "Repeating"
767
  msgstr "Opakování"
768
 
769
+ #: app/features/events.php:601
770
  msgid "Event Repeating (Recurring events)"
771
  msgstr "Opakování události (opakující se události)"
772
 
773
+ #: app/features/events.php:605 app/features/fes/form.php:327
774
  msgid "Repeats"
775
  msgstr "Opakování"
776
 
777
+ #: app/features/events.php:613 app/features/fes/form.php:329
778
+ #: app/features/mec.php:1326 app/skins/default_full_calendar/tpl.php:74
779
  #: app/skins/full_calendar/tpl.php:121
780
  msgid "Daily"
781
  msgstr "Děnně"
782
 
783
+ #: app/features/events.php:620 app/features/fes/form.php:330
784
  msgid "Every Weekday"
785
  msgstr "Každý všední den"
786
 
787
+ #: app/features/events.php:627 app/features/fes/form.php:331
788
  msgid "Every Weekend"
789
  msgstr "Každý víkend"
790
 
791
+ #: app/features/events.php:634 app/features/fes/form.php:332
792
  msgid "Certain Weekdays"
793
  msgstr "Určité pracovní dny"
794
 
795
+ #: app/features/events.php:641 app/features/fes/form.php:333
796
  #: app/skins/default_full_calendar/tpl.php:73
797
  #: app/skins/full_calendar/tpl.php:120
798
  msgid "Weekly"
799
  msgstr "Týdně"
800
 
801
+ #: app/features/events.php:648 app/features/fes/form.php:334
802
+ #: app/features/mec.php:1327 app/skins/default_full_calendar/tpl.php:72
803
  #: app/skins/full_calendar/tpl.php:119
804
  msgid "Monthly"
805
  msgstr "Měsíčně"
806
 
807
+ #: app/features/events.php:655 app/features/fes/form.php:335
808
+ #: app/features/mec.php:1328 app/skins/default_full_calendar/tpl.php:71
809
  #: app/skins/full_calendar/tpl.php:118
810
  msgid "Yearly"
811
  msgstr "Ročně"
812
 
813
+ #: app/features/events.php:662 app/features/fes/form.php:336
814
  msgid "Custom Days"
815
  msgstr "Vlastní dny"
816
 
817
+ #: app/features/events.php:669 app/features/fes/form.php:337
818
  msgid "Advanced"
819
  msgstr "Pokročilé"
820
 
821
+ #: app/features/events.php:674 app/features/fes/form.php:341
822
  msgid "Repeat Interval"
823
  msgstr "Interval opakování"
824
 
825
+ #: app/features/events.php:676 app/features/fes/form.php:342
826
  msgid "Repeat interval"
827
  msgstr "Interval opakování"
828
 
829
+ #: app/features/events.php:680 app/features/fes/form.php:345
830
  msgid "Week Days"
831
  msgstr "Dny v týdnu"
832
 
833
+ #: app/features/events.php:697
834
  #, fuzzy
835
  #| msgid "Pro version of Modern Events Calendar"
836
  msgid ""
838
  "Calendar."
839
  msgstr "Pro verze doplňku Modern Events Calendar"
840
 
841
+ #: app/features/events.php:703 app/features/events.php:1853
842
+ #: app/features/events.php:1881 app/features/events.php:2019
843
  #: app/features/fes/form.php:359 app/features/ix/import_f_calendar.php:42
844
  #: app/features/ix/import_g_calendar.php:51
845
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
846
  msgid "Start"
847
  msgstr "Začátek"
848
 
849
+ #: app/features/events.php:716 app/features/events.php:1219
850
+ #: app/features/events.php:1339 app/features/events.php:1444
851
+ #: app/features/events.php:1837 app/features/events.php:2008
852
+ #: app/features/events.php:2088 app/features/events.php:2221
853
  #: app/features/fes/form.php:389 app/features/fes/form.php:920
854
  msgid "Add"
855
  msgstr "Přidat"
856
 
857
+ #: app/features/events.php:719 app/features/fes/form.php:392
858
  msgid "Custom Days Repeating"
859
  msgstr "Opakování vlastních dnů"
860
 
861
+ #: app/features/events.php:722 app/features/fes/form.php:395
862
  #, fuzzy
863
  #| msgid ""
864
  #| "Add certain days to event occurrence dates. If you have single day event, "
873
  "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
874
  "datum zahájení a ukončení musí odpovídat počátečnímu datu."
875
 
876
+ #: app/features/events.php:733 app/features/events.php:1857
877
+ #: app/features/events.php:1885 app/features/events.php:2023
878
  #: app/features/fes/form.php:374
879
  msgid "End"
880
  msgstr "Konec"
881
 
882
+ #: app/features/events.php:810 app/features/fes/form.php:468
883
  msgid "First"
884
  msgstr "První"
885
 
886
+ #: app/features/events.php:852 app/features/fes/form.php:510
887
  msgid "Second"
888
  msgstr "Druhá"
889
 
890
+ #: app/features/events.php:894 app/features/fes/form.php:552
891
  msgid "Third"
892
  msgstr "Třetí"
893
 
894
+ #: app/features/events.php:936 app/features/fes/form.php:594
895
  msgid "Fourth"
896
  msgstr "Čtvrtá"
897
 
898
+ #: app/features/events.php:978 app/features/fes/form.php:636
899
  msgid "Last"
900
  msgstr "Poslední"
901
 
902
+ #: app/features/events.php:1025 app/features/fes/form.php:682
903
  msgid "Ends Repeat"
904
  msgstr "Ukončení opakování"
905
 
906
+ #: app/features/events.php:1037 app/features/fes/form.php:686
907
  msgid "Never"
908
  msgstr "Nikdy"
909
 
910
  # Možná Zapnuto
911
+ #: app/features/events.php:1049 app/features/fes/form.php:691
912
  msgid "On"
913
  msgstr "Na"
914
 
915
+ #: app/features/events.php:1065 app/features/fes/form.php:698
916
  msgid "After"
917
  msgstr "Po"
918
 
919
+ #: app/features/events.php:1069 app/features/events.php:1073
920
  #: app/features/fes/form.php:700 app/features/fes/form.php:703
921
  msgid "Occurrences times"
922
  msgstr "Časy výskytu"
923
 
924
+ #: app/features/events.php:1074
925
  #, fuzzy
926
  #| msgid ""
927
  #| "The event will finish after certain repeats. For example if you set it to "
933
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
934
  "hodnotu 10, událost skončí po 10 opakováních."
935
 
936
+ #: app/features/events.php:1089 app/features/fes/form.php:717
937
  #, fuzzy
938
  #| msgid "Next Occurrence of Other Events"
939
  msgid "Show only one occurrence of this event"
940
  msgstr "Další výskyt dalších událostí"
941
 
942
+ #: app/features/events.php:1109 app/features/events.php:3642
943
+ #: app/features/events.php:3684 app/features/fes/form.php:790
944
  #: app/features/ix.php:3513 app/features/ix.php:3554
945
+ #: app/features/mec/settings.php:715 app/libraries/main.php:5920
946
+ #: app/libraries/main.php:5967 app/widgets/single.php:103
947
  msgid "Event Cost"
948
  msgstr "Cena události"
949
 
950
+ #: app/features/events.php:1206
951
  msgid "Exceptional Days (Exclude Dates)"
952
  msgstr "Výjimečné dny (vyjma dat)"
953
 
954
+ #: app/features/events.php:1212 app/features/events.php:1222
955
  msgid "Exclude certain days"
956
  msgstr "Vyloučit určité dny"
957
 
958
+ #: app/features/events.php:1217 app/features/events.php:2436
959
+ #: app/features/events.php:2525 app/features/fes.php:233
960
  #: app/features/mec/booking.php:563 app/features/mec/booking.php:659
961
  #: app/features/mec/single.php:185 app/features/profile/profile.php:58
962
+ #: app/libraries/main.php:3241 app/modules/booking/steps/tickets.php:94
963
  #: app/modules/next-event/details.php:134 app/skins/single.php:938
964
+ #: app/skins/single/default.php:100 app/skins/single/default.php:334
965
+ #: app/skins/single/m1.php:22 app/skins/single/modern.php:197
966
  msgid "Date"
967
  msgstr "Datum"
968
 
969
+ #: app/features/events.php:1223
970
  msgid ""
971
  "Exclude certain days from event occurrence dates. Please note that you can "
972
  "exclude only single day occurrences and you cannot exclude one day from "
976
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
977
  "vícedenních výskytů."
978
 
979
+ #: app/features/events.php:1282 app/libraries/render.php:544
980
  msgid "Day 1"
981
  msgstr "Den 1"
982
 
983
+ #: app/features/events.php:1312
984
  msgid "Add Day"
985
  msgstr "Přidat den"
986
 
987
+ #: app/features/events.php:1313
988
  msgid ""
989
  "Add new days for schedule. For example if your event is multiple days, you "
990
  "can add a different schedule for each day!"
992
  "Přidat nové dny pro rozvrh. Pokud je například vaše akce vícedenní, můžete "
993
  "pro každý den přidat jiný rozvrh!"
994
 
995
+ #: app/features/events.php:1320
996
  #, php-format
997
  msgid "Day %s"
998
  msgstr "Den %s"
999
 
1000
+ #: app/features/events.php:1324 app/features/events.php:1363
1001
+ #: app/features/events.php:1398 app/features/events.php:1430
1002
+ #: app/features/events.php:1459 app/features/events.php:2236
1003
+ #: app/features/events.php:2283 app/features/events.php:3448
1004
+ #: app/features/events.php:3642 app/features/events.php:3684
1005
  #: app/features/fes/form.php:248 app/features/ix.php:3513
1006
  #: app/features/ix.php:3554 app/features/mec/booking.php:460
1007
  #: app/features/mec/booking.php:492 app/features/mec/styling.php:130
1008
  msgid "Title"
1009
  msgstr "Název"
1010
 
1011
+ #: app/features/events.php:1333 app/features/events.php:1370
1012
+ #: app/features/events.php:1403 app/features/events.php:1438
1013
+ #: app/features/events.php:1464 app/features/events.php:1867
1014
+ #: app/features/events.php:1893 app/features/events.php:2029
1015
+ #: app/features/events.php:2128 app/features/events.php:2164
1016
+ #: app/features/events.php:2271 app/features/events.php:2313
1017
  #: app/features/mec/booking.php:403 app/features/mec/booking.php:432
1018
  #: app/features/mec/booking.php:483 app/features/mec/booking.php:515
1019
+ #: app/libraries/main.php:3076 app/libraries/main.php:3105
1020
+ #: app/libraries/main.php:3134 app/libraries/main.php:3163
1021
+ #: app/libraries/main.php:3192 app/libraries/main.php:3221
1022
+ #: app/libraries/main.php:3250 app/libraries/main.php:3279
1023
+ #: app/libraries/main.php:3308 app/libraries/main.php:3329
1024
+ #: app/libraries/main.php:3360 app/libraries/main.php:3406
1025
+ #: app/libraries/main.php:3452 app/libraries/main.php:3501
1026
+ #: app/libraries/main.php:3541
1027
  msgid "Remove"
1028
  msgstr "Odstranit"
1029
 
1030
+ #: app/features/events.php:1340 app/features/events.php:1445
1031
  msgid "Add new hourly schedule row"
1032
  msgstr "Přidejte nový řádek rozvrhu hodin"
1033
 
1034
+ #: app/features/events.php:1355 app/features/events.php:1392
1035
+ #: app/features/events.php:1454
1036
  msgid "From e.g. 8:15"
1037
  msgstr "Od např. 8:15"
1038
 
1039
+ #: app/features/events.php:1359 app/features/events.php:1395
1040
+ #: app/features/events.php:1456
1041
  msgid "To e.g. 8:45"
1042
  msgstr "Do např. 8:45"
1043
 
1044
+ #: app/features/events.php:1367 app/features/events.php:1401
1045
+ #: app/features/events.php:1462 app/features/events.php:1758
1046
+ #: app/features/events.php:1940
1047
  msgid "Description"
1048
  msgstr "Popis"
1049
 
1050
+ #: app/features/events.php:1373 app/features/events.php:1406
1051
+ #: app/features/events.php:1467 app/features/fes/form.php:916
1052
  #: app/features/mec.php:469 app/features/mec/modules.php:51
1053
  #: app/features/mec/settings.php:763 app/features/speakers.php:62
1054
+ #: app/libraries/main.php:569 app/libraries/main.php:5895
1055
+ #: app/libraries/main.php:5943 app/modules/speakers/details.php:18
1056
  msgid "Speakers"
1057
  msgstr "Řečníci"
1058
 
1059
+ #: app/features/events.php:1426 app/features/events.php:1434
1060
  msgid "New Day"
1061
  msgstr "Nový den"
1062
 
1063
+ #: app/features/events.php:1498 app/features/fes/form.php:767
1064
  #: app/features/mec/settings.php:709
1065
  msgid "Event Links"
1066
  msgstr "Odkazy na událost"
1067
 
1068
+ #: app/features/events.php:1501 app/features/events.php:1507
1069
+ #: app/features/fes/form.php:769 app/libraries/main.php:5918
1070
+ #: app/libraries/main.php:5965
1071
  msgid "Event Link"
1072
  msgstr "Odkaz na událost"
1073
 
1074
+ #: app/features/events.php:1504 app/features/events.php:1520
1075
  #: app/features/fes/form.php:770 app/features/fes/form.php:775
1076
  msgid "eg. http://yoursite.com/your-event"
1077
  msgstr "např. http://yoursite.com/vase-udalost"
1078
 
1079
+ #: app/features/events.php:1508
1080
  #, fuzzy
1081
  #| msgid ""
1082
  #| "If you fill it, it will be replaced instead of default event page link. "
1091
  "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
1092
  "URL, můžete také použít zkracovač URL"
1093
 
1094
+ #: app/features/events.php:1510
1095
  msgid "URL Shortener"
1096
  msgstr "Zkracovač URL"
1097
 
1098
+ #: app/features/events.php:1517 app/features/events.php:1530
1099
+ #: app/features/fes/form.php:774 app/libraries/main.php:5919
1100
+ #: app/libraries/main.php:5966 app/skins/single.php:964
1101
+ #: app/skins/single/default.php:159 app/skins/single/default.php:391
1102
+ #: app/skins/single/m1.php:218 app/skins/single/m2.php:142
1103
+ #: app/skins/single/modern.php:162 app/widgets/single.php:107
1104
  msgid "More Info"
1105
  msgstr "Více info"
1106
 
1107
+ #: app/features/events.php:1523 app/features/fes/form.php:776
1108
  msgid "More Information"
1109
  msgstr "Více informací"
1110
 
1111
+ #: app/features/events.php:1525 app/features/fes/form.php:778
1112
  msgid "Current Window"
1113
  msgstr "Aktuální okno"
1114
 
1115
+ #: app/features/events.php:1526 app/features/fes/form.php:779
1116
  msgid "New Window"
1117
  msgstr "Nové okno"
1118
 
1119
+ #: app/features/events.php:1531 app/features/fes/form.php:781
1120
  msgid ""
1121
  "If you fill it, it will be shown in event details page as an optional link. "
1122
  "Insert full link including http(s)://"
1124
  "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
1125
  "o události. Vložte celý odkaz včetně http (s): //"
1126
 
1127
+ #: app/features/events.php:1554 app/features/mec/settings.php:777
1128
  msgid "Booking Options"
1129
  msgstr "Možnosti rezervace"
1130
 
1131
+ #: app/features/events.php:1555
1132
  #, fuzzy
1133
  #| msgid "Total user booking limits"
1134
  msgid "Total User Booking Limits"
1135
  msgstr "Celkové limity rezervace uživatelů"
1136
 
1137
+ #: app/features/events.php:1556 app/features/events.php:1701
1138
+ #: app/libraries/book.php:60 app/libraries/main.php:5923
1139
  #: app/modules/booking/steps/tickets.php:119
1140
  #: app/modules/booking/steps/tickets.php:125
1141
  msgid "Tickets"
1142
  msgstr "Vstupenky"
1143
 
1144
+ #: app/features/events.php:1558 app/features/events.php:2065
1145
  msgid "Fees"
1146
  msgstr "Poplatky"
1147
 
1148
+ #: app/features/events.php:1561 app/features/events.php:2197
1149
  #: app/features/mec/settings.php:789
1150
  msgid "Ticket Variations / Options"
1151
  msgstr "Varianty vstupenky / možnosti"
1152
 
1153
+ #: app/features/events.php:1565 app/features/mec/booking.php:735
1154
  #: app/features/mec/support-page.php:118
1155
  msgid "Organizer Payment"
1156
  msgstr "Platba organizátora"
1157
 
1158
+ #: app/features/events.php:1608 app/features/events.php:1622
1159
  #, fuzzy
1160
  #| msgid "Total booking limits"
1161
  msgid "Total booking limit"
1162
  msgstr "Celkové limity rezervace"
1163
 
1164
+ #: app/features/events.php:1619 app/features/events.php:1806
1165
+ #: app/features/events.php:1978 app/modules/booking/default.php:98
1166
  #: app/modules/booking/steps/tickets.php:119
1167
  #: app/modules/booking/steps/tickets.php:125
1168
  #: app/skins/available_spot/tpl.php:142
1169
  msgid "Unlimited"
1170
  msgstr "Neomezené"
1171
 
1172
+ #: app/features/events.php:1625
1173
  msgid ""
1174
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1175
  "limitation number."
1177
  "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1178
  "políčka a zadejte číslo omezení."
1179
 
1180
+ #: app/features/events.php:1627
1181
  msgid "Read About A Booking System"
1182
  msgstr "Přečtěte si o rezervačním systému"
1183
 
1184
+ #: app/features/events.php:1635
1185
  msgid "100"
1186
  msgstr "100"
1187
 
1188
+ #: app/features/events.php:1637 app/features/events.php:1651
1189
  #, fuzzy
1190
  #| msgid "Next Occurrence"
1191
  msgid "Book All Occurrences"
1192
  msgstr "Další výskyt"
1193
 
1194
+ #: app/features/events.php:1648
1195
  msgid "Sell all occurrences by one booking"
1196
  msgstr ""
1197
 
1198
+ #: app/features/events.php:1654
1199
  msgid ""
1200
  "If you have a series of events and you want to sell all of them at once, "
1201
  "this option is for you! For example a weekly yoga course or something "
1202
  "similar."
1203
  msgstr ""
1204
 
1205
+ #: app/features/events.php:1664
1206
  msgid "Total user booking limits"
1207
  msgstr "Celkové limity rezervace uživatelů"
1208
 
1209
+ #: app/features/events.php:1675 app/features/events.php:2077
1210
+ #: app/features/events.php:2209 app/features/events.php:2390
1211
  msgid "Inherit from global options"
1212
  msgstr "Zdědí z globálních možností"
1213
 
1214
+ #: app/features/events.php:1678
1215
  msgid "12"
1216
  msgstr "12"
1217
 
1218
+ #: app/features/events.php:1704
1219
  msgid ""
1220
  "You're translating an event so MEC will use the original event for tickets "
1221
  "and booking. You can only translate the ticket name and description. Please "
1225
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1226
  "definujte určité vstupenky, které jste definovali v původní události."
1227
 
1228
+ #: app/features/events.php:1709
1229
  #, fuzzy
1230
  #| msgid "Ticket"
1231
  msgid "Add Ticket"
1232
  msgstr "Vstupenka"
1233
 
1234
+ #: app/features/events.php:1721 app/features/events.php:1905
1235
  #, fuzzy
1236
  #| msgid "Ticket"
1237
  msgid "Ticket ID"
1238
  msgstr "Vstupenka"
1239
 
1240
+ #: app/features/events.php:1721 app/features/events.php:1905
1241
+ #: app/features/events.php:3642 app/features/events.php:3684
1242
  #: app/features/fes.php:233 app/features/ix.php:3513 app/features/ix.php:3554
1243
  #: app/features/labels.php:177 app/features/locations.php:260
1244
  #: app/features/organizers.php:203 app/features/speakers.php:268
1245
  msgid "ID"
1246
  msgstr "ID"
1247
 
1248
+ #: app/features/events.php:1724 app/features/events.php:1908
1249
  msgid "Ticket Name"
1250
  msgstr "Název vstupenky"
1251
 
1252
+ #: app/features/events.php:1729 app/features/events.php:1912
1253
+ #: app/features/events.php:3642 app/features/events.php:3684
1254
  #: app/features/ix.php:3513 app/features/ix.php:3554
1255
  msgid "Start Time"
1256
  msgstr "Začátek"
1257
 
1258
+ #: app/features/events.php:1742 app/features/events.php:1925
1259
+ #: app/features/events.php:3642 app/features/events.php:3684
1260
  #: app/features/ix.php:3513 app/features/ix.php:3554
1261
  msgid "End Time"
1262
  msgstr "Konec"
1263
 
1264
+ #: app/features/events.php:1763 app/features/events.php:1767
1265
+ #: app/features/events.php:1861 app/features/events.php:1888
1266
+ #: app/features/events.php:1945 app/features/events.php:1948
1267
+ #: app/features/events.php:2025 app/features/events.php:2242
1268
+ #: app/features/events.php:2246 app/features/events.php:2288
1269
+ #: app/features/events.php:2291 app/features/mec/booking.php:464
1270
  #: app/features/mec/booking.php:467 app/features/mec/booking.php:496
1271
  #: app/features/mec/booking.php:499
1272
  msgid "Price"
1273
  msgstr "Cena"
1274
 
1275
+ #: app/features/events.php:1768 app/features/events.php:1949
1276
  #, fuzzy
1277
  #| msgid "Insert 0 for free ticket. Only numbers please."
1278
  msgid ""
1280
  "any symbols or characters."
1281
  msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1282
 
1283
+ #: app/features/events.php:1777 app/features/events.php:1782
1284
+ #: app/features/events.php:1958 app/features/events.php:1961
1285
  msgid "Price Label"
1286
  msgstr "Cenový štítek"
1287
 
1288
+ #: app/features/events.php:1783 app/features/events.php:1962
1289
  msgid "For showing on website. e.g. $15"
1290
  msgstr "Pro zobrazení na webu. např. 15 $"
1291
 
1292
+ #: app/features/events.php:1793 app/features/events.php:1972
1293
  msgid "Available Tickets"
1294
  msgstr "Dostupné vstupenky"
1295
 
1296
+ #: app/features/events.php:1810 app/features/events.php:1982
1297
  #, fuzzy
1298
  #| msgid "Maximum Per Ticket"
1299
  msgid "Minimum Ticket e.g. 3"
1300
  msgstr "Maximum na jednu vstupenku"
1301
 
1302
+ #: app/features/events.php:1813 app/features/events.php:1985
1303
  #, fuzzy
1304
  #| msgid "Maximum Per Ticket"
1305
  msgid "MinimumTicket"
1306
  msgstr "Maximum na jednu vstupenku"
1307
 
1308
+ #: app/features/events.php:1815 app/features/events.php:1987
1309
  msgid "Set a number for the minimum ticket reservation possible"
1310
  msgstr ""
1311
 
1312
+ #: app/features/events.php:1823 app/features/events.php:1995
1313
  msgid "e.g. 0"
1314
  msgstr ""
1315
 
1316
+ #: app/features/events.php:1825 app/features/events.php:1997
1317
  #, fuzzy
1318
  #| msgid "Days"
1319
  msgid "Day"
1320
  msgstr "Dny"
1321
 
1322
+ #: app/features/events.php:1826 app/features/events.php:1998
1323
  msgid "Hour"
1324
  msgstr ""
1325
 
1326
+ #: app/features/events.php:1828 app/features/events.php:2000
1327
  #, php-format
1328
  msgid "Stop selling ticket %s before event start."
1329
  msgstr ""
1330
 
1331
+ #: app/features/events.php:1835 app/features/events.php:2006
1332
  msgid "Price per Date"
1333
  msgstr "Cena za datum"
1334
 
1335
+ #: app/features/events.php:1865 app/features/events.php:1891
1336
+ #: app/features/events.php:2027 app/features/labels.php:60
1337
+ #: app/features/mec/meta_boxes/display_options.php:1396
1338
  #: app/features/mec/meta_boxes/search_form.php:67
1339
  #: app/features/mec/meta_boxes/search_form.php:137
1340
  #: app/features/mec/meta_boxes/search_form.php:207
1347
  #: app/features/mec/meta_boxes/search_form.php:690
1348
  #: app/features/mec/meta_boxes/search_form.php:796
1349
  #: app/features/mec/settings.php:917 app/features/mec/single.php:341
1350
+ #: app/features/search.php:98 app/libraries/skins.php:1069
1351
  msgid "Label"
1352
  msgstr "Štítek"
1353
 
1354
+ #: app/features/events.php:2102 app/features/events.php:2140
1355
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:412
1356
  msgid "Fee Title"
1357
  msgstr "Název poplatku"
1358
 
1359
+ #: app/features/events.php:2108 app/features/events.php:2112
1360
+ #: app/features/events.php:2145 app/features/events.php:2148
1361
  #: app/features/mec/booking.php:387 app/features/mec/booking.php:390
1362
  #: app/features/mec/booking.php:416 app/features/mec/booking.php:419
1363
  msgid "Amount"
1364
  msgstr "Množství"
1365
 
1366
+ #: app/features/events.php:2113 app/features/events.php:2149
1367
  #: app/features/mec/booking.php:391 app/features/mec/booking.php:420
1368
  msgid ""
1369
  "Fee amount, considered as fixed amount if you set the type to amount "
1372
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1373
  "odpovídající procentuální hodnotě"
1374
 
1375
+ #: app/features/events.php:2122 app/features/events.php:2158
1376
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:427
1377
  msgid "Percent"
1378
  msgstr "Procent"
1379
 
1380
+ #: app/features/events.php:2123 app/features/events.php:2159
1381
  #: app/features/mec/booking.php:399 app/features/mec/booking.php:428
1382
  msgid "Amount (Per Ticket)"
1383
  msgstr "Částka (za vstupenku)"
1384
 
1385
+ #: app/features/events.php:2124 app/features/events.php:2160
1386
  #: app/features/mec/booking.php:400 app/features/mec/booking.php:429
1387
  msgid "Amount (Per Booking)"
1388
  msgstr "Částka (za rezervaci)"
1389
 
1390
+ #: app/features/events.php:2247 app/features/events.php:2292
1391
  #: app/features/mec/booking.php:468 app/features/mec/booking.php:500
1392
  msgid "Option Price"
1393
  msgstr "Možnosti ceny"
1394
 
1395
+ #: app/features/events.php:2257 app/features/events.php:2261
1396
+ #: app/features/events.php:2301 app/features/events.php:2304
1397
  #: app/features/mec/booking.php:474 app/features/mec/booking.php:477
1398
  #: app/features/mec/booking.php:506 app/features/mec/booking.php:509
1399
  msgid "Maximum Per Ticket"
1400
  msgstr "Maximum na jednu vstupenku"
1401
 
1402
+ #: app/features/events.php:2262 app/features/events.php:2305
1403
  #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1404
  #, fuzzy
1405
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1406
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1407
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1408
 
1409
+ #: app/features/events.php:2402 app/features/mec/booking.php:526
1410
  #, fuzzy
1411
  #| msgid "Attendees Limit"
1412
  msgid "Per Attendee Fields"
1413
  msgstr "Limit účastníků"
1414
 
1415
+ #: app/features/events.php:2432 app/features/mec/booking.php:559
1416
+ #: app/libraries/main.php:3096
1417
  msgid "MEC Name"
1418
  msgstr "MEC Jméno"
1419
 
1420
+ #: app/features/events.php:2433 app/features/mec/booking.php:560
1421
+ #: app/libraries/main.php:3125
1422
  msgid "MEC Email"
1423
  msgstr "MEC Email"
1424
 
1425
+ #: app/features/events.php:2434 app/features/events.php:2523
1426
  #: app/features/mec/booking.php:561 app/features/mec/booking.php:657
1427
+ #: app/features/mec/single.php:182 app/libraries/main.php:3067
1428
  msgid "Text"
1429
  msgstr "Text"
1430
 
1431
+ #: app/features/events.php:2437 app/features/events.php:2526
1432
  #: app/features/mec/booking.php:564 app/features/mec/booking.php:660
1433
  #: app/features/mec/single.php:186 app/features/organizers.php:103
1434
  #: app/features/organizers.php:148 app/features/speakers.php:119
1435
  #: app/features/speakers.php:192 app/features/speakers.php:271
1436
+ #: app/libraries/main.php:3270
1437
  msgid "Tel"
1438
  msgstr "Tel"
1439
 
1440
+ #: app/features/events.php:2438 app/features/mec/booking.php:565
1441
+ #: app/libraries/main.php:3212
1442
  msgid "File"
1443
  msgstr "Soubor"
1444
 
1445
+ #: app/features/events.php:2439 app/features/events.php:2527
1446
  #: app/features/mec/booking.php:566 app/features/mec/booking.php:661
1447
+ #: app/features/mec/single.php:187 app/libraries/main.php:3299
1448
  msgid "Textarea"
1449
  msgstr "Plocha textu"
1450
 
1451
+ #: app/features/events.php:2440 app/features/events.php:2528
1452
  #: app/features/mec/booking.php:567 app/features/mec/booking.php:662
1453
+ #: app/features/mec/single.php:189 app/libraries/main.php:3351
1454
  msgid "Checkboxes"
1455
  msgstr "Zatržítko"
1456
 
1457
+ #: app/features/events.php:2441 app/features/events.php:2529
1458
  #: app/features/mec/booking.php:568 app/features/mec/booking.php:663
1459
+ #: app/features/mec/single.php:190 app/libraries/main.php:3397
1460
  msgid "Radio Buttons"
1461
  msgstr "Přepínače"
1462
 
1463
+ #: app/features/events.php:2442 app/features/events.php:2530
1464
  #: app/features/mec/booking.php:569 app/features/mec/booking.php:664
1465
  #: app/features/mec/meta_boxes/search_form.php:34
1466
  #: app/features/mec/meta_boxes/search_form.php:41
1538
  #: app/features/mec/meta_boxes/search_form.php:792
1539
  #: app/features/mec/meta_boxes/search_form.php:799
1540
  #: app/features/mec/meta_boxes/search_form.php:813
1541
+ #: app/features/mec/single.php:191 app/libraries/main.php:3443
1542
  msgid "Dropdown"
1543
  msgstr "Rozbalovací"
1544
 
1545
+ #: app/features/events.php:2443 app/features/events.php:2531
1546
  #: app/features/mec/booking.php:570 app/features/mec/booking.php:665
1547
+ #: app/libraries/main.php:3492
1548
  msgid "Agreement"
1549
  msgstr "Smlouva"
1550
 
1551
+ #: app/features/events.php:2444 app/features/events.php:2532
1552
  #: app/features/mec/booking.php:571 app/features/mec/booking.php:666
1553
+ #: app/features/mec/single.php:188 app/libraries/main.php:3328
1554
  msgid "Paragraph"
1555
  msgstr "Paragraf"
1556
 
1557
+ #: app/features/events.php:2493 app/features/mec/booking.php:624
1558
  #, fuzzy
1559
  #| msgid "Required Field"
1560
  msgid "Fixed Fields"
1561
  msgstr "Požadovaná pole"
1562
 
1563
+ #: app/features/events.php:3350 app/features/events.php:3368
1564
+ #: app/features/events.php:3386 app/features/events.php:3404
1565
  #, php-format
1566
  msgid "Show all %s"
1567
  msgstr "Ukázat všechny %s"
1568
 
1569
+ #: app/features/events.php:3350
1570
  msgid "labels"
1571
  msgstr "štítky"
1572
 
1573
+ #: app/features/events.php:3368
1574
  msgid "locations"
1575
  msgstr "umístění"
1576
 
1577
+ #: app/features/events.php:3386
1578
  msgid "organizers"
1579
  msgstr "organizátoři"
1580
 
1581
+ #: app/features/events.php:3420
1582
  #, fuzzy
1583
  #| msgid "Attendees Limit"
1584
  msgid "Attendees List"
1585
  msgstr "Limit účastníků"
1586
 
1587
+ #: app/features/events.php:3450 app/features/events.php:3642
1588
+ #: app/features/events.php:3684 app/features/ix.php:3513
1589
  #: app/features/ix.php:3554 app/features/locations.php:58
1590
  #: app/features/locations.php:261 app/features/locations.php:322
1591
  #: app/features/locations.php:324 app/features/locations.php:333
1592
+ #: app/features/mec/meta_boxes/display_options.php:1397
1593
  #: app/features/mec/meta_boxes/search_form.php:38
1594
  #: app/features/mec/meta_boxes/search_form.php:108
1595
  #: app/features/mec/meta_boxes/search_form.php:178
1603
  #: app/features/mec/meta_boxes/search_form.php:767
1604
  #: app/features/mec/settings.php:891 app/features/mec/single.php:331
1605
  #: app/features/popup/event.php:116 app/features/popup/event.php:125
1606
+ #: app/features/search.php:74 app/libraries/main.php:2424
1607
+ #: app/libraries/main.php:5892 app/libraries/main.php:5940
1608
+ #: app/libraries/skins.php:965 app/skins/single.php:781
1609
+ #: app/skins/single.php:1224 app/skins/single/default.php:196
1610
+ #: app/skins/single/default.php:429 app/skins/single/m1.php:174
1611
+ #: app/skins/single/m2.php:97 app/skins/single/modern.php:116
1612
  msgid "Location"
1613
  msgstr "Umístění"
1614
 
1615
+ #: app/features/events.php:3455
1616
  msgid "Repeat"
1617
  msgstr "Opakovat"
1618
 
1619
+ #: app/features/events.php:3456
1620
  msgid "Author"
1621
  msgstr "Autor"
1622
 
1623
+ #: app/features/events.php:3577 app/features/events.php:3578
1624
  msgid "iCal Export"
1625
  msgstr "iCal Export"
1626
 
1627
+ #: app/features/events.php:3580 app/features/events.php:3581
1628
  msgid "CSV Export"
1629
  msgstr "CSV Export"
1630
 
1631
+ #: app/features/events.php:3583 app/features/events.php:3584
1632
  msgid "MS Excel Export"
1633
  msgstr "MS Excel Export"
1634
 
1635
+ #: app/features/events.php:3586 app/features/events.php:3587
1636
  msgid "XML Export"
1637
  msgstr "XML Export"
1638
 
1639
+ #: app/features/events.php:3589 app/features/events.php:3590
1640
  msgid "JSON Export"
1641
  msgstr "JSON Export"
1642
 
1643
+ #: app/features/events.php:3592 app/features/events.php:3593
1644
+ #: app/features/events.php:3775
1645
  msgid "Duplicate"
1646
  msgstr "Duplikát"
1647
 
1648
+ #: app/features/events.php:3642 app/features/events.php:3684
1649
  #: app/features/ix.php:3513 app/features/ix.php:3554
1650
  msgid "Link"
1651
  msgstr "Odkaz"
1652
 
1653
+ #: app/features/events.php:3642 app/features/events.php:3684
1654
  #, php-format
1655
  msgid "%s Tel"
1656
  msgstr "%s Tel"
1657
 
1658
+ #: app/features/events.php:3642 app/features/events.php:3684
1659
  #, php-format
1660
  msgid "%s Email"
1661
  msgstr "%s Email"
1662
 
1663
+ #: app/features/events.php:3987 app/features/fes.php:233
1664
+ #: app/features/profile/profile.php:183 app/libraries/main.php:2507
1665
+ #: app/libraries/main.php:5922
1666
  msgid "Ticket"
1667
  msgstr "Vstupenka"
1668
 
1669
+ #: app/features/events.php:3990 app/features/profile/profile.php:186
1670
  msgid "Variations"
1671
  msgstr "Variace"
1672
 
1673
+ #: app/features/events.php:4005 app/features/fes.php:304
1674
  msgid "Unknown"
1675
  msgstr "Neznámý"
1676
 
1677
+ #: app/features/events.php:4031
1678
  msgid ""
1679
  "If you want to send an email, first select your attendees and then click in "
1680
  "the button below, please."
1681
  msgstr ""
1682
 
1683
+ #: app/features/events.php:4031 app/features/mec/report.php:50
1684
  #, fuzzy
1685
  #| msgid "Organizer Email"
1686
  msgid "Send Email"
1687
  msgstr "Organizátor Email"
1688
 
1689
+ #: app/features/events.php:4035
1690
  #, fuzzy
1691
  #| msgid "Attendees Form"
1692
  msgid "No Attendees Found!"
1732
  msgid "Order Time"
1733
  msgstr "Konec"
1734
 
1735
+ #: app/features/fes.php:233 app/libraries/main.php:2455
1736
+ #: app/libraries/main.php:2570
1737
  msgid "Transaction ID"
1738
  msgstr "ID transakce"
1739
 
1812
  msgstr "Při spuštění události"
1813
 
1814
  #: app/features/fes/form.php:346
1815
+ #: app/features/mec/meta_boxes/display_options.php:1243
1816
  #: app/libraries/main.php:410
1817
  msgid "Monday"
1818
  msgstr "Pondělí"
1819
 
1820
  #: app/features/fes/form.php:347
1821
+ #: app/features/mec/meta_boxes/display_options.php:1244
1822
  #: app/libraries/main.php:410
1823
  msgid "Tuesday"
1824
  msgstr "Úterý"
1825
 
1826
  #: app/features/fes/form.php:348
1827
+ #: app/features/mec/meta_boxes/display_options.php:1245
1828
  #: app/libraries/main.php:410
1829
  msgid "Wednesday"
1830
  msgstr "Středa"
1831
 
1832
  #: app/features/fes/form.php:349
1833
+ #: app/features/mec/meta_boxes/display_options.php:1246
1834
  #: app/libraries/main.php:410
1835
  msgid "Thursday"
1836
  msgstr "Čtvrtek"
1837
 
1838
  #: app/features/fes/form.php:350
1839
+ #: app/features/mec/meta_boxes/display_options.php:1247
1840
  #: app/libraries/main.php:410
1841
  msgid "Friday"
1842
  msgstr "Pátek"
1843
 
1844
  #: app/features/fes/form.php:351
1845
+ #: app/features/mec/meta_boxes/display_options.php:1248
1846
  #: app/libraries/main.php:410
1847
  msgid "Saturday"
1848
  msgstr "Sobota"
1849
 
1850
  #: app/features/fes/form.php:352
1851
+ #: app/features/mec/meta_boxes/display_options.php:1242
1852
  #: app/libraries/main.php:410
1853
  msgid "Sunday"
1854
  msgstr "Neděle"
1902
  #: app/features/fes/form.php:848 app/features/labels.php:61
1903
  #: app/features/labels.php:221 app/features/mec.php:462
1904
  #: app/features/mec/meta_boxes/filter.php:72
1905
+ #: app/features/mec/meta_boxes/filter.php:133 app/libraries/main.php:5889
1906
+ #: app/libraries/main.php:5937 app/skins/single.php:994
1907
+ #: app/skins/single/default.php:174 app/skins/single/default.php:406
1908
+ #: app/skins/single/m1.php:77 app/skins/single/modern.php:252
1909
  msgid "Labels"
1910
  msgstr "Štítky"
1911
 
1967
  msgstr "MEC Import / Export"
1968
 
1969
  #: app/features/ix.php:111 app/features/mec/support.php:73
1970
+ #: app/libraries/main.php:815
1971
  msgid "Import / Export"
1972
  msgstr "Import / Export"
1973
 
2248
  #: app/features/ix/export_g_calendar.php:72
2249
  #: app/features/ix/export_g_calendar.php:151
2250
  #: app/features/ix/export_g_calendar.php:166
2251
+ #: app/features/mec/notifications.php:138
2252
+ #: app/features/mec/notifications.php:240
2253
+ #: app/features/mec/notifications.php:355
2254
+ #: app/features/mec/notifications.php:702
2255
  msgid "Add to Google Calendar"
2256
  msgstr "Přidat do Google kalendáře"
2257
 
2258
  #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:828
2259
+ #: app/features/mec/modules.php:413 app/features/mec/notifications.php:978
2260
  #: app/features/mec/settings.php:1162 app/features/mec/single.php:388
2261
  msgid "Checking ..."
2262
  msgstr "Ověřování ..."
2308
  #: app/features/mec/booking.php:333 app/features/mec/booking.php:349
2309
  #: app/features/mec/booking.php:367 app/features/mec/booking.php:444
2310
  #: app/features/mec/meta_boxes/display_options.php:214
2311
+ #: app/features/mec/meta_boxes/display_options.php:467
2312
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2313
  #: app/features/mec/modules.php:228
2314
  #, php-format
2320
  #: app/features/mec/booking.php:349 app/features/mec/booking.php:367
2321
  #: app/features/mec/booking.php:444
2322
  #: app/features/mec/meta_boxes/display_options.php:214
2323
+ #: app/features/mec/meta_boxes/display_options.php:467
2324
+ #: app/features/mec/meta_boxes/display_options.php:508
2325
+ #: app/features/mec/meta_boxes/display_options.php:741
2326
+ #: app/features/mec/meta_boxes/display_options.php:818
2327
+ #: app/features/mec/meta_boxes/display_options.php:1003
2328
+ #: app/features/mec/meta_boxes/display_options.php:1199
2329
+ #: app/features/mec/meta_boxes/display_options.php:1344
2330
+ #: app/features/mec/meta_boxes/display_options.php:1672
2331
  #: app/features/mec/modules.php:69 app/features/mec/modules.php:211
2332
  #: app/features/mec/modules.php:228
2333
  msgid "Pro version of Modern Events Calendar"
2512
 
2513
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2514
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2515
+ #: app/features/mec/notifications.php:598
2516
  msgid "Important Note"
2517
  msgstr "Důležitá poznámka"
2518
 
2676
 
2677
  #: app/features/labels.php:112 app/features/labels.php:139
2678
  #: app/features/mec/meta_boxes/display_options.php:40
2679
+ #: app/features/mec/meta_boxes/display_options.php:267
2680
+ #: app/features/mec/meta_boxes/display_options.php:513
2681
+ #: app/features/mec/meta_boxes/display_options.php:823
2682
+ #: app/features/mec/meta_boxes/display_options.php:912
2683
+ #: app/features/mec/meta_boxes/display_options.php:1204
2684
+ #: app/features/mec/meta_boxes/display_options.php:1478
2685
+ #: app/features/mec/meta_boxes/display_options.php:1573
2686
+ #: app/features/mec/meta_boxes/display_options.php:1741
2687
+ #: app/features/mec/meta_boxes/display_options.php:1870
2688
  msgid "Style"
2689
  msgstr "Styl"
2690
 
2708
  msgstr "Ztvárněná"
2709
 
2710
  #: app/features/labels.php:118 app/features/labels.php:143
2711
+ #: app/libraries/main.php:6206 app/skins/agenda/render.php:43
2712
  #: app/skins/available_spot/tpl.php:58 app/skins/carousel/render.php:38
2713
  #: app/skins/countdown/tpl.php:39 app/skins/cover/tpl.php:37
2714
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:64
2745
 
2746
  #: app/features/locations.php:59 app/features/mec.php:463
2747
  #: app/features/mec/dashboard.php:273 app/features/mec/meta_boxes/filter.php:70
2748
+ #: app/features/mec/meta_boxes/filter.php:97 app/libraries/main.php:5891
2749
+ #: app/libraries/main.php:5939
2750
  msgid "Locations"
2751
  msgstr "Umístění"
2752
 
2881
  msgid "Don't show map in single event page"
2882
  msgstr "Nezobrazovat mapu na jednostránkové události"
2883
 
2884
+ #: app/features/locations.php:396 app/libraries/main.php:5925
2885
+ #: app/libraries/main.php:5970
2886
  msgid "Other Locations"
2887
  msgstr "Další místa"
2888
 
2934
  msgid "Select Date"
2935
  msgstr "Vyberte typ"
2936
 
2937
+ #: app/features/mec.php:291 app/skins/masonry.php:257
2938
  msgid "All"
2939
  msgstr "Vše"
2940
 
2970
  #: app/features/mec.php:464 app/features/mec/dashboard.php:280
2971
  #: app/features/mec/meta_boxes/filter.php:71
2972
  #: app/features/mec/meta_boxes/filter.php:115 app/features/organizers.php:59
2973
+ #: app/libraries/main.php:5893 app/libraries/main.php:5941
2974
  msgid "Organizers"
2975
  msgstr "Organizátoři"
2976
 
3009
  msgid "MEC - Go Pro"
3010
  msgstr "MEC - podpora"
3011
 
3012
+ #: app/features/mec.php:479 app/features/mec.php:1256
3013
  #: app/features/mec/go-pro.php:9
3014
  msgid "Go Pro"
3015
  msgstr ""
3050
  msgid "Search Form"
3051
  msgstr "Vyhledávací formulář"
3052
 
3053
+ #: app/features/mec.php:958
3054
  msgid "Display content's images as Popup"
3055
  msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
3056
 
3057
+ #: app/features/mec.php:972 app/features/popup/shortcode.php:473
3058
  msgid "Single Event Display Method"
3059
  msgstr "Metoda zobrazení jedné události"
3060
 
3061
+ #: app/features/mec.php:977 app/features/popup/shortcode.php:477
3062
  msgid "Separate Window"
3063
  msgstr "Samostatné okno"
3064
 
3065
+ #: app/features/mec.php:978 app/features/popup/shortcode.php:481
3066
  #, fuzzy
3067
  #| msgid "Modal 1"
3068
  msgid "Modal Popup"
3069
  msgstr "Modal 1"
3070
 
3071
+ #: app/features/mec.php:991
3072
+ #, fuzzy
3073
+ #| msgid "Booking Options"
3074
+ msgid "Booking Button / Icon"
3075
+ msgstr "Možnosti rezervace"
3076
+
3077
+ #: app/features/mec.php:1151 app/features/mec.php:1269
3078
  msgid "Total Bookings"
3079
  msgstr "Celkový počet rezervací"
3080
 
3081
+ #: app/features/mec.php:1170 app/features/mec/dashboard.php:63
3082
  msgid "Modern Events Calendar (Lite)"
3083
  msgstr "Modern Events Calendar (Lite)"
3084
 
3085
+ #: app/features/mec.php:1179 app/features/mec/dashboard.php:291
3086
  #: app/features/mec/settings.php:431
3087
  msgid "Upcoming Events"
3088
  msgstr "Nadcházející události"
3089
 
3090
+ #: app/features/mec.php:1242
3091
  #, fuzzy
3092
  #| msgid "Update %s"
3093
  msgid "News & Updates"
3094
  msgstr "Aktualizovat %s"
3095
 
3096
+ #: app/features/mec.php:1255
3097
  msgid "Blog"
3098
  msgstr ""
3099
 
3100
+ #: app/features/mec.php:1255
3101
  msgid "Help"
3102
  msgstr ""
3103
 
3104
+ #: app/features/mec.php:1301
3105
  msgid "This Month"
3106
  msgstr "Tento měsíc"
3107
 
3108
+ #: app/features/mec.php:1307
3109
  msgid "Last Month"
3110
  msgstr "Minulý měsíc"
3111
 
3112
+ #: app/features/mec.php:1313
3113
  msgid "This Year"
3114
  msgstr "Tento rok"
3115
 
3116
+ #: app/features/mec.php:1319
3117
  msgid "Last Year"
3118
  msgstr "Minulý rok"
3119
 
3120
+ #: app/features/mec.php:1331
3121
  msgid "Bar"
3122
  msgstr "Pruh"
3123
 
3124
+ #: app/features/mec.php:1332
3125
  msgid "Line"
3126
  msgstr "Čára"
3127
 
3128
+ #: app/features/mec.php:1334
3129
  msgid "Filter"
3130
  msgstr "Filtr"
3131
 
3132
+ #: app/features/mec.php:1350
3133
  #, php-format
3134
  msgid "Total Sells (%s)"
3135
  msgstr "Celkový prodej %s"
3136
 
3137
+ #: app/features/mec.php:1378
3138
  #, fuzzy
3139
  #| msgid "Modern Events Calendar"
3140
  msgid "Print Calendar"
3141
  msgstr "Moderní kalendář událostí"
3142
 
3143
+ #: app/features/mec.php:1393
3144
  #, fuzzy
3145
  #| msgid "Display Event Price"
3146
  msgid "Display Events"
3179
  #: app/features/mec/booking.php:859 app/features/mec/messages.php:15
3180
  #: app/features/mec/messages.php:51 app/features/mec/messages.php:60
3181
  #: app/features/mec/messages.php:94 app/features/mec/messages.php:103
3182
+ #: app/features/mec/modules.php:25 app/features/mec/modules.php:378
3183
+ #: app/features/mec/modules.php:388 app/features/mec/modules.php:430
3184
+ #: app/features/mec/modules.php:444 app/features/mec/notifications.php:13
3185
+ #: app/features/mec/notifications.php:885
3186
+ #: app/features/mec/notifications.php:897
3187
+ #: app/features/mec/notifications.php:995
3188
+ #: app/features/mec/notifications.php:1009 app/features/mec/settings.php:36
3189
  #: app/features/mec/settings.php:1111 app/features/mec/settings.php:1121
3190
  #: app/features/mec/settings.php:1179 app/features/mec/settings.php:1193
3191
  #: app/features/mec/single.php:21 app/features/mec/single.php:353
3222
 
3223
  #: app/features/mec/booking.php:123
3224
  #: app/features/mec/meta_boxes/display_options.php:137
3225
+ #: app/features/mec/meta_boxes/display_options.php:400
3226
+ #: app/features/mec/meta_boxes/display_options.php:558
3227
+ #: app/features/mec/meta_boxes/display_options.php:1388
3228
+ #: app/features/mec/meta_boxes/display_options.php:1808
3229
+ #: app/features/mec/meta_boxes/display_options.php:1959
3230
+ #: app/features/mec/meta_boxes/display_options.php:2047
3231
+ #: app/features/mec/meta_boxes/display_options.php:2182
3232
  msgid "Limit"
3233
  msgstr "Limit"
3234
 
3487
  msgid "Auto verification for paid bookings"
3488
  msgstr "Automatické ověření pro placené rezervace"
3489
 
3490
+ #: app/features/mec/booking.php:295 app/features/mec/notifications.php:248
3491
+ #: app/features/notifications.php:144 app/libraries/main.php:590
3492
  msgid "Booking Confirmation"
3493
  msgstr "Potvrzení rezervace"
3494
 
3580
  "údaje pro povolené brány pro události a přijímat platby přímo!"
3581
 
3582
  #: app/features/mec/booking.php:823 app/features/mec/messages.php:78
3583
+ #: app/features/mec/modules.php:408 app/features/mec/notifications.php:973
3584
  #: app/features/mec/settings.php:1157 app/features/mec/single.php:383
3585
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:311
3586
  msgid "Saved"
3587
  msgstr "Uloženo"
3588
 
3589
  #: app/features/mec/booking.php:824 app/features/mec/messages.php:79
3590
+ #: app/features/mec/modules.php:409 app/features/mec/notifications.php:974
3591
  #: app/features/mec/settings.php:1158 app/features/mec/single.php:384
3592
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:312
3593
  msgid "Settings Saved!"
3594
  msgstr "Nastavení uložena!"
3595
 
3596
  #: app/features/mec/booking.php:826 app/features/mec/booking.php:848
3597
+ #: app/features/mec/modules.php:411 app/features/mec/modules.php:433
3598
+ #: app/features/mec/notifications.php:976
3599
+ #: app/features/mec/notifications.php:998 app/features/mec/settings.php:1160
3600
  #: app/features/mec/settings.php:1182 app/features/mec/single.php:386
3601
+ #: app/features/mec/single.php:408 app/libraries/main.php:6205
3602
  msgid "Verified"
3603
  msgstr "Ověřeno"
3604
 
3605
+ #: app/features/mec/booking.php:850 app/features/mec/modules.php:435
3606
+ #: app/features/mec/notifications.php:1000 app/features/mec/settings.php:1184
3607
  #: app/features/mec/single.php:410
3608
  msgid "Please Refresh Page"
3609
  msgstr "Prosím obnovte stránku"
3618
  msgid "%s - Most Powerful & Easy to Use Events Management System"
3619
  msgstr "%s - Nejvýkonnější a snadno použitelný systém pro správu událostí"
3620
 
3621
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:207
3622
  msgctxt "plugin rate"
3623
  msgid "Rate the plugin ★★★★★"
3624
  msgstr "Ohodnoťe doplněk ★★★★★"
3733
  msgstr "Stáhnout nastavení"
3734
 
3735
  #: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
3736
+ #: app/features/mec/support.php:66 app/libraries/main.php:808
3737
  msgid "Messages"
3738
  msgstr "Zprávy"
3739
 
3760
  msgstr "Vzhled"
3761
 
3762
  #: app/features/mec/meta_boxes/display_options.php:42
3763
+ #: app/features/mec/meta_boxes/display_options.php:269
3764
+ #: app/features/mec/meta_boxes/display_options.php:914
3765
+ #: app/features/mec/meta_boxes/display_options.php:1208
3766
+ #: app/features/mec/meta_boxes/display_options.php:1480
3767
  #: app/features/mec/settings.php:295 app/features/mec/settings.php:319
3768
  #: app/features/mec/settings.php:328 app/features/mec/settings.php:369
3769
  #: app/features/mec/settings.php:393 app/features/mec/settings.php:402
3776
  msgstr "Klasický"
3777
 
3778
  #: app/features/mec/meta_boxes/display_options.php:43
3779
+ #: app/features/mec/meta_boxes/display_options.php:271
3780
  #: app/features/mec/settings.php:320 app/features/mec/settings.php:330
3781
  #: app/features/mec/settings.php:394 app/features/mec/settings.php:404
3782
  #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:112
3784
  msgstr "Minimální"
3785
 
3786
  #: app/features/mec/meta_boxes/display_options.php:44
3787
+ #: app/features/mec/meta_boxes/display_options.php:272
3788
+ #: app/features/mec/meta_boxes/display_options.php:825
3789
+ #: app/features/mec/meta_boxes/display_options.php:916
3790
+ #: app/features/mec/meta_boxes/display_options.php:1206
3791
+ #: app/features/mec/meta_boxes/display_options.php:1482
3792
  #: app/features/mec/settings.php:297 app/features/mec/settings.php:310
3793
  #: app/features/mec/settings.php:321 app/features/mec/settings.php:331
3794
  #: app/features/mec/settings.php:371 app/features/mec/settings.php:384
3812
  msgstr "Akordeon"
3813
 
3814
  #: app/features/mec/meta_boxes/display_options.php:53
3815
+ #: app/features/mec/meta_boxes/display_options.php:282
3816
+ #: app/features/mec/meta_boxes/display_options.php:522
3817
+ #: app/features/mec/meta_boxes/display_options.php:629
3818
+ #: app/features/mec/meta_boxes/display_options.php:1010
3819
+ #: app/features/mec/meta_boxes/display_options.php:1055
3820
+ #: app/features/mec/meta_boxes/display_options.php:1352
3821
+ #: app/features/mec/meta_boxes/display_options.php:1753
3822
+ #: app/features/mec/meta_boxes/display_options.php:1883
3823
+ #: app/features/mec/meta_boxes/display_options.php:2012
3824
  msgid "Today"
3825
  msgstr "Dnes"
3826
 
3827
  #: app/features/mec/meta_boxes/display_options.php:54
3828
+ #: app/features/mec/meta_boxes/display_options.php:283
3829
+ #: app/features/mec/meta_boxes/display_options.php:523
3830
+ #: app/features/mec/meta_boxes/display_options.php:1011
3831
+ #: app/features/mec/meta_boxes/display_options.php:1056
3832
+ #: app/features/mec/meta_boxes/display_options.php:1353
3833
+ #: app/features/mec/meta_boxes/display_options.php:1754
3834
+ #: app/features/mec/meta_boxes/display_options.php:1884
3835
+ #: app/features/mec/meta_boxes/display_options.php:2013
3836
  msgid "Tomorrow"
3837
  msgstr "Zítra"
3838
 
3839
  #: app/features/mec/meta_boxes/display_options.php:55
3840
+ #: app/features/mec/meta_boxes/display_options.php:284
3841
+ #: app/features/mec/meta_boxes/display_options.php:524
3842
+ #: app/features/mec/meta_boxes/display_options.php:630
3843
+ #: app/features/mec/meta_boxes/display_options.php:925
3844
+ #: app/features/mec/meta_boxes/display_options.php:1012
3845
+ #: app/features/mec/meta_boxes/display_options.php:1057
3846
+ #: app/features/mec/meta_boxes/display_options.php:1131
3847
+ #: app/features/mec/meta_boxes/display_options.php:1217
3848
+ #: app/features/mec/meta_boxes/display_options.php:1354
3849
+ #: app/features/mec/meta_boxes/display_options.php:1755
3850
+ #: app/features/mec/meta_boxes/display_options.php:1885
3851
+ #: app/features/mec/meta_boxes/display_options.php:2014
3852
+ #: app/features/mec/meta_boxes/display_options.php:2117
3853
  msgid "Start of Current Month"
3854
  msgstr "Začátek aktuálního měsíce"
3855
 
3856
  #: app/features/mec/meta_boxes/display_options.php:56
3857
+ #: app/features/mec/meta_boxes/display_options.php:285
3858
+ #: app/features/mec/meta_boxes/display_options.php:525
3859
+ #: app/features/mec/meta_boxes/display_options.php:631
3860
+ #: app/features/mec/meta_boxes/display_options.php:926
3861
+ #: app/features/mec/meta_boxes/display_options.php:1013
3862
+ #: app/features/mec/meta_boxes/display_options.php:1058
3863
+ #: app/features/mec/meta_boxes/display_options.php:1132
3864
+ #: app/features/mec/meta_boxes/display_options.php:1218
3865
+ #: app/features/mec/meta_boxes/display_options.php:1355
3866
+ #: app/features/mec/meta_boxes/display_options.php:1756
3867
+ #: app/features/mec/meta_boxes/display_options.php:1886
3868
+ #: app/features/mec/meta_boxes/display_options.php:2015
3869
+ #: app/features/mec/meta_boxes/display_options.php:2118
3870
  msgid "Start of Next Month"
3871
  msgstr "Začátek dalšího měsíce"
3872
 
3873
  #: app/features/mec/meta_boxes/display_options.php:57
3874
+ #: app/features/mec/meta_boxes/display_options.php:286
3875
+ #: app/features/mec/meta_boxes/display_options.php:526
3876
+ #: app/features/mec/meta_boxes/display_options.php:632
3877
+ #: app/features/mec/meta_boxes/display_options.php:834
3878
+ #: app/features/mec/meta_boxes/display_options.php:927
3879
+ #: app/features/mec/meta_boxes/display_options.php:1014
3880
+ #: app/features/mec/meta_boxes/display_options.php:1059
3881
+ #: app/features/mec/meta_boxes/display_options.php:1133
3882
+ #: app/features/mec/meta_boxes/display_options.php:1219
3883
+ #: app/features/mec/meta_boxes/display_options.php:1356
3884
+ #: app/features/mec/meta_boxes/display_options.php:1757
3885
+ #: app/features/mec/meta_boxes/display_options.php:1887
3886
+ #: app/features/mec/meta_boxes/display_options.php:2016
3887
+ #: app/features/mec/meta_boxes/display_options.php:2119
3888
  msgid "On a certain date"
3889
  msgstr "K určitému datu"
3890
 
3891
  #: app/features/mec/meta_boxes/display_options.php:60
3892
+ #: app/features/mec/meta_boxes/display_options.php:289
3893
+ #: app/features/mec/meta_boxes/display_options.php:529
3894
+ #: app/features/mec/meta_boxes/display_options.php:635
3895
+ #: app/features/mec/meta_boxes/display_options.php:837
3896
+ #: app/features/mec/meta_boxes/display_options.php:930
3897
+ #: app/features/mec/meta_boxes/display_options.php:1017
3898
+ #: app/features/mec/meta_boxes/display_options.php:1063
3899
+ #: app/features/mec/meta_boxes/display_options.php:1136
3900
+ #: app/features/mec/meta_boxes/display_options.php:1222
3901
+ #: app/features/mec/meta_boxes/display_options.php:1359
3902
+ #: app/features/mec/meta_boxes/display_options.php:1760
3903
+ #: app/features/mec/meta_boxes/display_options.php:1890
3904
+ #: app/features/mec/meta_boxes/display_options.php:2019
3905
+ #: app/features/mec/meta_boxes/display_options.php:2122
3906
  #, php-format
3907
  msgid "eg. %s"
3908
  msgstr "např. %s"
3910
  #: app/features/mec/meta_boxes/display_options.php:65
3911
  #: app/features/mec/meta_boxes/display_options.php:66
3912
  #: app/features/mec/meta_boxes/display_options.php:69
 
3913
  #: app/features/mec/meta_boxes/display_options.php:294
3914
+ #: app/features/mec/meta_boxes/display_options.php:295
3915
+ #: app/features/mec/meta_boxes/display_options.php:298
3916
+ #: app/features/mec/meta_boxes/display_options.php:534
3917
+ #: app/features/mec/meta_boxes/display_options.php:535
3918
+ #: app/features/mec/meta_boxes/display_options.php:538
3919
+ #: app/features/mec/meta_boxes/display_options.php:1364
3920
+ #: app/features/mec/meta_boxes/display_options.php:1365
3921
+ #: app/features/mec/meta_boxes/display_options.php:1368
3922
+ #: app/features/mec/meta_boxes/display_options.php:2024
3923
+ #: app/features/mec/meta_boxes/display_options.php:2025
3924
+ #: app/features/mec/meta_boxes/display_options.php:2028
3925
  #, fuzzy
3926
  #| msgid "Maximum Dates"
3927
  msgid "Maximum Date"
3928
  msgstr "Maximum termínů"
3929
 
3930
  #: app/features/mec/meta_boxes/display_options.php:70
3931
+ #: app/features/mec/meta_boxes/display_options.php:299
3932
+ #: app/features/mec/meta_boxes/display_options.php:539
3933
+ #: app/features/mec/meta_boxes/display_options.php:1369
3934
+ #: app/features/mec/meta_boxes/display_options.php:2029
3935
  #, fuzzy
3936
  #| msgid "Show events based on created shortcodes."
3937
  msgid "Show events before the specified date."
3947
  #: app/features/mec/meta_boxes/display_options.php:118
3948
  #: app/features/mec/meta_boxes/display_options.php:125
3949
  #: app/features/mec/meta_boxes/display_options.php:130
3950
+ #: app/features/mec/meta_boxes/display_options.php:306
3951
+ #: app/features/mec/meta_boxes/display_options.php:310
3952
+ #: app/features/mec/meta_boxes/display_options.php:317
3953
+ #: app/features/mec/meta_boxes/display_options.php:322
3954
+ #: app/features/mec/meta_boxes/display_options.php:329
3955
+ #: app/features/mec/meta_boxes/display_options.php:334
3956
+ #: app/features/mec/meta_boxes/display_options.php:341
3957
+ #: app/features/mec/meta_boxes/display_options.php:347
3958
+ #: app/features/mec/meta_boxes/display_options.php:354
3959
+ #: app/features/mec/meta_boxes/display_options.php:358
3960
+ #: app/features/mec/meta_boxes/display_options.php:365
3961
+ #: app/features/mec/meta_boxes/display_options.php:371
3962
+ #: app/features/mec/meta_boxes/display_options.php:378
3963
+ #: app/features/mec/meta_boxes/display_options.php:382
3964
+ #: app/features/mec/meta_boxes/display_options.php:546
3965
+ #: app/features/mec/meta_boxes/display_options.php:551
3966
+ #: app/features/mec/meta_boxes/display_options.php:841
3967
+ #: app/features/mec/meta_boxes/display_options.php:846
3968
+ #: app/features/mec/meta_boxes/display_options.php:1254
3969
+ #: app/features/mec/meta_boxes/display_options.php:1376
3970
+ #: app/features/mec/meta_boxes/display_options.php:1381
3971
+ #: app/features/mec/meta_boxes/display_options.php:1487
3972
+ #: app/features/mec/meta_boxes/display_options.php:1493
3973
+ #: app/features/mec/meta_boxes/display_options.php:1500
3974
+ #: app/features/mec/meta_boxes/display_options.php:1505
3975
+ #: app/features/mec/meta_boxes/display_options.php:1512
3976
+ #: app/features/mec/meta_boxes/display_options.php:1516
3977
+ #: app/features/mec/meta_boxes/display_options.php:1582
3978
+ #: app/features/mec/meta_boxes/display_options.php:1586
3979
+ #: app/features/mec/meta_boxes/display_options.php:1593
3980
+ #: app/features/mec/meta_boxes/display_options.php:1597
3981
+ #: app/features/mec/meta_boxes/display_options.php:1604
3982
+ #: app/features/mec/meta_boxes/display_options.php:1610
3983
+ #: app/features/mec/meta_boxes/display_options.php:1678
3984
+ #: app/features/mec/meta_boxes/display_options.php:1683
3985
+ #: app/features/mec/meta_boxes/display_options.php:1764
3986
+ #: app/features/mec/meta_boxes/display_options.php:1770
3987
+ #: app/features/mec/meta_boxes/display_options.php:1777
3988
+ #: app/features/mec/meta_boxes/display_options.php:1781
3989
+ #: app/features/mec/meta_boxes/display_options.php:1788
3990
+ #: app/features/mec/meta_boxes/display_options.php:1792
3991
+ #: app/features/mec/meta_boxes/display_options.php:1894
3992
+ #: app/features/mec/meta_boxes/display_options.php:1900
3993
+ #: app/features/mec/meta_boxes/display_options.php:1907
3994
+ #: app/features/mec/meta_boxes/display_options.php:1913
3995
+ #: app/features/mec/meta_boxes/display_options.php:1920
3996
+ #: app/features/mec/meta_boxes/display_options.php:1926
3997
+ #: app/features/mec/meta_boxes/display_options.php:1933
3998
+ #: app/features/mec/meta_boxes/display_options.php:1939
3999
+ #: app/features/mec/meta_boxes/display_options.php:1946
4000
+ #: app/features/mec/meta_boxes/display_options.php:1952
4001
+ #: app/features/mec/meta_boxes/display_options.php:2036
4002
+ #: app/features/mec/meta_boxes/display_options.php:2040
4003
+ #: app/features/mec/meta_boxes/display_options.php:2126
4004
+ #: app/features/mec/meta_boxes/display_options.php:2131
4005
  msgid "Date Formats"
4006
  msgstr "Formát data"
4007
 
4008
  #: app/features/mec/meta_boxes/display_options.php:82
4009
+ #: app/features/mec/meta_boxes/display_options.php:359
4010
  msgid "Default value is \"M d Y\""
4011
  msgstr "Výchozí hodnota je \"M d Y\""
4012
 
4015
  msgstr "Výchozí hodnoty jsou d, M a l"
4016
 
4017
  #: app/features/mec/meta_boxes/display_options.php:108
4018
+ #: app/features/mec/meta_boxes/display_options.php:348
4019
+ #: app/features/mec/meta_boxes/display_options.php:372
4020
+ #: app/features/mec/meta_boxes/display_options.php:1901
4021
+ #: app/features/mec/meta_boxes/display_options.php:1914
4022
+ #: app/features/mec/meta_boxes/display_options.php:1927
4023
+ #: app/features/mec/meta_boxes/display_options.php:1940
4024
+ #: app/features/mec/meta_boxes/display_options.php:1953
4025
  msgid "Default values are d, F and l"
4026
  msgstr "Výchozí hodnoty jsou d, F a I"
4027
 
4035
  msgstr "TVýchozí hodnoty jsou d a F"
4036
 
4037
  #: app/features/mec/meta_boxes/display_options.php:138
4038
+ #: app/features/mec/meta_boxes/display_options.php:401
4039
+ #: app/features/mec/meta_boxes/display_options.php:559
4040
+ #: app/features/mec/meta_boxes/display_options.php:854
4041
+ #: app/features/mec/meta_boxes/display_options.php:935
4042
+ #: app/features/mec/meta_boxes/display_options.php:1068
4043
+ #: app/features/mec/meta_boxes/display_options.php:1141
4044
+ #: app/features/mec/meta_boxes/display_options.php:1227
4045
+ #: app/features/mec/meta_boxes/display_options.php:1809
4046
+ #: app/features/mec/meta_boxes/display_options.php:1960
4047
+ #: app/features/mec/meta_boxes/display_options.php:2048
4048
  msgid "eg. 6"
4049
  msgstr "např. 6"
4050
 
4051
  #: app/features/mec/meta_boxes/display_options.php:143
4052
+ #: app/features/mec/meta_boxes/display_options.php:406
4053
+ #: app/features/mec/meta_boxes/display_options.php:564
4054
+ #: app/features/mec/meta_boxes/display_options.php:859
4055
+ #: app/features/mec/meta_boxes/display_options.php:940
4056
+ #: app/features/mec/meta_boxes/display_options.php:1073
4057
+ #: app/features/mec/meta_boxes/display_options.php:1146
4058
+ #: app/features/mec/meta_boxes/display_options.php:1288
4059
+ #: app/features/mec/meta_boxes/display_options.php:1404
4060
+ #: app/features/mec/meta_boxes/display_options.php:1533
4061
+ #: app/features/mec/meta_boxes/display_options.php:1632
4062
+ #: app/features/mec/meta_boxes/display_options.php:1701
4063
+ #: app/features/mec/meta_boxes/display_options.php:1830
4064
+ #: app/features/mec/meta_boxes/display_options.php:1969
4065
+ #: app/features/mec/meta_boxes/display_options.php:2053
4066
  #, fuzzy
4067
  #| msgid "Local Time"
4068
  msgid "Include Local Time"
4069
  msgstr "Místní čas"
4070
 
4071
  #: app/features/mec/meta_boxes/display_options.php:155
4072
+ #: app/features/mec/meta_boxes/display_options.php:418
4073
  #, fuzzy
4074
  #| msgid "Hide Event Time"
4075
  msgid "Include Events Times"
4076
  msgstr "Skrýt čas události"
4077
 
4078
  #: app/features/mec/meta_boxes/display_options.php:166
4079
+ #: app/features/mec/meta_boxes/display_options.php:429
4080
+ #: app/features/mec/meta_boxes/display_options.php:599
4081
+ #: app/features/mec/meta_boxes/display_options.php:1461
4082
+ #: app/features/mec/meta_boxes/display_options.php:2088
4083
+ #: app/features/mec/meta_boxes/display_options.php:2187
4084
  msgid "Load More Button"
4085
  msgstr "Načíst tlačítko Další"
4086
 
4087
  #: app/features/mec/meta_boxes/display_options.php:176
4088
+ #: app/features/mec/meta_boxes/display_options.php:609
4089
+ #: app/features/mec/meta_boxes/display_options.php:2098
4090
  msgid "Show Month Divider"
4091
  msgstr "Zobrazit oddělovník měsíce"
4092
 
4093
  #: app/features/mec/meta_boxes/display_options.php:187
4094
+ #: app/features/mec/meta_boxes/display_options.php:440
4095
+ #: app/features/mec/meta_boxes/display_options.php:576
4096
+ #: app/features/mec/meta_boxes/display_options.php:788
4097
+ #: app/features/mec/meta_boxes/display_options.php:881
4098
+ #: app/features/mec/meta_boxes/display_options.php:962
4099
+ #: app/features/mec/meta_boxes/display_options.php:1095
4100
+ #: app/features/mec/meta_boxes/display_options.php:1158
4101
+ #: app/features/mec/meta_boxes/display_options.php:1300
4102
+ #: app/features/mec/meta_boxes/display_options.php:1416
4103
+ #: app/features/mec/meta_boxes/display_options.php:1545
4104
+ #: app/features/mec/meta_boxes/display_options.php:1644
4105
+ #: app/features/mec/meta_boxes/display_options.php:1713
4106
+ #: app/features/mec/meta_boxes/display_options.php:1842
4107
+ #: app/features/mec/meta_boxes/display_options.php:1981
4108
+ #: app/features/mec/meta_boxes/display_options.php:2065
4109
+ #: app/features/mec/meta_boxes/display_options.php:2148
4110
  #, fuzzy
4111
  #| msgid "Desktop Normal Screens"
4112
  msgid "Display Normal Labels"
4113
  msgstr "Desktop Normální obrazovky"
4114
 
4115
  #: app/features/mec/meta_boxes/display_options.php:199
4116
+ #: app/features/mec/meta_boxes/display_options.php:452
4117
+ #: app/features/mec/meta_boxes/display_options.php:588
4118
+ #: app/features/mec/meta_boxes/display_options.php:800
4119
+ #: app/features/mec/meta_boxes/display_options.php:893
4120
+ #: app/features/mec/meta_boxes/display_options.php:974
4121
+ #: app/features/mec/meta_boxes/display_options.php:1107
4122
+ #: app/features/mec/meta_boxes/display_options.php:1170
4123
+ #: app/features/mec/meta_boxes/display_options.php:1312
4124
+ #: app/features/mec/meta_boxes/display_options.php:1428
4125
+ #: app/features/mec/meta_boxes/display_options.php:1557
4126
+ #: app/features/mec/meta_boxes/display_options.php:1656
4127
+ #: app/features/mec/meta_boxes/display_options.php:1725
4128
+ #: app/features/mec/meta_boxes/display_options.php:1854
4129
+ #: app/features/mec/meta_boxes/display_options.php:1993
4130
+ #: app/features/mec/meta_boxes/display_options.php:2077
4131
+ #: app/features/mec/meta_boxes/display_options.php:2160
4132
  msgid "Display Reason for Cancellation"
4133
  msgstr ""
4134
 
4135
  #: app/features/mec/meta_boxes/display_options.php:210
4136
+ #: app/features/mec/meta_boxes/display_options.php:463
4137
  msgid "Show Map on top"
4138
  msgstr "Zobrazit mapu nahoře"
4139
 
4140
  #: app/features/mec/meta_boxes/display_options.php:225
4141
+ #: app/features/mec/meta_boxes/display_options.php:478
4142
+ #: app/features/mec/meta_boxes/display_options.php:1026
4143
  msgid "Geolocation"
4144
  msgstr "Geolokace"
4145
 
4146
  #: app/features/mec/meta_boxes/display_options.php:236
4147
+ #: app/features/mec/meta_boxes/display_options.php:489
4148
+ #: app/features/mec/meta_boxes/display_options.php:1036
4149
  #, fuzzy
4150
  #| msgid "Disable Google Fonts"
4151
  msgid "Disable Geolocation Force Focus"
4152
  msgstr "Zakázat Google písma"
4153
 
4154
+ #: app/features/mec/meta_boxes/display_options.php:252
4155
  msgid "Toggle for Month Divider"
4156
  msgstr "Přepínač pro oddělovník měsíce"
4157
 
4158
+ #: app/features/mec/meta_boxes/display_options.php:270
4159
+ #: app/features/mec/meta_boxes/display_options.php:515
4160
+ #: app/features/mec/meta_boxes/display_options.php:653
4161
+ #: app/features/mec/meta_boxes/display_options.php:915
4162
+ #: app/features/mec/meta_boxes/display_options.php:1207
4163
+ #: app/features/mec/meta_boxes/display_options.php:1481
4164
  #: app/features/mec/settings.php:296 app/features/mec/settings.php:311
4165
  #: app/features/mec/settings.php:329 app/features/mec/settings.php:370
4166
  #: app/features/mec/settings.php:385 app/features/mec/settings.php:403
4170
  msgid "Clean"
4171
  msgstr "Čistý"
4172
 
4173
+ #: app/features/mec/meta_boxes/display_options.php:273
4174
+ #: app/features/mec/meta_boxes/display_options.php:655
4175
+ #: app/features/mec/meta_boxes/display_options.php:918
4176
  #: app/features/mec/settings.php:299 app/features/mec/settings.php:332
4177
  #: app/features/mec/settings.php:373 app/features/mec/settings.php:406
4178
  #: app/features/popup/shortcode.php:122 app/features/popup/shortcode.php:171
4180
  msgid "Simple"
4181
  msgstr "Jednoduchý"
4182
 
4183
+ #: app/features/mec/meta_boxes/display_options.php:274
4184
  #: app/features/popup/shortcode.php:127
4185
  msgid "Colorful"
4186
  msgstr "Plněbarevný"
4187
 
4188
+ #: app/features/mec/meta_boxes/display_options.php:275
4189
+ #: app/features/mec/meta_boxes/display_options.php:654
4190
+ #: app/features/mec/meta_boxes/display_options.php:917
4191
  #: app/features/mec/settings.php:298 app/features/mec/settings.php:334
4192
  #: app/features/mec/settings.php:372 app/features/mec/settings.php:408
4193
  #: app/features/popup/shortcode.php:132 app/features/popup/shortcode.php:166
4195
  msgid "Novel"
4196
  msgstr "Novela"
4197
 
4198
+ #: app/features/mec/meta_boxes/display_options.php:311
4199
+ #: app/features/mec/meta_boxes/display_options.php:2041
4200
  msgid "Default value is \"d F Y"
4201
  msgstr "Výchozí hodnota je \"d F Y"
4202
 
4203
+ #: app/features/mec/meta_boxes/display_options.php:323
4204
  msgid "Default values are d and F"
4205
  msgstr "Výchozí hodnoty jsou d a F"
4206
 
4207
+ #: app/features/mec/meta_boxes/display_options.php:335
4208
  msgid "Default values are d and M"
4209
  msgstr "Výchozí hodnoty jsou d a M"
4210
 
4211
+ #: app/features/mec/meta_boxes/display_options.php:383
4212
  msgid "Default value is \"d F Y\""
4213
  msgstr "Výchozí hodnota je \"d F Y\""
4214
 
4215
+ #: app/features/mec/meta_boxes/display_options.php:389
4216
+ #: app/features/mec/meta_boxes/display_options.php:1799
4217
+ #: app/features/mec/meta_boxes/display_options.php:2138
4218
  msgid "Count in row"
4219
  msgstr "Počet v řadě"
4220
 
4221
+ #: app/features/mec/meta_boxes/display_options.php:508
4222
+ #: app/features/mec/meta_boxes/display_options.php:818
4223
+ #: app/features/mec/meta_boxes/display_options.php:1003
4224
+ #: app/features/mec/meta_boxes/display_options.php:1199
4225
+ #: app/features/mec/meta_boxes/display_options.php:1344
4226
+ #: app/features/mec/meta_boxes/display_options.php:1672
4227
  #, php-format
4228
  msgid "%s is required to use this skin."
4229
  msgstr "%s je nutné použít tento vzhled."
4230
 
4231
+ #: app/features/mec/meta_boxes/display_options.php:552
4232
+ #: app/features/mec/meta_boxes/display_options.php:847
4233
  msgid "Default values are l and F j"
4234
  msgstr "Výchozí hodnoty jsou I a F j"
4235
 
4236
+ #: app/features/mec/meta_boxes/display_options.php:639
4237
  msgid "Default View"
4238
  msgstr "Výchozí zobrazení"
4239
 
4240
+ #: app/features/mec/meta_boxes/display_options.php:641
4241
+ #: app/features/mec/meta_boxes/display_options.php:665
4242
+ #: app/libraries/main.php:330 app/libraries/main.php:1937
4243
+ #: app/libraries/main.php:1962
4244
  msgid "List View"
4245
  msgstr "Zobrazení seznamu"
4246
 
4247
+ #: app/features/mec/meta_boxes/display_options.php:642
4248
+ #: app/features/mec/meta_boxes/display_options.php:686
4249
+ #: app/libraries/main.php:331 app/libraries/main.php:1938
4250
+ #: app/libraries/main.php:1963
4251
  msgid "Grid View"
4252
  msgstr "Zobrazení mřížky"
4253
 
4254
+ #: app/features/mec/meta_boxes/display_options.php:643
4255
+ #: app/features/mec/meta_boxes/display_options.php:696
4256
  #: app/libraries/main.php:347
4257
  #, fuzzy
4258
  #| msgid "Timetable View"
4259
  msgid "Tile View"
4260
  msgstr "Zobrazení rozvrhu"
4261
 
4262
+ #: app/features/mec/meta_boxes/display_options.php:644
4263
+ #: app/features/mec/meta_boxes/display_options.php:707
4264
+ #: app/libraries/main.php:334 app/libraries/main.php:1931
4265
+ #: app/libraries/main.php:1956
4266
  msgid "Yearly View"
4267
  msgstr "Roční zobrazení"
4268
 
4269
+ #: app/features/mec/meta_boxes/display_options.php:645
4270
+ #: app/features/mec/meta_boxes/display_options.php:746
4271
  msgid "Monthly/Calendar View"
4272
  msgstr "Měsíční / kalendářní zobrazení"
4273
 
4274
+ #: app/features/mec/meta_boxes/display_options.php:646
4275
+ #: app/features/mec/meta_boxes/display_options.php:756
4276
+ #: app/libraries/main.php:337 app/libraries/main.php:1933
4277
+ #: app/libraries/main.php:1958
4278
  msgid "Weekly View"
4279
  msgstr "Týdenní zobrazení"
4280
 
4281
+ #: app/features/mec/meta_boxes/display_options.php:647
4282
+ #: app/features/mec/meta_boxes/display_options.php:766
4283
+ #: app/libraries/main.php:336 app/libraries/main.php:1934
4284
+ #: app/libraries/main.php:1959
4285
  msgid "Daily View"
4286
  msgstr "Denní zobrazení"
4287
 
4288
+ #: app/features/mec/meta_boxes/display_options.php:651
4289
  #: app/features/popup/shortcode.php:157
4290
  msgid "Monthly Style"
4291
  msgstr "Měsíční styl"
4292
 
4293
+ #: app/features/mec/meta_boxes/display_options.php:659
4294
+ #: app/features/mec/meta_boxes/display_options.php:853
4295
+ #: app/features/mec/meta_boxes/display_options.php:934
4296
+ #: app/features/mec/meta_boxes/display_options.php:1067
4297
+ #: app/features/mec/meta_boxes/display_options.php:1140
4298
+ #: app/features/mec/meta_boxes/display_options.php:1226
4299
  msgid "Events per day"
4300
  msgstr "Události za den"
4301
 
4302
+ #: app/features/mec/meta_boxes/display_options.php:680
4303
  #, fuzzy
4304
  #| msgid "Lightbox Date Format"
4305
  msgid "List View Date Formats"
4306
  msgstr "Formát data Lightbox"
4307
 
4308
+ #: app/features/mec/meta_boxes/display_options.php:734
4309
  #, fuzzy
4310
  #| msgid "Date Formats"
4311
  msgid "Yearly View Date Formats"
4312
  msgstr "Formát data"
4313
 
4314
+ #: app/features/mec/meta_boxes/display_options.php:741
4315
  #, php-format
4316
  msgid "%s is required to use <b>Yearly View</b> skin."
4317
  msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
4318
 
4319
+ #: app/features/mec/meta_boxes/display_options.php:774
4320
  msgid "The price shows only in List View."
4321
  msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
4322
 
4323
+ #: app/features/mec/meta_boxes/display_options.php:777
4324
  msgid "Display Event Price"
4325
  msgstr "Zobrazit cenu události"
4326
 
4327
+ #: app/features/mec/meta_boxes/display_options.php:832
4328
  msgid "Start of Current Year"
4329
  msgstr "Začátek aktuálního roku"
4330
 
4331
+ #: app/features/mec/meta_boxes/display_options.php:833
4332
  msgid "Start of Next Year"
4333
  msgstr "Začátek příštího roku"
4334
 
4335
+ #: app/features/mec/meta_boxes/display_options.php:870
4336
+ #: app/features/mec/meta_boxes/display_options.php:951
4337
+ #: app/features/mec/meta_boxes/display_options.php:1084
4338
+ #: app/features/mec/meta_boxes/display_options.php:1181
4339
+ #: app/features/mec/meta_boxes/display_options.php:1324
4340
+ #: app/features/mec/meta_boxes/display_options.php:2171
4341
  msgid "Next/Previous Buttons"
4342
  msgstr "Tlačítka Další / Předchozí"
4343
 
4344
+ #: app/features/mec/meta_boxes/display_options.php:902
4345
  msgid "For showing next/previous year navigation."
4346
  msgstr "Pro zobrazení navigace další / předchozí."
4347
 
4348
+ #: app/features/mec/meta_boxes/display_options.php:985
4349
  msgid "Uppercase Text"
4350
  msgstr "Text velkými písmeny"
4351
 
4352
+ #: app/features/mec/meta_boxes/display_options.php:993
4353
+ #: app/features/mec/meta_boxes/display_options.php:1116
4354
+ #: app/features/mec/meta_boxes/display_options.php:1189
4355
+ #: app/features/mec/meta_boxes/display_options.php:1332
4356
+ #: app/features/mec/meta_boxes/display_options.php:2179
4357
  msgid "For showing next/previous month navigation."
4358
  msgstr "Pro zobrazení navigace další / předchozí měsíc."
4359
 
4360
+ #: app/features/mec/meta_boxes/display_options.php:1021
4361
  msgid "Maximum events"
4362
  msgstr "Maximum událostí"
4363
 
4364
+ #: app/features/mec/meta_boxes/display_options.php:1022
4365
  msgid "eg. 200"
4366
  msgstr "např. 200"
4367
 
4368
+ #: app/features/mec/meta_boxes/display_options.php:1044
4369
  msgid "The geolocation feature works only in secure (https) websites."
4370
  msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
4371
 
4372
+ #: app/features/mec/meta_boxes/display_options.php:1129
4373
+ #: app/features/mec/meta_boxes/display_options.php:1215
4374
  msgid "Current Week"
4375
  msgstr "Aktuální týden"
4376
 
4377
+ #: app/features/mec/meta_boxes/display_options.php:1130
4378
+ #: app/features/mec/meta_boxes/display_options.php:1216
4379
  msgid "Next Week"
4380
  msgstr "Další týden"
4381
 
4382
+ #: app/features/mec/meta_boxes/display_options.php:1231
4383
  msgid "Number of Days"
4384
  msgstr "Počet dnů"
4385
 
4386
+ #: app/features/mec/meta_boxes/display_options.php:1239
4387
  msgid "Week Start"
4388
  msgstr "Začátek týdne"
4389
 
4390
+ #: app/features/mec/meta_boxes/display_options.php:1241
4391
  msgid "Inherite from WordPress options"
4392
  msgstr "Zdědit z možností WordPressu"
4393
 
4394
+ #: app/features/mec/meta_boxes/display_options.php:1256
4395
  msgid "1:00"
4396
  msgstr ""
4397
 
4398
+ #: app/features/mec/meta_boxes/display_options.php:1257
4399
  msgid "2:00"
4400
  msgstr ""
4401
 
4402
+ #: app/features/mec/meta_boxes/display_options.php:1258
4403
  msgid "3:00"
4404
  msgstr ""
4405
 
4406
+ #: app/features/mec/meta_boxes/display_options.php:1259
4407
  msgid "4:00"
4408
  msgstr ""
4409
 
4410
+ #: app/features/mec/meta_boxes/display_options.php:1260
4411
  msgid "5:00"
4412
  msgstr ""
4413
 
4414
+ #: app/features/mec/meta_boxes/display_options.php:1261
4415
  msgid "6:00"
4416
  msgstr ""
4417
 
4418
+ #: app/features/mec/meta_boxes/display_options.php:1262
4419
  msgid "7:00"
4420
  msgstr ""
4421
 
4422
+ #: app/features/mec/meta_boxes/display_options.php:1263
4423
  msgid "8:00"
4424
  msgstr ""
4425
 
4426
+ #: app/features/mec/meta_boxes/display_options.php:1264
4427
  msgid "9:00"
4428
  msgstr ""
4429
 
4430
+ #: app/features/mec/meta_boxes/display_options.php:1265
4431
  msgid "10:00"
4432
  msgstr ""
4433
 
4434
+ #: app/features/mec/meta_boxes/display_options.php:1266
4435
  msgid "11:00"
4436
  msgstr ""
4437
 
4438
+ #: app/features/mec/meta_boxes/display_options.php:1267
4439
  msgid "12:00"
4440
  msgstr ""
4441
 
4442
+ #: app/features/mec/meta_boxes/display_options.php:1270
4443
  msgid "13:00"
4444
  msgstr ""
4445
 
4446
+ #: app/features/mec/meta_boxes/display_options.php:1271
4447
  msgid "14:00"
4448
  msgstr ""
4449
 
4450
+ #: app/features/mec/meta_boxes/display_options.php:1272
4451
  msgid "15:00"
4452
  msgstr ""
4453
 
4454
+ #: app/features/mec/meta_boxes/display_options.php:1273
4455
  msgid "16:00"
4456
  msgstr ""
4457
 
4458
+ #: app/features/mec/meta_boxes/display_options.php:1274
4459
  msgid "17:00"
4460
  msgstr ""
4461
 
4462
+ #: app/features/mec/meta_boxes/display_options.php:1275
4463
  msgid "18:00"
4464
  msgstr ""
4465
 
4466
+ #: app/features/mec/meta_boxes/display_options.php:1276
4467
  msgid "19:00"
4468
  msgstr ""
4469
 
4470
+ #: app/features/mec/meta_boxes/display_options.php:1277
4471
  msgid "20:00"
4472
  msgstr ""
4473
 
4474
+ #: app/features/mec/meta_boxes/display_options.php:1278
4475
  msgid "21:00"
4476
  msgstr ""
4477
 
4478
+ #: app/features/mec/meta_boxes/display_options.php:1279
4479
  msgid "22:00"
4480
  msgstr ""
4481
 
4482
+ #: app/features/mec/meta_boxes/display_options.php:1280
4483
  msgid "23:00"
4484
  msgstr ""
4485
 
4486
+ #: app/features/mec/meta_boxes/display_options.php:1281
4487
  msgid "24:00"
4488
  msgstr ""
4489
 
4490
+ #: app/features/mec/meta_boxes/display_options.php:1382
4491
+ #: app/features/mec/meta_boxes/display_options.php:1684
4492
  msgid "Default values are j and F"
4493
  msgstr "Výchozí hodnoty jsou j a F"
4494
 
4495
+ #: app/features/mec/meta_boxes/display_options.php:1389
4496
  msgid "eg. 24"
4497
  msgstr "např. 24"
4498
 
4499
+ #: app/features/mec/meta_boxes/display_options.php:1392
4500
  msgid "Filter By"
4501
  msgstr "Filtrovat podle"
4502
 
4503
+ #: app/features/mec/meta_boxes/display_options.php:1394
4504
  msgid "None"
4505
  msgstr "Žádný"
4506
 
4507
+ #: app/features/mec/meta_boxes/display_options.php:1439
4508
  msgid "Fit to row"
4509
  msgstr "Přizpůsobit řádku"
4510
 
4511
+ #: app/features/mec/meta_boxes/display_options.php:1440
4512
  msgid ""
4513
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
4514
  "would expect from a layout that uses CSS floats."
4516
  "Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
4517
  "očekávali od rozložení používajícího plovoucí CSS."
4518
 
4519
+ #: app/features/mec/meta_boxes/display_options.php:1450
4520
  msgid "Convert Masonry to Grid"
4521
  msgstr "Převést zdivo na mřížku"
4522
 
4523
+ #: app/features/mec/meta_boxes/display_options.php:1451
4524
  msgid "For using this option, your events should come with image"
4525
  msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
4526
 
4527
+ #: app/features/mec/meta_boxes/display_options.php:1494
4528
  msgid "Default values are d, M and Y"
4529
  msgstr "Výchozí hodnoty jsou d, M a Y"
4530
 
4531
+ #: app/features/mec/meta_boxes/display_options.php:1506
4532
  msgid "Default values are \"F d\" and l"
4533
  msgstr "Výchozí hodnota je \"F d\" a I"
4534
 
4535
+ #: app/features/mec/meta_boxes/display_options.php:1517
4536
  msgid "Default value is \"l, F d Y\""
4537
  msgstr "Výchozí hodnota je \"I, F d Y\""
4538
 
4539
+ #: app/features/mec/meta_boxes/display_options.php:1575
4540
  #: app/features/popup/shortcode.php:335
4541
  msgid "Style 1"
4542
  msgstr "Styl 1"
4543
 
4544
+ #: app/features/mec/meta_boxes/display_options.php:1576
4545
  #: app/features/popup/shortcode.php:340
4546
  msgid "Style 2"
4547
  msgstr "Styl 2"
4548
 
4549
+ #: app/features/mec/meta_boxes/display_options.php:1577
4550
  #: app/features/popup/shortcode.php:345
4551
  msgid "Style 3"
4552
  msgstr "Styl 3"
4553
 
4554
+ #: app/features/mec/meta_boxes/display_options.php:1587
4555
+ #: app/features/mec/meta_boxes/display_options.php:1598
4556
  msgid "Default value is \"j F Y\""
4557
  msgstr "Výchozí hodnota je \"j F Y\""
4558
 
4559
+ #: app/features/mec/meta_boxes/display_options.php:1611
4560
  msgid "Default values are j, F and Y"
4561
  msgstr "Výchozí hodnoty jsou j, F a Y"
4562
 
4563
+ #: app/features/mec/meta_boxes/display_options.php:1619
4564
+ #: app/features/mec/meta_boxes/display_options.php:1692
4565
  msgid " -- Next Upcoming Event -- "
4566
  msgstr " -- Další nadcházející událost -- "
4567
 
4568
+ #: app/features/mec/meta_boxes/display_options.php:1626
4569
  msgid "Background Color"
4570
  msgstr "Barva pozadí"
4571
 
4572
+ #: app/features/mec/meta_boxes/display_options.php:1743
4573
+ #: app/features/mec/meta_boxes/display_options.php:1872
4574
  #: app/features/popup/shortcode.php:378 app/features/popup/shortcode.php:407
4575
  msgid "Type 1"
4576
  msgstr "Typ 1"
4577
 
4578
+ #: app/features/mec/meta_boxes/display_options.php:1744
4579
+ #: app/features/mec/meta_boxes/display_options.php:1873
4580
  #: app/features/popup/shortcode.php:383 app/features/popup/shortcode.php:412
4581
  msgid "Type 2"
4582
  msgstr "Typ 2"
4583
 
4584
+ #: app/features/mec/meta_boxes/display_options.php:1745
4585
+ #: app/features/mec/meta_boxes/display_options.php:1874
4586
  #: app/features/popup/shortcode.php:388 app/features/popup/shortcode.php:417
4587
  msgid "Type 3"
4588
  msgstr "Typ 3"
4589
 
4590
+ #: app/features/mec/meta_boxes/display_options.php:1746
4591
+ #: app/features/mec/meta_boxes/display_options.php:1875
4592
  #: app/features/popup/shortcode.php:393 app/features/popup/shortcode.php:422
4593
  msgid "Type 4"
4594
  msgstr "Typ 4"
4595
 
4596
+ #: app/features/mec/meta_boxes/display_options.php:1771
4597
  msgid "Default values are d, F and Y"
4598
  msgstr "Výchozí hodnoty jsou d, F a Y"
4599
 
4600
+ #: app/features/mec/meta_boxes/display_options.php:1782
4601
+ #: app/features/mec/meta_boxes/display_options.php:1793
4602
  msgid "Default value is \"M d, Y\""
4603
  msgstr "Výchozí hodnota je \"M d, Y\""
4604
 
4605
+ #: app/features/mec/meta_boxes/display_options.php:1812
4606
+ #: app/features/mec/meta_boxes/display_options.php:1963
4607
  msgid "Auto Play Time"
4608
  msgstr "Čas automatického přehrávání"
4609
 
4610
+ #: app/features/mec/meta_boxes/display_options.php:1813
4611
+ #: app/features/mec/meta_boxes/display_options.php:1964
4612
  msgid "eg. 3000 default is 3 second"
4613
  msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
4614
 
4615
+ #: app/features/mec/meta_boxes/display_options.php:1820
4616
  msgid "Archive Link"
4617
  msgstr "Odkaz na archiv"
4618
 
4619
+ #: app/features/mec/meta_boxes/display_options.php:1824
4620
  msgid "Head Text"
4621
  msgstr "Text hlavičky"
4622
 
4623
+ #: app/features/mec/meta_boxes/display_options.php:1876
4624
  #: app/features/popup/shortcode.php:427
4625
  msgid "Type 5"
4626
  msgstr "Typ 5"
4627
 
4628
+ #: app/features/mec/meta_boxes/display_options.php:2132
4629
  #, fuzzy
4630
  #| msgid "Default values are j and F"
4631
  msgid "Default values are j and M"
4632
  msgstr "Výchozí hodnoty jsou j a F"
4633
 
4634
+ #: app/features/mec/meta_boxes/display_options.php:2183
4635
  #, fuzzy
4636
  #| msgid "eg. 6"
4637
  msgid "eg. 60"
4778
  #: app/features/mec/meta_boxes/search_form.php:782
4779
  #: app/features/mec/settings.php:904 app/features/mec/single.php:336
4780
  #: app/features/search.php:86 app/features/speakers.php:61
4781
+ #: app/features/speakers.php:269 app/libraries/main.php:5896
4782
+ #: app/libraries/main.php:5944 app/libraries/skins.php:1017
4783
  #: app/modules/speakers/details.php:18
4784
  msgid "Speaker"
4785
  msgstr "Řečník"
4796
  #: app/features/mec/meta_boxes/search_form.php:683
4797
  #: app/features/mec/meta_boxes/search_form.php:789
4798
  #: app/features/mec/settings.php:911 app/features/mec/single.php:345
4799
+ #: app/features/search.php:92 app/libraries/skins.php:1043
4800
  msgid "Tag"
4801
  msgstr "Štítek"
4802
 
5099
  msgid "Add booking activity to user profile"
5100
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5101
 
5102
+ #: app/features/mec/modules.php:365 app/libraries/main.php:596
5103
+ #, fuzzy
5104
+ #| msgid "Notifications"
5105
+ msgid "Notifications Per Event"
5106
+ msgstr "Upozornění"
5107
+
5108
+ #: app/features/mec/modules.php:369
5109
+ #, fuzzy
5110
+ #| msgid "Notifications"
5111
+ msgid "Edit Notifications Per Event"
5112
+ msgstr "Upozornění"
5113
+
5114
  #: app/features/mec/notifications.php:37
5115
  msgid "Enable booking notification"
5116
  msgstr "Povolit upozornění na rezervaci"
5121
  msgid "Sent to attendee after booking to notify them."
5122
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
5123
 
5124
+ #: app/features/mec/notifications.php:43 app/features/mec/notifications.php:149
5125
+ #: app/features/mec/notifications.php:259
5126
+ #: app/features/mec/notifications.php:374
5127
+ #: app/features/mec/notifications.php:490
5128
+ #: app/features/mec/notifications.php:601
5129
+ #: app/features/mec/notifications.php:727
5130
+ #: app/features/mec/notifications.php:811 app/features/mec/report.php:54
5131
+ #: app/features/notifications.php:72
5132
  msgid "Email Subject"
5133
  msgstr "Předmět emailové zprávy"
5134
 
5135
  #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:56
5136
+ #: app/features/mec/notifications.php:155
5137
+ #: app/features/mec/notifications.php:162
5138
+ #: app/features/mec/notifications.php:265
5139
+ #: app/features/mec/notifications.php:272
5140
+ #: app/features/mec/notifications.php:380
5141
+ #: app/features/mec/notifications.php:387
 
5142
  #: app/features/mec/notifications.php:496
5143
+ #: app/features/mec/notifications.php:503
5144
+ #: app/features/mec/notifications.php:607
5145
+ #: app/features/mec/notifications.php:614
5146
+ #: app/features/mec/notifications.php:733
5147
+ #: app/features/mec/notifications.php:740
5148
+ #: app/features/mec/notifications.php:817
5149
+ #: app/features/mec/notifications.php:824
5150
  msgid "Receiver Users"
5151
  msgstr ""
5152
 
5153
+ #: app/features/mec/notifications.php:57 app/features/mec/notifications.php:163
5154
+ #: app/features/mec/notifications.php:273
5155
+ #: app/features/mec/notifications.php:388
5156
+ #: app/features/mec/notifications.php:504
5157
+ #: app/features/mec/notifications.php:615
5158
+ #: app/features/mec/notifications.php:741
5159
+ #: app/features/mec/notifications.php:825
5160
  msgid "Select users to send a copy of email to them!"
5161
  msgstr ""
5162
 
5163
  #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:73
5164
+ #: app/features/mec/notifications.php:172
5165
+ #: app/features/mec/notifications.php:179
5166
+ #: app/features/mec/notifications.php:282
5167
+ #: app/features/mec/notifications.php:289
5168
+ #: app/features/mec/notifications.php:397
5169
+ #: app/features/mec/notifications.php:404
 
5170
  #: app/features/mec/notifications.php:513
5171
+ #: app/features/mec/notifications.php:520
5172
+ #: app/features/mec/notifications.php:624
5173
+ #: app/features/mec/notifications.php:631
5174
+ #: app/features/mec/notifications.php:750
5175
+ #: app/features/mec/notifications.php:757
5176
+ #: app/features/mec/notifications.php:834
5177
+ #: app/features/mec/notifications.php:841
5178
  msgid "Receiver Roles"
5179
  msgstr ""
5180
 
5181
+ #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:180
5182
+ #: app/features/mec/notifications.php:290
5183
+ #: app/features/mec/notifications.php:405
5184
+ #: app/features/mec/notifications.php:521
5185
+ #: app/features/mec/notifications.php:632
5186
+ #: app/features/mec/notifications.php:758
5187
+ #: app/features/mec/notifications.php:842
5188
  msgid "Select users a specific role."
5189
  msgstr ""
5190
 
5191
  #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:86
5192
+ #: app/features/mec/notifications.php:188
5193
+ #: app/features/mec/notifications.php:192
 
5194
  #: app/features/mec/notifications.php:298
5195
+ #: app/features/mec/notifications.php:302
5196
+ #: app/features/mec/notifications.php:413
5197
+ #: app/features/mec/notifications.php:417
5198
+ #: app/features/mec/notifications.php:529
5199
+ #: app/features/mec/notifications.php:533
5200
+ #: app/features/mec/notifications.php:640
5201
+ #: app/features/mec/notifications.php:644
5202
+ #: app/features/mec/notifications.php:766
5203
+ #: app/features/mec/notifications.php:770
5204
+ #: app/features/mec/notifications.php:850
5205
+ #: app/features/mec/notifications.php:854
5206
  msgid "Custom Recipients"
5207
  msgstr "Vlastní příjemci"
5208
 
5209
+ #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:193
5210
+ #: app/features/mec/notifications.php:303
5211
+ #: app/features/mec/notifications.php:418
5212
+ #: app/features/mec/notifications.php:534
5213
+ #: app/features/mec/notifications.php:645
5214
+ #: app/features/mec/notifications.php:771
5215
+ #: app/features/mec/notifications.php:855
5216
  msgid "Insert comma separated emails for multiple recipients."
5217
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
5218
 
5219
+ #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:429
5220
+ #: app/features/mec/notifications.php:541
5221
  msgid "Send the email to event organizer"
5222
  msgstr "Pošlete e-mail organizátorovi události"
5223
 
5224
+ #: app/features/mec/notifications.php:97 app/features/mec/notifications.php:199
5225
+ #: app/features/mec/notifications.php:313
5226
+ #: app/features/mec/notifications.php:436
5227
+ #: app/features/mec/notifications.php:544
5228
+ #: app/features/mec/notifications.php:662
5229
+ #: app/features/mec/notifications.php:777
5230
+ #: app/features/mec/notifications.php:861 app/features/notifications.php:80
5231
  msgid "Email Content"
5232
  msgstr "Obsah zprávy"
5233
 
5234
  #: app/features/mec/notifications.php:100
5235
+ #: app/features/mec/notifications.php:202
5236
+ #: app/features/mec/notifications.php:316
5237
+ #: app/features/mec/notifications.php:439
5238
+ #: app/features/mec/notifications.php:547
5239
+ #: app/features/mec/notifications.php:665
5240
+ #: app/features/mec/notifications.php:780
5241
+ #: app/features/mec/notifications.php:864 app/features/mec/report.php:56
5242
  #, fuzzy
5243
  #| msgid "You can use following placeholders"
5244
  msgid "You can use the following placeholders"
5245
  msgstr "Můžete použít následující zástupné symboly"
5246
 
5247
  #: app/features/mec/notifications.php:102
5248
+ #: app/features/mec/notifications.php:204
5249
+ #: app/features/mec/notifications.php:318
5250
+ #: app/features/mec/notifications.php:441
5251
+ #: app/features/mec/notifications.php:549
5252
+ #: app/features/mec/notifications.php:667 app/features/notifications.php:91
5253
  msgid "First name of attendee"
5254
  msgstr "První jméno účastníka"
5255
 
5256
  #: app/features/mec/notifications.php:103
5257
+ #: app/features/mec/notifications.php:205
5258
+ #: app/features/mec/notifications.php:319
5259
+ #: app/features/mec/notifications.php:442
5260
+ #: app/features/mec/notifications.php:550
5261
+ #: app/features/mec/notifications.php:668 app/features/notifications.php:92
5262
  msgid "Last name of attendee"
5263
  msgstr "Příjmení účastníka"
5264
 
5265
  #: app/features/mec/notifications.php:104
5266
+ #: app/features/mec/notifications.php:206
5267
+ #: app/features/mec/notifications.php:320
5268
+ #: app/features/mec/notifications.php:443
5269
+ #: app/features/mec/notifications.php:551
5270
+ #: app/features/mec/notifications.php:669 app/features/notifications.php:93
5271
  msgid "Email of attendee"
5272
  msgstr "Email účastníka"
5273
 
5274
  #: app/features/mec/notifications.php:105
5275
+ #: app/features/mec/notifications.php:207
5276
+ #: app/features/mec/notifications.php:321
5277
+ #: app/features/mec/notifications.php:444
5278
+ #: app/features/mec/notifications.php:552
5279
+ #: app/features/mec/notifications.php:670 app/features/notifications.php:94
5280
  msgid "Booked date of event"
5281
  msgstr "Datum rezervace akce"
5282
 
5283
  #: app/features/mec/notifications.php:106
5284
+ #: app/features/mec/notifications.php:208
5285
+ #: app/features/mec/notifications.php:322
5286
+ #: app/features/mec/notifications.php:445
5287
+ #: app/features/mec/notifications.php:553
5288
+ #: app/features/mec/notifications.php:671 app/features/notifications.php:95
5289
  msgid "Booked time of event"
5290
  msgstr "Čas rezervace akce"
5291
 
5292
  #: app/features/mec/notifications.php:107
5293
+ #: app/features/mec/notifications.php:209
5294
+ #: app/features/mec/notifications.php:323
5295
+ #: app/features/mec/notifications.php:446
5296
+ #: app/features/mec/notifications.php:554
5297
+ #: app/features/mec/notifications.php:672 app/features/notifications.php:96
5298
+ #, fuzzy
5299
+ #| msgid "Booked date of event"
5300
+ msgid "Booked date and time of event"
5301
+ msgstr "Datum rezervace akce"
5302
+
5303
+ #: app/features/mec/notifications.php:108
5304
+ #: app/features/mec/notifications.php:210
5305
+ #: app/features/mec/notifications.php:324
5306
+ #: app/features/mec/notifications.php:447
5307
+ #: app/features/mec/notifications.php:555
5308
+ #: app/features/mec/notifications.php:673 app/features/notifications.php:97
5309
  msgid "Booking Price"
5310
  msgstr "Cena rezervace"
5311
 
5312
+ #: app/features/mec/notifications.php:109
5313
+ #: app/features/mec/notifications.php:211
5314
+ #: app/features/mec/notifications.php:325
5315
+ #: app/features/mec/notifications.php:448
5316
+ #: app/features/mec/notifications.php:556
5317
+ #: app/features/mec/notifications.php:674 app/features/notifications.php:98
5318
  #, fuzzy
5319
  #| msgid "Cannot find the booking!"
5320
  msgid "Date and time of booking"
5321
  msgstr "Nemohu najít rezervaci!"
5322
 
5323
+ #: app/features/mec/notifications.php:110
5324
+ #: app/features/mec/notifications.php:212
5325
+ #: app/features/mec/notifications.php:326
5326
+ #: app/features/mec/notifications.php:449
5327
+ #: app/features/mec/notifications.php:557
5328
+ #: app/features/mec/notifications.php:675
5329
+ #: app/features/mec/notifications.php:788
5330
+ #: app/features/mec/notifications.php:872 app/features/notifications.php:99
5331
  msgid "Your website title"
5332
  msgstr "Název vašeho webu"
5333
 
5334
+ #: app/features/mec/notifications.php:111
5335
+ #: app/features/mec/notifications.php:213
5336
+ #: app/features/mec/notifications.php:327
5337
+ #: app/features/mec/notifications.php:450
5338
+ #: app/features/mec/notifications.php:558
5339
+ #: app/features/mec/notifications.php:676
5340
+ #: app/features/mec/notifications.php:789
5341
+ #: app/features/mec/notifications.php:873 app/features/notifications.php:100
5342
  msgid "Your website URL"
5343
  msgstr "URL vašeho webu"
5344
 
5345
+ #: app/features/mec/notifications.php:112
5346
+ #: app/features/mec/notifications.php:214
5347
+ #: app/features/mec/notifications.php:328
5348
+ #: app/features/mec/notifications.php:451
5349
+ #: app/features/mec/notifications.php:559
5350
+ #: app/features/mec/notifications.php:677
5351
+ #: app/features/mec/notifications.php:790
5352
+ #: app/features/mec/notifications.php:874 app/features/notifications.php:101
5353
  msgid "Your website description"
5354
  msgstr "Popis vašeho webu"
5355
 
5356
+ #: app/features/mec/notifications.php:113
5357
+ #: app/features/mec/notifications.php:215
5358
+ #: app/features/mec/notifications.php:329
5359
+ #: app/features/mec/notifications.php:452
5360
+ #: app/features/mec/notifications.php:560
5361
+ #: app/features/mec/notifications.php:678 app/features/notifications.php:102
5362
  msgid "Event title"
5363
  msgstr "Název události"
5364
 
5365
+ #: app/features/mec/notifications.php:114
5366
+ #: app/features/mec/notifications.php:216
5367
+ #: app/features/mec/notifications.php:330
5368
+ #: app/features/mec/notifications.php:453
5369
+ #: app/features/mec/notifications.php:561
5370
+ #: app/features/mec/notifications.php:679 app/features/notifications.php:103
5371
  msgid "Event link"
5372
  msgstr "Odkaz události"
5373
 
5374
+ #: app/features/mec/notifications.php:115
5375
+ #: app/features/mec/notifications.php:217
5376
+ #: app/features/mec/notifications.php:331
5377
+ #: app/features/mec/notifications.php:784
5378
+ #: app/features/mec/notifications.php:868 app/features/notifications.php:124
5379
  #, fuzzy
5380
  #| msgid "Start Date"
5381
  msgid "Event Start Date"
5382
  msgstr "Počátečná den"
5383
 
5384
+ #: app/features/mec/notifications.php:116
5385
+ #: app/features/mec/notifications.php:218
5386
+ #: app/features/mec/notifications.php:332
5387
+ #: app/features/mec/notifications.php:785
5388
+ #: app/features/mec/notifications.php:869 app/features/notifications.php:125
5389
  #, fuzzy
5390
  #| msgid "End Date"
5391
  msgid "Event End Date"
5392
  msgstr "Konečný den"
5393
 
5394
+ #: app/features/mec/notifications.php:117
5395
+ #: app/features/mec/notifications.php:219
5396
+ #: app/features/mec/notifications.php:333
5397
+ #: app/features/mec/notifications.php:454
5398
+ #: app/features/mec/notifications.php:562
5399
+ #: app/features/mec/notifications.php:680 app/features/notifications.php:104
5400
  msgid "Speaker name of booked event"
5401
  msgstr "Jméno řečníka rezervované události"
5402
 
5403
+ #: app/features/mec/notifications.php:118
5404
+ #: app/features/mec/notifications.php:220
5405
+ #: app/features/mec/notifications.php:334
5406
+ #: app/features/mec/notifications.php:455
5407
+ #: app/features/mec/notifications.php:563
5408
+ #: app/features/mec/notifications.php:681 app/features/notifications.php:105
5409
  msgid "Organizer name of booked event"
5410
  msgstr "Jméno organizátora rezervované události"
5411
 
5412
+ #: app/features/mec/notifications.php:119
5413
+ #: app/features/mec/notifications.php:221
5414
+ #: app/features/mec/notifications.php:335
5415
+ #: app/features/mec/notifications.php:456
5416
+ #: app/features/mec/notifications.php:564
5417
+ #: app/features/mec/notifications.php:682 app/features/notifications.php:106
5418
  msgid "Organizer tel of booked event"
5419
  msgstr "Telefon organizátora rezervované události"
5420
 
5421
+ #: app/features/mec/notifications.php:120
5422
+ #: app/features/mec/notifications.php:222
5423
+ #: app/features/mec/notifications.php:336
5424
+ #: app/features/mec/notifications.php:457
5425
+ #: app/features/mec/notifications.php:565
5426
+ #: app/features/mec/notifications.php:683 app/features/notifications.php:107
5427
  msgid "Organizer email of booked event"
5428
  msgstr "Email organizátora rezervované události"
5429
 
5430
+ #: app/features/mec/notifications.php:121
5431
+ #: app/features/mec/notifications.php:223
5432
+ #: app/features/mec/notifications.php:337
5433
+ #: app/features/mec/notifications.php:458
5434
+ #: app/features/mec/notifications.php:566
5435
+ #: app/features/mec/notifications.php:684 app/features/notifications.php:108
5436
  msgid "Location name of booked event"
5437
  msgstr "Název místa rezervované události"
5438
 
5439
+ #: app/features/mec/notifications.php:122
5440
+ #: app/features/mec/notifications.php:224
5441
+ #: app/features/mec/notifications.php:338
5442
+ #: app/features/mec/notifications.php:459
5443
+ #: app/features/mec/notifications.php:567
5444
+ #: app/features/mec/notifications.php:685 app/features/notifications.php:109
5445
  msgid "Location address of booked event"
5446
  msgstr "Adresa místa rezervované události"
5447
 
5448
+ #: app/features/mec/notifications.php:123
5449
+ #: app/features/mec/notifications.php:225
5450
+ #: app/features/mec/notifications.php:339
5451
+ #: app/features/mec/notifications.php:460
5452
+ #: app/features/mec/notifications.php:568
5453
+ #: app/features/mec/notifications.php:686 app/features/notifications.php:110
5454
  #, fuzzy
5455
  #| msgid "Location name of booked event"
5456
  msgid "Additional locations name of booked event"
5457
  msgstr "Název místa rezervované události"
5458
 
5459
+ #: app/features/mec/notifications.php:124
5460
+ #: app/features/mec/notifications.php:226
5461
+ #: app/features/mec/notifications.php:340
5462
+ #: app/features/mec/notifications.php:461
5463
+ #: app/features/mec/notifications.php:569
5464
+ #: app/features/mec/notifications.php:687 app/features/notifications.php:111
5465
  #, fuzzy
5466
  #| msgid "Location address of booked event"
5467
  msgid "Additional locations address of booked event"
5468
  msgstr "Adresa místa rezervované události"
5469
 
5470
+ #: app/features/mec/notifications.php:125
5471
+ #: app/features/mec/notifications.php:227
5472
+ #: app/features/mec/notifications.php:341
5473
+ #: app/features/mec/notifications.php:462
5474
+ #: app/features/mec/notifications.php:570
5475
+ #: app/features/mec/notifications.php:688 app/features/notifications.php:112
5476
  #, fuzzy
5477
  #| msgid "Speaker name of booked event"
5478
  msgid "Featured image of booked event"
5479
  msgstr "Jméno řečníka rezervované události"
5480
 
5481
+ #: app/features/mec/notifications.php:126
5482
+ #: app/features/mec/notifications.php:228
5483
+ #: app/features/mec/notifications.php:342
5484
+ #: app/features/mec/notifications.php:463
5485
+ #: app/features/mec/notifications.php:571
5486
+ #: app/features/mec/notifications.php:689 app/features/notifications.php:113
5487
  msgid "Full Attendee info such as booking form data, name, email etc."
5488
  msgstr ""
5489
  "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
5490
  "jméno, e-mail atd."
5491
 
5492
+ #: app/features/mec/notifications.php:127
5493
+ #: app/features/mec/notifications.php:229
5494
+ #: app/features/mec/notifications.php:343
5495
+ #: app/features/mec/notifications.php:464
5496
+ #: app/features/mec/notifications.php:572
5497
+ #: app/features/mec/notifications.php:690 app/features/notifications.php:114
5498
  #, fuzzy
5499
  #| msgid "Booking"
5500
  msgid "Booking ID"
5501
  msgstr "Rezervace"
5502
 
5503
+ #: app/features/mec/notifications.php:128
5504
+ #: app/features/mec/notifications.php:230
5505
+ #: app/features/mec/notifications.php:344
5506
+ #: app/features/mec/notifications.php:465
5507
+ #: app/features/mec/notifications.php:573
5508
+ #: app/features/mec/notifications.php:691 app/features/notifications.php:115
5509
  #, fuzzy
5510
  #| msgid "Transaction ID"
5511
  msgid "Transaction ID of Booking"
5512
  msgstr "ID transakce"
5513
 
5514
+ #: app/features/mec/notifications.php:129
5515
+ #: app/features/mec/notifications.php:346
5516
+ #: app/features/mec/notifications.php:693
5517
  msgid "Invoice Link"
5518
  msgstr "Odkaz na fakturu"
5519
 
5520
+ #: app/features/mec/notifications.php:130
5521
+ #: app/features/mec/notifications.php:232
5522
+ #: app/features/mec/notifications.php:347
5523
+ #: app/features/mec/notifications.php:467
5524
+ #: app/features/mec/notifications.php:575
5525
+ #: app/features/mec/notifications.php:694 app/features/notifications.php:117
5526
  #, fuzzy
5527
  #| msgid "There is no skins"
5528
  msgid "Total attendees of current booking"
5529
  msgstr "Neexistuje žádný vzhled"
5530
 
5531
+ #: app/features/mec/notifications.php:131
5532
+ #: app/features/mec/notifications.php:233
5533
+ #: app/features/mec/notifications.php:348
5534
+ #: app/features/mec/notifications.php:468
5535
+ #: app/features/mec/notifications.php:576
5536
+ #: app/features/mec/notifications.php:695 app/features/notifications.php:118
5537
  msgid "Amount of Booked Tickets (Total attendees of all bookings)"
5538
  msgstr ""
5539
 
5540
+ #: app/features/mec/notifications.php:132
5541
+ #: app/features/mec/notifications.php:234
5542
+ #: app/features/mec/notifications.php:349
5543
+ #: app/features/mec/notifications.php:469
5544
+ #: app/features/mec/notifications.php:577
5545
+ #: app/features/mec/notifications.php:696 app/features/notifications.php:119
5546
  msgid "Ticket name"
5547
  msgstr "Název vstupenky"
5548
 
5549
+ #: app/features/mec/notifications.php:133
5550
+ #: app/features/mec/notifications.php:235
5551
+ #: app/features/mec/notifications.php:350
5552
+ #: app/features/mec/notifications.php:470
5553
+ #: app/features/mec/notifications.php:578
5554
+ #: app/features/mec/notifications.php:697 app/features/notifications.php:120
5555
  msgid "Ticket time"
5556
  msgstr "Čas vstupenky"
5557
 
5558
+ #: app/features/mec/notifications.php:134
5559
+ #: app/features/mec/notifications.php:236
5560
+ #: app/features/mec/notifications.php:351
5561
+ #: app/features/mec/notifications.php:471
5562
+ #: app/features/mec/notifications.php:579
5563
+ #: app/features/mec/notifications.php:698 app/features/notifications.php:121
5564
  #, fuzzy
5565
  #| msgid "Ticket name"
5566
  msgid "Ticket name & time"
5567
  msgstr "Název vstupenky"
5568
 
5569
+ #: app/features/mec/notifications.php:135
5570
+ #: app/features/mec/notifications.php:237
5571
+ #: app/features/mec/notifications.php:352
5572
+ #: app/features/mec/notifications.php:472
5573
+ #: app/features/mec/notifications.php:580
5574
+ #: app/features/mec/notifications.php:699 app/features/notifications.php:122
5575
  #, fuzzy
5576
  #| msgid "Payment Gateways"
5577
  msgid "Payment Gateway"
5578
  msgstr "Platební brány"
5579
 
5580
+ #: app/features/mec/notifications.php:136
5581
+ #: app/features/mec/notifications.php:238
5582
+ #: app/features/mec/notifications.php:353
5583
+ #: app/features/mec/notifications.php:473
5584
+ #: app/features/mec/notifications.php:581
5585
+ #: app/features/mec/notifications.php:700 app/features/notifications.php:123
5586
  msgid "Link to the downloadable file"
5587
  msgstr ""
5588
 
5589
+ #: app/features/mec/notifications.php:137
5590
+ #: app/features/mec/notifications.php:239
5591
+ #: app/features/mec/notifications.php:354
5592
+ #: app/features/mec/notifications.php:701
5593
  msgid "Download ICS file"
5594
  msgstr "Stáhnout ICS soubor"
5595
 
5596
+ #: app/features/mec/notifications.php:146 app/libraries/main.php:589
5597
  msgid "Booking Verification"
5598
  msgstr "Ověření rezervace"
5599
 
5600
+ #: app/features/mec/notifications.php:147
5601
  msgid "It sends to attendee email for verifying their booking/email."
5602
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
5603
 
5604
+ #: app/features/mec/notifications.php:231
5605
  msgid "Email/Booking verification link."
5606
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
5607
 
5608
+ #: app/features/mec/notifications.php:252
5609
  #, fuzzy
5610
  #| msgid "Enable booking notification"
5611
  msgid "Enable booking confirmation"
5612
  msgstr "Povolit upozornění na rezervaci"
5613
 
5614
+ #: app/features/mec/notifications.php:257
5615
  #, fuzzy
5616
  #| msgid "It sends to attendee after confirming the booking by admin."
5617
  msgid "Sent to attendee after confirming the booking by admin."
5618
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
5619
 
5620
+ #: app/features/mec/notifications.php:310
5621
  msgid "Send One Single Email Only To First Attendee"
5622
  msgstr ""
5623
 
5624
+ #: app/features/mec/notifications.php:345
5625
+ #: app/features/mec/notifications.php:692
5626
  msgid "Booking cancellation link."
5627
  msgstr "Odkaz na zrušení rezervace."
5628
 
5629
+ #: app/features/mec/notifications.php:364 app/features/notifications.php:147
5630
+ #: app/libraries/main.php:591
5631
  msgid "Booking Cancellation"
5632
  msgstr "Zrušení rezervace"
5633
 
5634
+ #: app/features/mec/notifications.php:368
5635
  msgid "Enable cancellation notification"
5636
  msgstr "Povolit oznámení o zrušení"
5637
 
5638
+ #: app/features/mec/notifications.php:372
5639
  #, fuzzy
5640
  #| msgid ""
5641
  #| "It sends to selected recipients after booking cancellation for notifying "
5643
  msgid "Sent to selected recipients after booking cancellation to notify them."
5644
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
5645
 
5646
+ #: app/features/mec/notifications.php:425
5647
+ #: app/features/mec/notifications.php:722
5648
  msgid "Send the email to admin"
5649
  msgstr "Odeslat email administrátorovi"
5650
 
5651
+ #: app/features/mec/notifications.php:433
5652
  #, fuzzy
5653
  #| msgid "Send the email to booking user"
5654
  msgid "Send the email to the booked user"
5655
  msgstr "Pošlete rezervační e-mail uživateli"
5656
 
5657
+ #: app/features/mec/notifications.php:466
5658
+ #: app/features/mec/notifications.php:574 app/features/notifications.php:116
5659
  msgid "Admin booking management link."
5660
  msgstr "Odkaz administrátora na správu rezervace."
5661
 
5662
+ #: app/features/mec/notifications.php:480 app/libraries/main.php:593
5663
  msgid "Admin"
5664
  msgstr "Administrátor"
5665
 
5666
+ #: app/features/mec/notifications.php:484
5667
  msgid "Enable admin notification"
5668
  msgstr "Povolit oznámení správce"
5669
 
5670
+ #: app/features/mec/notifications.php:488
5671
  #, fuzzy
5672
  #| msgid "It sends to admin to notify him/her that a new booking received."
5673
  msgid "Sent to admin to notify them that a new booking has been received."
5674
  msgstr "Zašle správci informaci o přijetí nové rezervace."
5675
 
5676
+ #: app/features/mec/notifications.php:588 app/features/notifications.php:153
5677
+ #: app/libraries/main.php:592 app/libraries/notifications.php:584
5678
  msgid "Booking Reminder"
5679
  msgstr "Připomenutí rezervace"
5680
 
5681
+ #: app/features/mec/notifications.php:592
5682
  msgid "Enable booking reminder notification"
5683
  msgstr "Povolit upozornění na připomenutí rezervace"
5684
 
5685
+ #: app/features/mec/notifications.php:598
5686
  #, fuzzy, php-format
5687
  #| msgid ""
5688
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
5697
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
5698
  "% s, jinak může zasílat připomenutí několikrát."
5699
 
5700
+ #: app/features/mec/notifications.php:598
5701
  #, fuzzy
5702
  #| msgid "only once per day"
5703
  msgid "only once per hour"
5704
  msgstr "pouze jednou denně"
5705
 
5706
+ #: app/features/mec/notifications.php:651 app/libraries/main.php:6950
5707
+ #: app/libraries/main.php:6967
5708
  #, fuzzy
5709
  #| msgid "hours"
5710
  msgid "Hours"
5711
  msgstr "hodiny"
5712
 
5713
+ #: app/features/mec/notifications.php:655
5714
  msgid "Reminder hours"
5715
  msgstr ""
5716
 
5717
+ #: app/features/mec/notifications.php:656
5718
  msgid "Please, insert comma to separate reminder hours."
5719
  msgstr ""
5720
 
5721
+ #: app/features/mec/notifications.php:711 app/features/popup/event.php:253
5722
  #: app/libraries/main.php:581
5723
  msgid "New Event"
5724
  msgstr "Nová událost"
5725
 
5726
+ #: app/features/mec/notifications.php:715
5727
  msgid "Enable new event notification"
5728
  msgstr "Povolit oznámení na novou událost"
5729
 
5730
+ #: app/features/mec/notifications.php:725
5731
  #, fuzzy
5732
  #| msgid ""
5733
  #| "It sends after adding a new event from frontend event submission or from "
5739
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
5740
  "nebo z administrace webových stránek (backend)."
5741
 
5742
+ #: app/features/mec/notifications.php:782
5743
+ #: app/features/mec/notifications.php:866
5744
  msgid "Title of event"
5745
  msgstr "Název události"
5746
 
5747
+ #: app/features/mec/notifications.php:783
5748
+ #: app/features/mec/notifications.php:867
5749
  msgid "Link of event"
5750
  msgstr "Odkaz události"
5751
 
5752
+ #: app/features/mec/notifications.php:786
5753
+ #: app/features/mec/notifications.php:870 app/features/notifications.php:126
5754
  msgid "Status of event"
5755
  msgstr "Stav události"
5756
 
5757
+ #: app/features/mec/notifications.php:787
5758
+ #: app/features/mec/notifications.php:871 app/features/mec/settings.php:819
5759
+ #: app/features/mec/settings.php:823 app/features/notifications.php:127
5760
  msgid "Event Note"
5761
  msgstr "Poznámka události"
5762
 
5763
+ #: app/features/mec/notifications.php:791
5764
+ #: app/features/mec/notifications.php:875
5765
  msgid "Admin events management link."
5766
  msgstr "Odkaz administrátora na správu událostí."
5767
 
5768
+ #: app/features/mec/notifications.php:801 app/libraries/main.php:582
5769
  msgid "User Event Publishing"
5770
  msgstr "Publikování uživatelských událostí"
5771
 
5772
+ #: app/features/mec/notifications.php:805
5773
  msgid "Enable user event publishing notification"
5774
  msgstr "Povolit oznámení o zveřejnění události uživatele"
5775
 
5776
+ #: app/features/mec/notifications.php:809
5777
  #, fuzzy
5778
  #| msgid ""
5779
  #| "It sends after published a new event from frontend event submission or "
5962
  msgstr "Můžete povolit nebo zakázat skripty schématu"
5963
 
5964
  #: app/features/mec/settings.php:157 app/features/mec/settings.php:167
5965
+ #: app/libraries/main.php:5900 app/libraries/main.php:5948
5966
  msgid "Weekdays"
5967
  msgstr "Pracovní dny"
5968
 
6697
  msgid "Custom Fields"
6698
  msgstr "Vlastní styly"
6699
 
6700
+ #: app/features/mec/single.php:184 app/libraries/main.php:3183
6701
  msgid "URL"
6702
  msgstr ""
6703
 
6980
  msgid "MEC Settings"
6981
  msgstr "MEC - Nastavení"
6982
 
6983
+ #: app/features/mec/support-page.php:99 app/libraries/main.php:648
6984
  msgid "Single Event"
6985
  msgstr "Jedna událost"
6986
 
7340
  msgid "Create a support ticket"
7341
  msgstr "Vytvořte lístek podpory"
7342
 
7343
+ #: app/features/mec/support.php:52 app/libraries/main.php:794
7344
  msgid "Styling Options"
7345
  msgstr "Možnosti stylování"
7346
 
7347
+ #: app/features/mec/support.php:59 app/libraries/main.php:801
7348
  msgid "Custom CSS"
7349
  msgstr "Vlastní CSS"
7350
 
7422
  msgid "How to add/manage shortcodes?"
7423
  msgstr "Jak přidat / spravovat zkrácené kódy?"
7424
 
7425
+ #: app/features/notifications.php:66
7426
+ msgid "Modify"
7427
+ msgstr ""
7428
+
7429
+ #: app/features/notifications.php:89
7430
+ msgid "Placeholders"
7431
+ msgstr ""
7432
+
7433
+ #: app/features/notifications.php:138
7434
+ #, fuzzy
7435
+ #| msgid "Email verification"
7436
+ msgid "Email Verification"
7437
+ msgstr "Ověřovací email"
7438
+
7439
+ #: app/features/notifications.php:141
7440
+ #, fuzzy
7441
+ #| msgid "Booking Verification"
7442
+ msgid "Booking Notification"
7443
+ msgstr "Ověření rezervace"
7444
+
7445
+ #: app/features/notifications.php:150
7446
+ #, fuzzy
7447
+ #| msgid "Notifications"
7448
+ msgid "Admin Notification"
7449
+ msgstr "Upozornění"
7450
+
7451
  #: app/features/organizers.php:106 app/features/organizers.php:149
7452
  msgid "Insert organizer phone number."
7453
  msgstr "Vložit telefonní číslo organizátora."
7508
  msgid "eg. https://webnus.net"
7509
  msgstr "např. https://webnus.net"
7510
 
7511
+ #: app/features/organizers.php:312 app/libraries/main.php:5924
7512
+ #: app/libraries/main.php:5969 app/skins/single.php:1152
7513
  msgid "Other Organizers"
7514
  msgstr "Další organizátoři"
7515
 
7699
  msgid "Please %s/%s in order to see your bookings / profile."
7700
  msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
7701
 
7702
+ #: app/features/profile/profile.php:20 app/libraries/main.php:2323
7703
  msgid "Your booking already canceled!"
7704
  msgstr "Vaše rezervace již byla zrušena!"
7705
 
7707
  msgid "#"
7708
  msgstr "#"
7709
 
7710
+ #: app/features/profile/profile.php:61 app/libraries/main.php:3515
7711
  msgid "Status"
7712
  msgstr "Stav"
7713
 
7714
+ #: app/features/profile/profile.php:64 app/libraries/main.php:2491
7715
  msgid "Attendees"
7716
  msgstr "Účastníci"
7717
 
7832
  msgid "No search result."
7833
  msgstr "Žádný výsledek vyhledávání."
7834
 
7835
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:5926
7836
+ #: app/libraries/main.php:5971 app/libraries/notifications.php:989
7837
  #: app/libraries/render.php:516 app/libraries/render.php:816
7838
  #: app/modules/local-time/details.php:48 app/modules/local-time/type1.php:45
7839
  #: app/modules/local-time/type2.php:47 app/modules/local-time/type3.php:45
7840
  #: app/modules/next-event/details.php:145 app/skins/single.php:1044
7841
+ #: app/skins/single/default.php:125 app/skins/single/default.php:359
7842
+ #: app/skins/single/m1.php:47 app/skins/single/modern.php:222
7843
  #, fuzzy
7844
  #| msgid "Add Day"
7845
  msgid "All Day"
7930
  msgid "Download Invoice"
7931
  msgstr "Stáhnout fakturu"
7932
 
7933
+ #: app/libraries/factory.php:167
7934
  msgid "M.E. Calendar"
7935
  msgstr "M.E. Kalendář"
7936
 
7937
+ #: app/libraries/factory.php:206
7938
  msgctxt "plugin link"
7939
  msgid "Upgrade to Pro Version"
7940
  msgstr "Upgrade na verzi PRO"
7941
 
7942
+ #: app/libraries/factory.php:224
7943
  msgctxt "plugin link"
7944
  msgid "Settings"
7945
  msgstr "Nastavení"
7946
 
7947
+ #: app/libraries/factory.php:229
7948
  msgctxt "plugin link"
7949
  msgid "Upgrade"
7950
  msgstr "Upgrade"
7951
 
7952
+ #: app/libraries/factory.php:373
7953
  msgid "day"
7954
  msgstr "den"
7955
 
7956
+ #: app/libraries/factory.php:374 app/modules/countdown/details.php:138
7957
  #: app/skins/available_spot/tpl.php:149 app/skins/countdown/tpl.php:131
7958
  #: app/skins/countdown/tpl.php:177 app/skins/countdown/tpl.php:228
7959
  msgid "days"
7960
  msgstr "dny"
7961
 
7962
+ #: app/libraries/factory.php:375
7963
  msgid "hour"
7964
  msgstr "hodina"
7965
 
7966
+ #: app/libraries/factory.php:376 app/modules/countdown/details.php:145
7967
  #: app/skins/available_spot/tpl.php:153 app/skins/countdown/tpl.php:137
7968
  #: app/skins/countdown/tpl.php:183 app/skins/countdown/tpl.php:234
7969
  msgid "hours"
7970
  msgstr "hodiny"
7971
 
7972
+ #: app/libraries/factory.php:377
7973
  msgid "minute"
7974
  msgstr "minuta"
7975
 
7976
+ #: app/libraries/factory.php:378 app/modules/countdown/details.php:152
7977
  #: app/skins/available_spot/tpl.php:157 app/skins/countdown/tpl.php:143
7978
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:240
7979
  msgid "minutes"
7980
  msgstr "minuty"
7981
 
7982
+ #: app/libraries/factory.php:379
7983
  msgid "second"
7984
  msgstr "vteřina"
7985
 
7986
+ #: app/libraries/factory.php:380 app/modules/countdown/details.php:159
7987
  #: app/skins/available_spot/tpl.php:161 app/skins/countdown/tpl.php:149
7988
  #: app/skins/countdown/tpl.php:195 app/skins/countdown/tpl.php:246
7989
  msgid "seconds"
7990
  msgstr "vteřiny"
7991
 
7992
+ #: app/libraries/factory.php:432
7993
  msgid "MEC Single Sidebar"
7994
  msgstr "MEC Postranní panel"
7995
 
7996
+ #: app/libraries/factory.php:433
7997
  msgid "Custom sidebar for single and modal page of MEC."
7998
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
7999
 
8001
  msgid "There is no excerpt because this is a protected post."
8002
  msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
8003
 
8004
+ #: app/libraries/main.php:332 app/libraries/main.php:1939
8005
+ #: app/libraries/main.php:1964
8006
  msgid "Agenda View"
8007
  msgstr "Zobrazení agendy"
8008
 
8009
+ #: app/libraries/main.php:333 app/libraries/main.php:1930
8010
+ #: app/libraries/main.php:1955
8011
  msgid "Full Calendar"
8012
  msgstr "Plný kalendář"
8013
 
8014
+ #: app/libraries/main.php:335 app/libraries/main.php:1932
8015
+ #: app/libraries/main.php:1957
8016
  msgid "Calendar/Monthly View"
8017
  msgstr "Kalendář / zobrazení měsíce"
8018
 
8019
+ #: app/libraries/main.php:338 app/libraries/main.php:1935
8020
+ #: app/libraries/main.php:1960
8021
  msgid "Timetable View"
8022
  msgstr "Zobrazení rozvrhu"
8023
 
8024
+ #: app/libraries/main.php:339 app/libraries/main.php:1936
8025
+ #: app/libraries/main.php:1961
8026
  msgid "Masonry View"
8027
  msgstr "Zobrazení zdi"
8028
 
8029
+ #: app/libraries/main.php:340 app/libraries/main.php:1940
8030
+ #: app/libraries/main.php:1965
8031
  msgid "Map View"
8032
  msgstr "Zobrazení mapy"
8033
 
8058
  msgid "Timeline View"
8059
  msgstr "Zobrazení rozvrhu"
8060
 
8061
+ #: app/libraries/main.php:385 app/libraries/main.php:5902
8062
+ #: app/libraries/main.php:5950
8063
  msgid "SU"
8064
  msgstr "NE"
8065
 
8066
+ #: app/libraries/main.php:386 app/libraries/main.php:5903
8067
+ #: app/libraries/main.php:5951
8068
  msgid "MO"
8069
  msgstr "PO"
8070
 
8071
+ #: app/libraries/main.php:387 app/libraries/main.php:5904
8072
+ #: app/libraries/main.php:5952
8073
  msgid "TU"
8074
  msgstr "ÚT"
8075
 
8076
+ #: app/libraries/main.php:388 app/libraries/main.php:5905
8077
+ #: app/libraries/main.php:5953
8078
  msgid "WE"
8079
  msgstr "ST"
8080
 
8081
+ #: app/libraries/main.php:389 app/libraries/main.php:5906
8082
+ #: app/libraries/main.php:5954
8083
  msgid "TH"
8084
  msgstr "ČT"
8085
 
8086
+ #: app/libraries/main.php:390 app/libraries/main.php:5907
8087
+ #: app/libraries/main.php:5955
8088
  msgid "FR"
8089
  msgstr "PÁ"
8090
 
8091
+ #: app/libraries/main.php:391 app/libraries/main.php:5908
8092
+ #: app/libraries/main.php:5956
8093
  msgid "SA"
8094
  msgstr "SO"
8095
 
8101
  msgid "Additional Locations"
8102
  msgstr "Další umístění"
8103
 
8104
+ #: app/libraries/main.php:714
8105
  msgid "Modules"
8106
  msgstr "Moduly"
8107
 
8108
+ #: app/libraries/main.php:882
8109
  msgid "New Addons For MEC! Now Customize MEC in Elementor"
8110
  msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
8111
 
8112
+ #: app/libraries/main.php:889
8113
  msgid ""
8114
  "The time has come at last, and the new practical add-ons for MEC have been "
8115
  "released. This is a revolution in the world of Event Calendars. We have "
8120
  "revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
8121
  "pouze tím, že máme 4 doplňky, viz níže:"
8122
 
8123
+ #: app/libraries/main.php:891
8124
  msgid ""
8125
  "<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
8126
  "products) and Woo products at the same time."
8128
  "<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
8129
  "produkty) a produkty Woo současně."
8130
 
8131
+ #: app/libraries/main.php:892
8132
  msgid ""
8133
  "<strong>Event API:</strong> display your events (shortcodes/single event) on "
8134
  "other websites without MEC. Use JSON output features to make your Apps "
8138
  "událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
8139
  "aplikace byly kompatibilní s MEC."
8140
 
8141
+ #: app/libraries/main.php:893
8142
  msgid ""
8143
  "<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
8144
  "main websites. Changes in the main one will be inherited by the subsites. "
8145
  "you can set these up in the admin panel."
8146
  msgstr ""
8147
 
8148
+ #: app/libraries/main.php:894
8149
  msgid ""
8150
  "<strong>User Dashboard:</strong> Create exclusive pages for users. These "
8151
  "pages can contain ticket purchase information, information about registered "
8152
  "events. Users can now log in to purchase tickets."
8153
  msgstr ""
8154
 
8155
+ #: app/libraries/main.php:896
8156
  msgid "find out more"
8157
  msgstr ""
8158
 
8159
+ #: app/libraries/main.php:1656
8160
  msgid "Events at this location"
8161
  msgstr "Události na tomto místě"
8162
 
8163
+ #: app/libraries/main.php:1656
8164
  msgid "Event at this location"
8165
  msgstr "Událost na tomto místě"
8166
 
8167
+ #: app/libraries/main.php:1708
8168
  msgid "Facebook"
8169
  msgstr "Facebook"
8170
 
8171
+ #: app/libraries/main.php:1709
8172
  msgid "Twitter"
8173
  msgstr "Twitter"
8174
 
8175
+ #: app/libraries/main.php:1710 app/libraries/main.php:1767
8176
  msgid "Linkedin"
8177
  msgstr "Linkedin"
8178
 
8179
+ #: app/libraries/main.php:1711 app/libraries/main.php:1803
8180
  msgid "VK"
8181
  msgstr "VK"
8182
 
8183
+ #: app/libraries/main.php:1712
8184
  msgid "Tumblr"
8185
  msgstr ""
8186
 
8187
+ #: app/libraries/main.php:1713
8188
  msgid "Pinterest"
8189
  msgstr ""
8190
 
8191
+ #: app/libraries/main.php:1714
8192
  msgid "Flipboard"
8193
  msgstr ""
8194
 
8195
+ #: app/libraries/main.php:1715
8196
  #, fuzzy
8197
  #| msgid "Tickets"
8198
  msgid "GetPocket"
8199
  msgstr "Vstupenky"
8200
 
8201
+ #: app/libraries/main.php:1716
8202
  msgid "Reddit"
8203
  msgstr ""
8204
 
8205
+ #: app/libraries/main.php:1717
8206
  msgid "WhatsApp"
8207
  msgstr ""
8208
 
8209
+ #: app/libraries/main.php:1718
8210
  msgid "Telegram"
8211
  msgstr ""
8212
 
8213
+ #: app/libraries/main.php:1737
8214
  msgid "Share on Facebook"
8215
  msgstr "Sdílet na Facebooku"
8216
 
8217
+ #: app/libraries/main.php:1752
8218
  msgid "Tweet"
8219
  msgstr "Tweet"
8220
 
8221
+ #: app/libraries/main.php:1818
8222
  #, fuzzy
8223
  #| msgid "Share on Facebook"
8224
  msgid "Share on Tumblr"
8225
  msgstr "Sdílet na Facebooku"
8226
 
8227
+ #: app/libraries/main.php:1834
8228
  msgid "Share on Pinterest"
8229
  msgstr ""
8230
 
8231
+ #: app/libraries/main.php:1850
8232
  #, fuzzy
8233
  #| msgid "Share on Facebook"
8234
  msgid "Share on Flipboard"
8235
  msgstr "Sdílet na Facebooku"
8236
 
8237
+ #: app/libraries/main.php:1868
8238
  #, fuzzy
8239
  #| msgid "Share on Facebook"
8240
  msgid "Share on GetPocket"
8241
  msgstr "Sdílet na Facebooku"
8242
 
8243
+ #: app/libraries/main.php:1884
8244
  #, fuzzy
8245
  #| msgid "Share on Facebook"
8246
  msgid "Share on Reddit"
8247
  msgstr "Sdílet na Facebooku"
8248
 
8249
+ #: app/libraries/main.php:1900
8250
  msgid "Share on Telegram"
8251
  msgstr ""
8252
 
8253
+ #: app/libraries/main.php:1918
8254
  msgid "Share on WhatsApp"
8255
  msgstr ""
8256
 
8257
+ #: app/libraries/main.php:1941
8258
  msgid "Custom Shortcode"
8259
  msgstr "Uživatelské zkrácené kódy"
8260
 
8261
+ #: app/libraries/main.php:2303
8262
  msgid "Your booking already verified!"
8263
  msgstr "Vaše rezervace již byla ověřena!"
8264
 
8265
+ #: app/libraries/main.php:2308
8266
  msgid "Your booking successfully verified."
8267
  msgstr "Vaše rezervace byla úspěšně ověřena."
8268
 
8269
+ #: app/libraries/main.php:2309
8270
  msgid "Your booking cannot verify!"
8271
  msgstr "Vaši rezervaci nelze ověřit!"
8272